You need to edit the signboard lub file. https://github.com/TheDerpySupport/Untold-RO/blob/master/data/luafiles514/lua files/signboardlist.lub
You can download this file and place it in the appropriate location to remove them all
https://github.com/rathena/rathena/blob/master/src/map/skill.c#L1170
After "//On third hit, there is a 150% to freeze the target"
Add:
sc_start(src,bl, SC_DECREASEAGI, 1000, 10, 5000);
Can someone fix this script? there's only 2 problem in this script.
1st. it keep charging me after i used @warp.
2nd. @warp is not working.
- script atcmd_sample_inject -1,{
OnInit:
bindatcmd("warp", "atcmd_sample_inject::OnAtCmd");
end;
OnAtCmd:
if(Zeny >= 1000) {
set Zeny, Zeny - 1000;
useatcmd "@warp " + .@atcmd_parameters$[0] + " " + .@atcmd_parameters$[1] + " " + .@atcmd_parameters$[2];
} else {
dispbottom "Sorry... you need at least 1000z to use this service";
}
end;
}