Jump to content

Change Skill Group - Visual Bug Fix


Fire

Recommended Posts

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;
    }

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...