Jump to content

ekoo

Inactive Member
  • Posts

    39
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by ekoo

  1. you missing ; it end of code ​ add ; in end of code at line 2508
  2. playerSettingModule.py(line:1385) playerSettingModule.LoadGameData (playerSettingModule.c:37470) playerSettingModule.py(line:1229) playerSettingModule.__LoadGameNPC (playerSettingModule.c:35331) LoadGameData - <type 'exceptions.KeyError'>:'srcFileName' ============================================================================================================ Abort!!!! !!! Failed to load game data : STEP [97] Solved
  3. Just compile the binrary as release not debug and you will not see this windowany othere bubug thing learn c++ good for u
  4. Do you know the hack which allow players to create items ? just vizual items ? They can show them in trade, pm and chat, but this items are just visual not real. Is there a way to make the game check if it exist in database ? and after let show them in chat etc ? Does this glitch work on all items, or just item_quest?
  5. rootlib must be included in client/lib/ if you are not using rootlib then check marty tuto again How I can include it in clientlib? (note: I had include it when compile the binrary)
  6. Traceback: Error: No module named rootlib [Hidden Content]
  7. same problem mainline (game) 40250 client binrary
  8. It's need compile binrary using debug mode, I don't know diff do this
  9. so just change to locale to anything except "germany"
  10. Change locale to anything except "germany" -- edited --
  11. Hello Where I can find packet that's send dialog war to guild master? (in game source)
  12. Will be more better if do it with source
  13. it works perfectly thank you what about first question do you have any idea ?
  14. hi developers i have two questions about python first one : Can I replace chat text to picture ? like replace s1 in chat text to smile like this ( ) secondly: Can I post player level next to his name in whisper ? i believe all of this is possible, but idk if is it need python only or c++ too ? peace
  15. follow this [Hidden Content] #4 and quest kryzek_pvp begin state start begin when kill with npc.is_pc() begin pc.give_exp2(21000000) mysql_query("UPDATE player.player SET prestige=prestige+1 WHERE name='"..pc.get_name().."' LIMIT 1") end end end
  16. quest kryzek_pvp begin state start begin when kill with npc.is_pc() begin pc.give_exp2(21000000) mysql_query("UPDATE player.player SET `prestige`=prestige+1 WHERE `name`='"..pc.get_name().."' LIMIT 1") end end end
  17. Replace or die('socket error - no table'); with or die(mysql_error()); and paste the error here
  18. replace game.drop_item(item) with: game.drop_item_with_ownership(item, count)
  19. Hi everybody, I want do function in game source ( mysql query select ) my function int _mysql_query_select( lua_State* L ){ SQLMsg *msg = DBManager::instance().DirectQuery(lua_tostring(L, 1)); if (msg->uiSQLErrno != 0) return 0; MYSQL_RES *res = msg->Get()->pSQLResult; MYSQL_ROW row = mysql_fetch_row(res); if (!row) return 0; lua_pushstring(L, row); return 1; } error questlua_global.cpp: In function 'int quest::_mysql_query_select(lua_State*)': questlua_global.cpp:1207: error: cannot convert 'char**' to 'const char*' for argument '2' to 'void lua_pushstring(lua_State*, const char*)'
  20. There are many different files between the novaline&mainline, i think this will be get a lot of error
×
×
  • 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.