Jump to content

z35

Member
  • Posts

    130
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Posts posted by z35

  1. Hey Devs, my client syserr showed this problem, any help to fix it?

    Spoiler

     

    1223 00:04:37047 :: Traceback (most recent call last):

    1223 00:04:37048 ::   File "introSelect.py", line 555, in <lambda>

    1223 00:04:37048 ::   File "introSelect.py", line 1047, in OverInButton

    1223 00:04:37048 :: TypeError
    1223 00:04:37048 :: : 
    1223 00:04:37048 :: not all arguments converted during string formatting
    1223 00:04:37048 :: 

     

    Also, line 1047 of introSelect.py

    Spoiler

    self.toolTip.AutoAppendNewTextLine(uiScriptLocale.SELECT_PLAYTIME % (playTime), grp.GenerateColor(1.0, 1.0, 0.0, 1.0))

     

  2. char_skill.cpp

        if (IS_SET(pkSk->dwFlag, SKILL_FLAG_SELFONLY))
            ComputeSkill(dwVnum, this);
        else if (IS_SET(pkSk->dwFlag, SKILL_FLAG_PARTY) && !GetParty())ComputeSkill(dwVnum, this);
        else if (IS_SET(pkSk->dwFlag, SKILL_FLAG_PARTY) && GetParty())
        {
            FPartyPIDCollector f;
            GetParty()->ForEachOnMapMember(f, GetMapIndex());
            for (std::vector <DWORD>::iterator it = f.vecPIDs.begin(); it != f.vecPIDs.end(); it++)
            {
                LPCHARACTER ch = CHARACTER_MANAGER::instance().FindByPID(*it);
                ComputeSkill(dwVnum, ch);
            }
        }

    • Love 1
×
×
  • 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.