Jump to content

DanielFVS

Member
  • Posts

    5
  • Joined

  • Last visited

  • Feedback

    0%

About DanielFVS

Recent Profile Visitors

249 profile views

DanielFVS's Achievements

Apprentice

Apprentice (3/16)

  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

40

Reputation

  1. Thanks, I fixed it! It seems that i had a function to show the money "text": def RefreshStatus(self): money = player.GetElk() self.wndMoney.SetText(localeInfo.NumberToMoneyString(money)) if app.ENABLE_CHEQUE_SYSTEM: cheque = player.GetCheque() self.wndCheque.SetText(localeInfo.NumberToGoldNotText(cheque)) if app.ENABLE_GEM_SYSTEM: if self.wndGem: gem = player.GetGaya() self.wndGem.SetText(localeInfo.NumberToMoneyString(gem)) So i just replaced them with this: def RefreshStatus(self): money = player.GetElk() self.wndMoney.SetText(localeInfo.NumberToGoldNotText(money)) if app.ENABLE_CHEQUE_SYSTEM: cheque = player.GetCheque() self.wndCheque.SetText(localeInfo.NumberToGoldNotText(cheque)) if app.ENABLE_GEM_SYSTEM: if self.wndGem: gem = player.GetGaya() self.wndGem.SetText(localeInfo.NumberToGoldNotText(gem))
  2. Hi, does anyone know how to solve this? Thanks
  3. Hello, I'm trying to create some new system (Illusion Highland from official servers), but it seems that the quest i'm using has a problem with rejoining the dungeon... Here is a video showing the problem: Note that, every time i join the dungeon, it generates a new map index, it doesn't join the one that my party member is at the moment. Instead of joining my previous dungeon with map index "3060003" it created a new one with "3060004" The quest i'm using [Hidden Content] I appreciate any kind of help, thank you very much!
  4. Hi, I'm trying to implement the Meley Lair in my server, but i'm having a problem during the course of the dungeon. Basically, I implemented all the necessary files (server source, binary and models/maps/quest). The files work, I can enter the dungeon and start it without problems. But in the course of it, after I put all statues at 50% HP, I supposedly need to kill 4 bosses and 4 eggstones to continue taking damage to the statues, but after I do this, nothing happers and all the hits i take to them say "miss"... It seems that somehow the code isn't passing to the next step I tried to check syserrs, both in the server and client side, but its empty... I also tried to implement many versions of the files, incluiding new Meleylair.cpp + MeleyLair.h to the source, but the problem insists to continue. Here is a video showing what happens: (NOTE: The visual bugs of the statues and laser effects have been fixed, but it seems that there is no correlation with this bug) Here's also the MeleyLair.cpp im using right know, in case you wan't to check it out: [Hidden Content] I would appreciate very much if anyone knows how to fix this. Thank you very much for your time. DanielFVS
×
×
  • 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.