Jump to content

cherabomba

Inactive Member
  • Posts

    12
  • Joined

  • Last visited

  • Feedback

    0%

About cherabomba

Informations

  • Gender
    Male

Recent Profile Visitors

808 profile views

cherabomba's Achievements

Contributor

Contributor (5/16)

  • Collaborator
  • Conversation Starter
  • Dedicated
  • Reacting Well
  • First Post

Recent Badges

1

Reputation

  1. Which offline shop system did you use? I would like to implement it in my svfiles reference. Could you give me the download link?
  2. I need to remove npc 9004 from cities, but I can't find it in the npc.txt file Solution: /e xmas_boom 0
  3. CONTRIBUTION: This system work fine, but is limited to costume_body, not working with costume hair. For fix it and accept with all type of costume: In char.cpp, search: if (costume1->GetType() != ITEM_COSTUME || costume1->GetType() == ITEM_COSTUME && costume1->GetSubType() != ARMOR_BODY) { ChatPacket(CHAT_TYPE_INFO, "Bu islem sadece zirh kostumune yapilabilir!"); return; } Replace to: if (costume1->GetType() != ITEM_COSTUME) { ChatPacket(CHAT_TYPE_INFO, "Bu islem sadece zirh kostumune yapilabilir!"); return; } Search: if (costume2->GetType() != ITEM_COSTUME || costume2->GetType() == ITEM_COSTUME && costume2->GetSubType() != ARMOR_BODY) { ChatPacket(CHAT_TYPE_INFO, "Sadece kostumun bonusu aktarilabilir !"); return; } Replace to: if (costume2->GetType() != ITEM_COSTUME) { ChatPacket(CHAT_TYPE_INFO, "Sadece kostumun bonusu aktarilabilir !"); return; } Is it! Sorry my english, not is my native language.
  4. Hello! I have a problem with quest monarch system (by shogun) in game/dB 40k. The Quest does not add a newline to each insertion in the share/data/monarch_election file that way i need to manually go and add new lines for each candidate application I tried inserting \n in the code, but it didn't work Can you help me? Sorry my bad english, hehe.
  5. Have you already installed lua 5.3? if yes, install FreeBSD 13.
  6. I have this problem during compilation in constants.cpp constants.cpp:365: error: too many initializers for 'const DWORD [301]' constants.cpp:671: error: too many initializers for 'const DWORD [301]' constants.cpp:977: error: too many initializers for 'const DWORD [301]' how to fix it? I used freebsd 9.2 64bits for the compile
×
×
  • 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.