Jump to content

Fire

Banned
  • Posts

    87
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Fire

  1. quest npcshop begin state start begin when 9001.chat."Potts" begin npc . open_shop() setskin(NOWINDOW) end when 9001.chat."Upp" begin npc.open_shop() setskin(NOWINDOW) end when 9001.chat."kommt noch" begin npc.open_shop() setskin(NOWINDOW) end when 9003.chat."kommt noch" begin npc.open_shop(52) setskin(NOWINDOW) end end end
  2. The problem is that you have to convert mob_proto from server to client correctly and later you will see your translation working correctly
  3. Did you try to convert the proto server to client?
  4. You can try svside. Post this topic in the right section
  5. it's a way of saying . Some parts , as you can see, can be rewritten in a few line
  6. I don’t criticize what I can’t understand because I can write it better, more syntax are very big and you can write all in "one" line. It’s just my opinion you can accept it or not and please doesn’t use this font because I lost my eyes...
  7. You should contact VegaS and buy it. The uiscript files are missing
  8. Hi, i think that a lot of people know this bug because it afflict a lot of revision. If you are a Body Warrior and you do a skill like Aura of the sword and we try to change our skill group in Mental, we can see that we have got Mental skill group and the Aura of the sword active too. How fix this? Open questlua_pc.cpp and search: int pc_set_skillgroup(lua_State* L) { if (!lua_isnumber(L, 1)) sys_err("QUEST wrong skillgroup number"); else { CQuestManager & q = CQuestManager::Instance(); LPCHARACTER ch = q.GetCurrentCharacterPtr(); ch->SetSkillGroup((BYTE) rint(lua_tonumber(L, 1))); } return 0; } Replace code with: int pc_set_skillgroup(lua_State* L) { if (!lua_isnumber(L, 1)) sys_err("QUEST wrong skillgroup number"); else { CQuestManager & q = CQuestManager::Instance(); LPCHARACTER ch = q.GetCurrentCharacterPtr(); ch->RemoveGoodAffect(); ch->SetSkillGroup((BYTE) rint(lua_tonumber(L, 1))); } return 0; }
  9. 1) GameType.h in UserInferface, slot number error
  10. Change gamelib to GameLib in PythonSkillPet Packet.h = find packet_update_char and add dwLevel variable like server-side part
  11. You can make this query for fix the size and the setRaceFlag INSERT IGNORE INTO ... the rest of the query
  12. Change the coordinates of mob, they are out of range!
×
×
  • 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.