Jump to content

xP3NG3Rx

Honorable Member
  • Posts

    855
  • Joined

  • Days Won

    402
  • Feedback

    100%

Everything posted by xP3NG3Rx

  1. What are you talking about? Could you explain it?
  2. Use this batchfile to collecting the source files into rar archive: @echo off if %1=="" goto :eof set SAVESTAMP=%DATE:-=%%TIME::=% set SAVESTAMP=%SAVESTAMP: =0% set SAVESTAMP=%SAVESTAMP:,=% if not exist "%~1_backup" ( mkdir "%~1_backup%" echo make dir: "%~n1_backup" ) echo backup name: "%~n1_%SAVESTAMP%" "c:Program FilesWinRARWinRAR.exe" a -r "%~1_backup/%~n1_%SAVESTAMP%.rar" -m5 -ep1 -n*.h -n*.c -n*.cc -n*.cpp -n*.hpp -n*.sln -n*.suo -n*.vssscc -n*.vcproj -n*.vcxproj -n*.vspscc -n*.cur -n*.ico -n*.manifest -n*.filters -n*.user -n*.aps -n*.rc -n*.vspscc "%~1" echo "%~n1_backup/%~n1_%SAVESTAMP%.rar" pause :eof Usage: cmd# backup Server[ENTER] w8 until done and press a button. ps. This batch-script made by Terenzo.
  3. Try this dif on clean r34669 binary: 000BD1C3: 00 01 Or find this in hex mode: 83 C4 04 85 C0 74 E6 6A 00 E8 A7 ED 07 00 And replace with this: 83 C4 04 85 C0 74 E6 6A 01 E8 A7 ED 07 00
  4. Sorry, I will not create sql from these, but here they are in xml: item&mob-proto(gf)-de-2015.01.11.rar - MEGA.co.nz And here they are in txt format(Be carefull, wolfman contents are in these files!!): item&mob-proto-txt(gf)-de-2015.01.11.rar - MEGA.co.nz
  5. Hahaha, you will never get it .
  6. int pet_is_mine(lua_State* L) { CQuestManager& q = CQuestManager::instance(); LPCHARACTER mch = q.GetCurrentCharacterPtr(); LPCHARACTER tch = q.GetCurrentNPCCharacterPtr(); CPetSystem* petSystem = mch->GetPetSystem(); CPetActor* petActor = petSystem->GetByVID(tch->GetVID()); // ~ DEBUG Messages: /* sys_log(0, "mch->GetVID : %d", mch->GetVID()); sys_log(0, "npc->GetVID : %d", npc->GetVID()); sys_log(0, "petSystem : %s", (petSystem ? "True":"False")); sys_log(0, "petActor : %s", (petActor ? "True":"False")); sys_log(0, "npc->IsPet() : %s", (npc->IsPet() ? "True":"False")); if (petActor) sys_log(0, "petActor->GetOwner()->GetVID() : %d", petActor->GetOwner()->GetVID()); */ lua_pushboolean(L, tch && tch->IsPet() && petActor && petActor->GetOwner() == mch); return 1; } I'm using this and works completely.
  7. game.py: self.is_summoned_horse = self.affectShower.horseImage <> None Or try with this: import uiAffectShower summoned = uiAffectShower.AffectShower().horseImage <> None
  8. No. The packets are not same, 'coz the serverside packets are changed, and the client can't handle the new packet, and his syserr.txt should contain the "Unknown packet..." error message too. Check the #67 post by me(Scroll up).
  9. You have to decrease the value of MotionEventDataCount by 2 in the skill files. Sorry for lately post.
  10. Dada Life feat. Sebastian Bach - Born to Rage (Original Mix)
  11. But martys code looks like working. Read about strcmp here: [Hidden Content] Maybe try with this code: if (strcmp(g_szPublicIP, "5.5.5.5") != 0) { fprintf(stderr, "Illegal IPn"); exit(1); } However if your protected core will be publicly these things easily bypassable.
  12. Jamie Woon - Shoulda (Samy Chelly Remix)
  13. I have made this myself by another way. (No need glass to make shout if empire_chat is enabled.) Check my part of code to solve your problem: const char * ColoredEmpireNames[4] = {"0", "|cFFFF0000[Shinshoo]|r", "|cFFFFFF00[Chunjo]|r", "|cFF0080FF[Jinno]|r",}; const char * ColoredTeamName = "|cFFFFC700[Team]|r"; len = snprintf(chatbuf, sizeof(chatbuf), "%s %s : %s", ch->GetGMLevel() != GM_PLAYER ? ColoredTeamName : ColoredEmpireNames[ch->GetEmpire()], ch->GetName(), buf); The [shinsoo] is so ugly on printscreen by client:
  14. Game compiled without improved_packet_encryption too? Try recompile(or clean+build) the all source(client, db, game, libthecore etc)
  15. EterBase > ServiceDefs.h > #define _IMPROVED_PACKET_ENCRYPTION_ Make it comment by // //#define _IMPROVED_PACKET_ENCRYPTION_
  16. 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
  17. string.match is a built-in function in lua, so that is impossible
  18. #This post has been deleted.
  19. Zedd ft. Matthew Koma and Miriam Bryant - Find You (Extended Mix) <3 Calvin Harris ft. Ellie Goulding - Outside
  20. 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.)
  21. 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);
  22. Official mob_proto has got new properties(maybe resist_claw, enchant_bleeding, resist_bleeding). You cannot unpack it with public extractors.
  23. The "then" keywords were missed from the condition-lines. if cond then
  24. Let's Go Project - Yeke Yeke ( Kuba S & Fisher Remix )
×
×
  • 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.