Page 1 of 1

Summoner does not know when it's sitting

Posted: 04 Mar 2017, 18:00
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!