Summoner does not know when it's sitting

International

Moderator: Moderators

Message
Author
Juka
Noob
Noob
Posts: 7
Joined: 28 Feb 2017, 12:06
Noob?: No

Summoner does not know when it's sitting

#1 Post by Juka »

On my summoner the console does not tell when it's sitting. In the bottom left corner it does say "Sit auto", but it doesn't seem to work properly as it keeps spamming buffs that are "notWhileSitting 1".

How could I fix it?

Edit: Apparently to fix it, you have to access CoreLogic.pm and replace

if ($char->{skills}{NV_BASIC}{lv} >= 3 && !$char->{sitting} && timeOut($timeout{ai_sit_idle})

with

if (($char->{skills}{NV_BASIC}{lv} >= 3 || $char->{skills}{SU_BASIC_SKILL}{lv} == 1) && !$char->{sitting} && timeOut($timeout{ai_sit_idle})

And

if ($action eq "sitAuto" && !$char->{sitting} && $char->{skills}{NV_BASIC}{lv} >= 3 &&

with

if ($action eq "sitAuto" && !$char->{sitting} && ($char->{skills}{NV_BASIC}{lv} >= 3 || $char->{skills}{SU_BASIC_SKILL}{lv} == 1) &&

Credit to chinyong-lim for finding the fix!