Jump to content

root100

Member
  • Posts

    12
  • Joined

  • Last visited

  • Feedback

    0%

1 Follower

About root100

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

root100's Achievements

Enthusiast

Enthusiast (6/16)

  • Collaborator
  • One Month Later
  • First Post
  • Week One Done
  • Dedicated

Recent Badges

4

Reputation

  1. thank you, would you add the possibility to hide/show the map and the categories "cities", "exp", "other"?
  2. Hello, can someone explain to me how to make a bonus that gives all stats (strength, agility, intelligence, vitality)?
  3. @ Th1Doose 1. G1 +1 2. G1 > P
  4. @ Th1Doose like a Soul Stone
  5. hello, could someone write a quest to: 1. item that advances skills every 1 level. 2. an item that advances to level P. pleas { "get_buff_level", pc_get_shaman_skill_level }, { "learn_shaman_skill", pc_train_shaman_skill_level }, -------------------------------------------------------------------------------- int pc_get_shaman_skill_level(lua_State* L) { LPCHARACTER pChar = CQuestManager::instance().GetCurrentCharacterPtr(); if (!pChar) return 0; if (!lua_isnumber(L, 1)) { sys_err("Wrong argument"); return 0; } BYTE bySkillVnum = static_cast<BYTE>(lua_tonumber(L, 1)); if (!pChar->GetShamanSystem()) { lua_pushnumber(L, 0); return 1; } lua_pushnumber(L, pChar->GetShamanSystem()->GetSkillLevel(bySkillVnum)); return 1; } int pc_train_shaman_skill_level(lua_State* L) { LPCHARACTER pChar = CQuestManager::instance().GetCurrentCharacterPtr(); if (!pChar) return 0; if (!lua_isnumber(L, 1)) { sys_err("Wrong argument"); return 0; } BYTE bySkillVnum = static_cast<BYTE>(lua_tonumber(L, 1)); if (!pChar->GetShamanSystem()) { lua_pushboolean(L, false); return 1; } lua_pushboolean(L, pChar->GetShamanSystem()->TrainByQuest(bySkillVnum)); return 1; } Thank you in advance for your help
  6. Hello, I have installed a growth pet system. When I invoke the pet in the small gui, it incorrectly shows the size of the images. pet with all slots unlocked: two slots blocked:: Active skills: PythonWindowManagerModule.cpp PythonSlotWindow.cpp PythonSlotWindow.h ui.py uipetinfo.py - class PetMiniInfomationWindow PetMiniInformationWindow.py Please help to solve this problem or how much do I have to pay for the repair?
  7. hello I am installing offline shops, but I am getting an error: Unknown Server Command StartOpeningOfflineShop 604800 500 | StartOpeningOfflineShop char_item.cpp Game.py Interfacemodule.py uiofflineshop.py FUL GHOSTBIN.me uiofflineshop.Open Can anyone help me solve this problem?
  8. FreeBSD clang version 6.0.1 Target: x86_64-unknown-freebsd12.0
  9. Hi, I installed everything from this tutorial and created a file called clang++90 in /usr/local/bin/ and after typing the command clang++90 --version I received a message clang++90: Command not found. FreeBSD 12 amd64 Why did this happen? Can anyone help me?
  10. Hi I have a mount systemfrom zen (renewal). Summoning Item 52001 - 52016 Value 1 ID MOBA(20201) I can lead and attack them. I added a new item summoning ID 32500 - 32560 (copied from 52001) and new mounts ID 22200 - 22260 (copied from 20201) I also added ID to PvP.cpp and IstanceBase.cpp and when I enter new mounts immediately descend [Hidden Content] HELP PLS
  11. Hello ! I have a problem with the sash system, I can't see the degree of absorption in the inventory. syser clean [Hidden Content] uitooltip.py Please help
×
×
  • 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.