Jump to content

xLoGaN

Member
  • Posts

    53
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by xLoGaN

  1. if that's the case why don't you create your own serverfiles ? there is a lot of serverfiles that's already public , it doesn't matter if they are clean or not , you can clean them yourself anyway good luck ?
  2. if you are willing to pay for serverfiles , I recommended you to buy from @martysama0134 you can read about his serverfiles here [Hidden Content]
  3. @IGNEEL thanks for your answer [Hidden Content]
  4. I tried to re-implement the source/db part but the result still the same also when I buy something from gaya market the gaya doesn't refresh till I change character any suggestion ?
  5. I will check the source again thanks @r00t and @Anix for your reply
  6. Hi metin2devs I added expanded money task-bar and it works fine ... the problem is that the gaya currency it is always appear on it's slot as I have 999,999 but actually I have 0 here is an image for it [Hidden Content] I tried to add refresh def in uiinventory.py like this def RefreshStatus(self): money = player.GetElk() self.wndMoney.SetText(localeInfo.NumberToMoneyString(money)) if app.ENABLE_CHEQUE_SYSTEM: cheque = player.GetCheque() self.wndCheque.SetText(str(cheque)) if app.ENABLE_GEM_SYSTEM: if self.wndGem: gem = player.GetGem() self.wndGem.SetText(localeInfo.NumberToMoneyString(gem)) ------------------------------------------------------------------------------------ self.wndGem.SetText(localeInfo.NumberToMoneyString(player.GetGem())) but this doesn't solve the problem every help is appreciated EDIT :solved by adding refresh def in class expanded money taskbar in uitaskbar.py . another problem ... if I make gaya I must change character to update the amount of gaya here is an image without changing character [Hidden Content] when I change character [Hidden Content]
  7. hello guys I tried to added expanded money taskbar but I got an error 1113 01:41:13451 :: Traceback (most recent call last): 1113 01:41:13451 :: File "networkModule.py", line 239, in SetGamePhase 1113 01:41:13451 :: File "game.py", line 98, in __init__ 1113 01:41:13451 :: File "interfaceModule.py", line 328, in MakeInterface 1113 01:41:13451 :: File "interfaceModule.py", line 144, in __MakeTaskBar 1113 01:41:13451 :: File "uiTaskBar.py", line 346, in SetToggleButtonEvent 1113 01:41:13451 :: AttributeError 1113 01:41:13451 :: : 1113 01:41:13451 :: 'ExpandedTaskBar' object has no attribute 'toggleButtonDict' 1113 01:41:13451 ::
  8. check the conf.txt in your db folder it's possible that proto are reading from the db , to disable reading the proto from db you must change PROTO_FROM_DB = 1 to PROTO_FROM_DB = 0 1 means yes and 0 means no
  9. @ReFresh I added the map to atlasinfo.txt in locale folder I fixed SYSERR: Feb 21 05:35:32 :: Spawn: <Temple Ochao> Spawn: can't spawn 6400 at X [883600], Y [1427500], Z [0]. SYSERR: Feb 21 05:35:32 :: SpawnMob: SpawnMob: no mob data for vnum 6400
  10. Hello when I try to teleport from temple of ochao to enchanted forest via portal that drops from (Entai_Guardian) I can't I added the map to the map index in the server and in the client and in all channels cores and setting.lua but that didn't helped me here is the quest that I used to teleport quest temple_of_the_ochao begin state start begin when login with pc.get_map_index() == 209 begin temple_ochao.initialize() end when 6311.kill with pc.get_level() >= 95 begin local drop = { {["vnum"] = 2145, ["count"] = 1, ["chance"] = 60,}, {["vnum"] = 11295, ["count"] = 1, ["chance"] = 55,}, {["vnum"] = 11495, ["count"] = 1, ["chance"] = 55,}, {["vnum"] = 11695, ["count"] = 1, ["chance"] = 55,}, {["vnum"] = 11895, ["count"] = 1, ["chance"] = 55,}, {["vnum"] = 21075, ["count"] = 1, ["chance"] = 55,}, {["vnum"] = 70043, ["count"] = 1, ["chance"] = 45,}, {["vnum"] = 30609, ["count"] = 1, ["chance"] = 15,}, {["vnum"] = 30612, ["count"] = 1, ["chance"] = 15,}, {["vnum"] = 30523, ["count"] = 1, ["chance"] = 40,}, } for i, info in ipairs(drop) do local generate = number(1, 100) if generate <= info.chance then game.drop_item_with_ownership(info.vnum, info.count, 300) end end end when 20408.chat."Enter in the Temple of Ochao" with pc.get_level() >= 95 begin say_title(mob_name(20408)) say("") say("Do you want to move directly to the Temple of the") say("Ochao?") local answer = select("Yes", "No") if answer == 1 then pc.warp(853700, 1416400) end end when 20415.chat."Travel to the Enchanted Forest" with pc.get_level() >= 95 begin say_title(mob_name(20408)) say("") say("Do you wish to travel to the Enchanted Forest of") say("Dawn?") local answer = select("Yes", "No") if answer == 1 then pc.setf("enchanted_forest", "limit_activity", 0) pc.warp(816700, 150500) end end end end here is the syserr SYSERR: Feb 21 05:35:32 :: SpawnMob: SpawnMob: no mob data for vnum 6400 SYSERR: Feb 21 05:35:32 :: Spawn: <Temple Ochao> Spawn: can't spawn 6400 at X [883600], Y [1427500], Z [0]. SYSERR: Feb 21 05:35:51 :: WarpSet: cannot find map location index 0 x 816700 y 150500 name xLoGaN any help is appreciated best regards
  11. Hi guys I've got a big problem with the login The problem is that when i try to create a new character and click button "start" it stops and in the syserr of the channel there's error this error appeared after inserted temple of Ochoa in my source , there is no errors in db syserr I tried to remove and insert the system more than 5 times but still got this error can you help me solve this please ? here is the channel syserr SYSERR: Jul 22 17:39:56 :: Empire: EmpireSelectFailed 25 SYSERR: Jul 22 18:12:08 :: Empire: EmpireSelectFailed 25 SYSERR: Jul 22 21:41:20 :: Empire: EmpireSelectFailed 26 SYSERR: Jul 22 23:02:24 :: Empire: EmpireSelectFailed 26 SYSERR: Jul 22 23:27:54 :: Empire: EmpireSelectFailed 27 SYSERR: Jul 22 23:29:18 :: Empire: EmpireSelectFailed 27 SYSERR: Jul 22 23:32:42 :: Empire: EmpireSelectFailed 27 SYSERR: Jul 22 23:33:23 :: Empire: EmpireSelectFailed 27 SYSERR: Jul 22 23:34:51 :: Empire: EmpireSelectFailed 27 SYSERR: Jul 23 00:25:54 :: Empire: EmpireSelectFailed 27 Kind Regards
×
×
  • 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.