Jump to content

antrax16

Inactive Member
  • Posts

    66
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by antrax16

  1. For solve probleb with Could not load file ThreeWayWar Put in the ssh terminal this . ln -s /usr/home/game/share/locale /usr/home/game/auth ln -s /usr/home/game/share/locale /usr/home/game/channel1 ln -s /usr/home/game/share/locale /usr/home/game/channel2 ln -s /usr/home/game/share/locale /usr/home/game/channel3 ln -s /usr/home/game/share/locale /usr/home/game/channel4 ln -s /usr/home/game/share/locale /usr/home/game/game99 Another solution would be next , creating shortcuts folder " locale " in Auth , channel1 , channel2 , ..., ... , game99 . But I think it will go smylink see there change the connection to your server .
  2. Version 2.4 will appear in max 1-2 days ? They last a little longer ?
  3. You have to do smylink for each channel + core ! ln -s /usr/home/game/share/game /usr/home/game/auth ln -s /usr/home/game/share/game /usr/home/game/channel1 ln -s /usr/home/game/share/game /usr/home/game/channel2 ln -s /usr/home/game/share/game /usr/home/game/channel3 ln -s /usr/home/game/share/game /usr/home/game/channel4 ln -s /usr/home/game/share/game /usr/home/game/game99 Those you change you with the location where you game core .
  4. BUMB ! Anyone ? SYSERR: Apr 28 03:49:13.963805 :: socket_connect: HOST 0:13200, could not connect.
  5. Hello. I have a problem after i put 40k game range in server and db game gives me conection refused and in syserr have these errors! socket_connect: HOST 0:41171, could not connect. SYSERR: Apr 27 20:13:43.36492 :: socket_connect: HOST 0:41171, could not connect. I also applied to internal ip diff and give me all these errors .
  6. Change true only line bool g_bGlobalShoutEnable = true;
  7. For global chat open config.cpp with source and search . bool g_bGlobalShoutEnable = false; // True for activation .
  8. Hello. I can someone help me to solve these problem with source : Pets system give bonus wherever i refer to Baby Golden Azrael and Azrael Baby just give them the 2nd floor of Dt . And bug arena manager players with grade gamemaster but the players can battle them out . What would have to change , namely in what files . I ask because I need help and no one gives me anywhere I ask no answer.
  9. I can install and compilation source on FreeBSD 9.1 X64 bits using the same tutorial here ?
  10. Hey! I have a problem arena manager were as they say , namely fighting training . Go to Yu -Yan with two characters and a measure account for 105 gm ,i accept the duel. but the problem is that the account of gm and the other still in pull out and takes him map1 and map2 . Is the game somehow have the problem .. I also set the coordinates of settings.lua See arena.add_map(112,8534,101,8564,101) arena.add_map(112,8584,101,8614,101) arena.add_map(112,8534,155,8564,155) arena.add_map(112,8584,155,8514,155) add_goto_info("duel", 0, 112, 8574, 126) Im use this quest quest arena_manager begin state start begin when 20017.chat."Lupta in arena" begin if game.get_event_flag("arena_close") > 0 then say_title("Yu-Hwan:") say("arenaurile de lupta au fost distruse") say("Intr-un mare razboi.") return end if not npc.lock() then say_title("Yu-Hwan:") say("Altcineva este bagat in lupta.") return end local useMinLevel = 25 if pc.get_level() < useMinLevel then say_title("Yuhwan:") say("Nivelul minim este "..useMinLevel.." nu pot sa va bag in arena") say("Imi pare rau revina mai tarziu.") npc.unlock() return else say_title("Yuhwan:") say("Spune-mi numele persoanei cu care") say("vrei sa te antrenezi.") local sname = input() if sname == "" then say_title("Yu-Hwan:") say("Nu stii cu cine vrei sa te lupti") say("serios?") npc.unlock() return else say_title("Yu-Hwan:") say(""..pc.name.." vrea sa se lupte cu "..sname.." ") wait("") local opp_vid = find_pc_by_name(sname) if opp_vid == 0 then say_title("Yu-Hwan:") say(sname.." nu este online.") npc.unlock() return elseif opp_vid == pc.get_vid() then say_title("Yu-Hwan:") say("Tu nu vrei cu adevarat sa") say("te bati cu altii?") npc.unlock() return end local old = pc.select(opp_vid) local opp_level = pc.get_level() pc.select(old) if opp_level < useMinLevel then say_title("Yuhwan") say("Adversarul tau inca nu are nivelul 25!") npc.unlock() return end if not npc.is_near_vid(opp_vid, 10) then say_title("Yuhwan") say(""..sname.." nu este in apropierea ta.") npc.unlock() return end local a = arena.is_in_arena(opp_vid) if a == 0 then say_title("Yuhwan:") say(""..sname.." deja lupta cu cineva.") npc.unlock() return end say_title("Decizia Finala") say(""..pc.name.." il asteapta pe "..sname.."") say("sa accepte duelul.") local agree = confirm(opp_vid, "Vrei sa lupti impotriva lui "..pc.name.." ?", 30) if agree!= CONFIRM_OK then say_title("Yuhwan:") say(""..sname.." a refuzat lupta.") npc.unlock() return end s = arena.start_duel(sname, 3) if s == 0 then say_title("Yu-Hwan:") say("A intervenit o probleme neasteptata.") say("Incercati din nou mai tarziu!") elseif s == 2 then say_title("Yu-Hwan:") say("Se lupta cu altcineva.") elseif s == 3 then say_title("Yu-Hwan:") say("arenaul de antrenament este plin in acest moment.") say("Va rugam sa incerci mai tarziu.") end end end end when 20017.chat."Urmariti un duel" begin local g = arena.get_duel_list() local arena_name = {} local arena_observer = {} table.foreachi(g, function(n, p) arena_name[n] = p[1].." impotriva "..p[2] arena_observer[n] = { p[3], p[4], p[5] } end ) table.insert(arena_name, "Inchide") table.insert(arena_observer, 0) local count = table.getn(g) if count == 0 then say_title("Yu-Hwan:") say("In momentul de fata nimeni nu lupta.") return else say_title("Yu-Hwan:") say("Acum se lupta "..count.." .") wait() end if table.getn(g)!= 0 then local s = select_table(arena_name) if table.getn(arena_observer) == s then return end if table.getn(arena_observer) >= s then arena.add_observer(arena_observer[s][1], arena_observer[s][2], arena_observer[s][3]) end end end end end Im use game r40250 . Sorry for my English.
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.