Jump to content

xP3NG3Rx

Honorable Member
  • Posts

    837
  • Joined

  • Days Won

    392
  • Feedback

    100%

Everything posted by xP3NG3Rx

  1. Here are two of my favorite songs: Lana Del Rey - Young and Beautiful (Coronita 2013) <3 Billy The Kit - Booster
  2. It is a really nice idea. @Evor I am using only one locale/data/package folder and *.exes. For the channels I am using links which are working. Here is a picture:
  3. Ehm, I do not saw the FAQ, sorry.
  4. My antivirus has detected as a virus If you will publish the source in the future, why did you pack the exe?
  5. Zedd - Clarity (feat. Foxes) Louie Fresco - New Hateration (MK Remix) <3
  6. @Efyn That code is not correct. Because I'm wrote that code in Notepad++ and there is a lots of error what the Visual Studio shows. Here is the correct code: int pet_is_mine(lua_State* L) { CQuestManager& q = CQuestManager::instance(); LPCHARACTER ch = q.GetCurrentCharacterPtr(); LPCHARACTER npc = q.GetCurrentNPCCharacterPtr(); CPetSystem* petSystem = ch->GetPetSystem(); CPetActor* petActor = petSystem->GetByVID(npc->GetVID()); lua_pushboolean(L, npc->IsPet() && petSystem && petActor->GetOwner() == ch); return 1; } I tested on my WinServer and works.
  7. I think you have to put your code into this function in battle.cpp: int battle_melee_attack(LPCHARACTER ch, LPCHARACTER victim) Try it.
  8. Hmm, really nice. One idea is to: Extend the gm command by name reload to reloading the text files for example: /reload bann or something else if it is possible Sorry for my bad english, I hope you mean it. Magyarul:
  9. Hello, I found a little mistake. [...]table.insert(menu, data[i][1].." "..tostring(data[i][2].." Yang"))[...] This method is doing like this: tostring(150000.." Yang") - Bad! The correct is: tostring(150000).." Yang"
×
×
  • 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.