Jump to content

Ken

Inactive Member
  • Posts

    726
  • Joined

  • Last visited

  • Days Won

    44
  • Feedback

    0%

Everything posted by Ken

  1. This feature is already existed in world of metin2. Also this support skill is use in korean servers. Kind Regards Ken ~ TA
  2. You should be get column of socket3 from database. It's already exist in item.sql. Also you should be add column of socket for item_proto. Kind Regards Ken ~ TA
  3. Sequence tables are not match. System only say that. mainline_released is kick via this error but i think other lines don't Kind Regards Rize
  4. System is only say 0x8000000f is not match via 0x80000010. You have to check that file. (I know it's too hard ) System say game.py hasn't command_QuestDeclare. You should be define that in game.py System is not find this hair in table. Kind Regards Rize in what the table hair haven`t?and for this error can be kick? These errors are not make crash your game or your client. It's only looking like warning. (Actual is error) Kind Regards Rize
  5. Your dat files are not valid. That's all Check 4 inventory steps again. Kind Regards Rize
  6. System is only say 0x8000000f is not match via 0x80000010. You have to check that file. (I know it's too hard ) System say game.py hasn't command_QuestDeclare. You should be define that in game.py System is not find this hair in table. Kind Regards Rize
  7. System want to valid variables from server. System is not work as correctly If server is not send valid variables to server. You should be do part of server. Kind Regards Rize
  8. Simple example for you. Kind Regards Zerelth ~ Ellie HELLO ?? Do you see my post ? Where is the defined this veriables in your first post. P.S: bugs,bugs,bugs; class Koray >> class Koray() print("-") >> print "-" I think python is not like me I don't have much time for these things any more. You should be look at this if you are still think this wrong. Python Classes Kind Regards Zerelth ~ Ellie
  9. def Polymorph(self, race): if(race.isdigit()) chr.SetRace(int(race)) chr.Update() else: chr.SetRace(race) chr.Update() ##################################################3 # How to use # First way : Polymorph(101) # Second way : Polymorph("101") #DontKillPython Kind Regards Zerelth ~ Ellie P.S: Your usage method wrong. The truth "self.Polymorph(race)" SetRace = chr.SetRace SetHair = chr.SetHair SetArmor = chr.SetArmor Refresh = chr.Update But it's easy, isn't it? Kind Regards Zerelth ~ Ellie Where is the defined this veriables? Simple example for you. Kind Regards Zerelth ~ Ellie
  10. def Polymorph(self, race): if(race.isdigit()) chr.SetRace(int(race)) chr.Update() else: chr.SetRace(race) chr.Update() ##################################################3 # How to use # First way : Polymorph(101) # Second way : Polymorph("101") #DontKillPython Kind Regards Zerelth ~ Ellie P.S: Your usage method wrong. The truth "self.Polymorph(race)" SetRace = chr.SetRace SetHair = chr.SetHair SetArmor = chr.SetArmor Refresh = chr.Update But it's easy, isn't it? Kind Regards Zerelth ~ Ellie
  11. def Polymorph(self, race): if(race.isdigit()) chr.SetRace(int(race)) chr.Update() else: chr.SetRace(race) chr.Update() ##################################################3 # How to use # First way : Polymorph(101) # Second way : Polymorph("101") If you wanna provide all security for this function, here third way. def Polymorph(race): try: if(race.isdigit()): chr.SetRace(int(race)) chr.Update() else: chr.SetRace(race) except: chr.SetRace(race) chr.Update() ##################################################3 # How to use # First way : Polymorph(101) # Second way : Polymorph("101") #DontKillPython Kind Regards Zerelth ~ Ellie
  12. You should be load mob proto before don't do this. SetRace(101) SetHair(0) SetArmor(0) Refresh() Kind Regards Zerelth ~ Ellie
  13. Lycan can only use claws. System should be only load claws from data folder. Not all weapons (For lycan) Kind Regards. Zerelth ~ Ellie
  14. It's looking like something is not load. (wait animation etc.) Kind Regards Zerelth ~ Ellie
  15. If client is not start as normal way, build as debug mode and see all errors But you wanna check first ways here ; Check library folder & Check python27.dll (It's wrong sometime if you are get it from someone) Kind Regards Zereth ~ Ellie
  16. gmake -j20 This command is only mean escape all errors and you can't see actual error. Is always the best way gmake because when gmake is see the error, system stopped and you can see actual error. Kind Regards Zerelth ~ Ellie
  17. enum EEterPackTypes { DBNAME_MAX_LEN = 255, FILENAME_MAX_LEN = 160, FREE_INDEX_BLOCK_SIZE = 32768, FREE_INDEX_MAX_SIZE = 512, DATA_BLOCK_SIZE = 256, COMPRESSED_TYPE_NONE = 0, COMPRESSED_TYPE_COMPRESS = 1, COMPRESSED_TYPE_SECURITY = 2, COMPRESSED_TYPE_PANAMA = 3, COMPRESSED_TYPE_HYBRIDCRYPT = 4, COMPRESSED_TYPE_HYBRIDCRYPT_WITHSDB = 5, COMPRESSED_TYPE_COUNT = 6, }; CEterPack::Get - I think you are thinking all pack types as normal encryption or something. Kind Regards Zerelth ~ Ellie
  18. You are ellie ? I am ghost of ellie. Kind Regards Zerelth ~ Ellie
  19. Change py file & change start argument. I think it's soooooo hard Kind Regards Zerelth ~ Ellie
  20. You can do this via a little c++ knowledge He's mean pet is gone if character has pet and try to teleport. (If i understand him as correctly) Kind Regards Zerelth ~ Ellie
  21. Kill game & start game again. Why you are trying to kill yourself soul via reload q? Kind Regards Zerelth ~ Ellie
  22. char szQuery[512]; snprintf(szQuery,sizeof(szQuery),"SELECT coins FROM account WHERE id = %u",ch->GetAID()); std::auto_ptr<SQLMsg> pMsg(CDBManager::instance().DirectQuery(szQuery,SQL_ACCOUNT)); if(pMsg->Get()->uiNumRows > 0) { int iCoins = 0; MYSQL_ROW row = mysql_fetch_row(pMsg->Get()->pSQLResult); str_to_number(iCoins,row[0]); } Kind Regards Zerelth ~ Ellie Your point? Second way
  23. char szQuery[512]; snprintf(szQuery,sizeof(szQuery),"SELECT coins FROM account WHERE id = %u",ch->GetAID()); std::auto_ptr<SQLMsg> pMsg(CDBManager::instance().DirectQuery(szQuery,SQL_ACCOUNT)); if(pMsg->Get()->uiNumRows > 0) { int iCoins = 0; MYSQL_ROW row = mysql_fetch_row(pMsg->Get()->pSQLResult); str_to_number(iCoins,row[0]); } Kind Regards Zerelth ~ Ellie
  24. I think gameforge has too old game version All game file version is 40250 because is coming from kraizy.tar.gz Kind Regards Zerelth ~ Ellie
×
×
  • 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.