Originally posted by [b]LimitLine[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=3094
Well, on RE Hiding and Cloaking do not show a SC bar next to their icon since they can be turned off. This applies to all of the SCs that can be turned off.
This is a ScreenShot from Ragnarok Renewal server:
(IMG:
http://img156.imageshack.us/img156/5196/screenr931.jpg)
To fix it, just add this to clif_status_change:
CODE
if( type == SI_CLOAKING || type == SI_HIDING )
tick = 0;
Also, be aware that some SCs which use timers and display a Status Change bar are also bugged. the 'tick' variable in status_change_start is used to determine how long will the SC bar will last for, but SCs which have timers like Cloaking and Hiding (SP draining) use 'tick' to determine the interval before status_change_timer is called again.