Jump to content

xP3NG3Rx

Honorable Member
  • Posts

    839
  • Joined

  • Days Won

    393
  • Feedback

    100%

Everything posted by xP3NG3Rx

  1. Game compiled without improved_packet_encryption too? Try recompile(or clean+build) the all source(client, db, game, libthecore etc)
  2. EterBase > ServiceDefs.h > #define _IMPROVED_PACKET_ENCRYPTION_ Make it comment by // //#define _IMPROVED_PACKET_ENCRYPTION_
  3. Done: Game of Thrones S1 & S2 Switched at Birth Under the Dome Arrow Dr. House Criminal Minds Prison Break Currently: Boston Legal The Mentalist Bones Lie to Me Future: Game of Thrones S3, S4 and so on. Spartacus
  4. string.match is a built-in function in lua, so that is impossible
  5. Zedd ft. Matthew Koma and Miriam Bryant - Find You (Extended Mix) <3 Calvin Harris ft. Ellie Goulding - Outside
  6. I'm on it, just my inet is limited to 32kbps d/u ,_, Before upload, I have to get back the files from my unrachable ftp server. I will edit the first post when I'm done. (I can reach my ftp from ftp.okhost.eu only, 'coz the free-service of host is not available anymore.)
  7. Try this: PyObject *pMod = PyImport_AddModule("constInfo"); PyObject *pVal = PyObject_GetAttrString(pMod, "Test"); char* var = PyString_AsString(pVal); Py_DECREF(pVal); printf("Test is: %s", var);
  8. Official mob_proto has got new properties(maybe resist_claw, enchant_bleeding, resist_bleeding). You cannot unpack it with public extractors.
  9. The "then" keywords were missed from the condition-lines. if cond then
  10. Let's Go Project - Yeke Yeke ( Kuba S & Fisher Remix )
  11. Thank you, this will stop some idiots.
  12. With the new contents(wolfman patch) the packets are changed at the character selection window. So you can't start the client with the selfcompiled binary except if you correct the packets or you use a selfcompiled bin + selfroot.epk with changed introLogin.py file > def OnHandshake(self). Like this: [Hidden Content] I hope you see.
  13. Thanks but doesn't work for me I can inject, debug, read/write in memory.
  14. I will never enter my passwords with a precompiled binary except the official.
  15. Post the full syserr.txt! What did you modify with the client most recently?
  16. That is auch. You wrote like this: when kill with false or true or true begin... This will works with every mobs! lux's version is the perfect way.
  17. Me works yet. Now I unpacked the pc3, pc3_m, icon, pet1, pet2. Two new little snowman pets are coming with the winter
  18. Michael Jackson - A Place With No Name (Xscape Delux Edition) Calvin Harris - Blame (feat. John Newman)
  19. tPC2::tPC2() { add("send_effect",send_effect); add("set_level",set_level); add("give_or_drop_item_and_select",(lua_CFunction)0x81B7550); } Calls the original function, but why?
  20. Or just set in the new global variables into: ScriptLib/PythonLauncher.cpp bool CPythonLauncher::Create(const char* c_szProgramName) { //.... PyObject * builtins = PyImport_ImportModule("__builtin__"); PyModule_AddIntConstant(builtins, "TRUE", 1); PyModule_AddIntConstant(builtins, "True", 1); PyModule_AddIntConstant(builtins, "true", 1); PyModule_AddIntConstant(builtins, "FALSE", 0); PyModule_AddIntConstant(builtins, "False", 0); PyModule_AddIntConstant(builtins, "false", 0); //...
×
×
  • 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.