diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/mobpoint.txt | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/npc/functions/mobpoint.txt b/npc/functions/mobpoint.txt index 84b8f91c0..45a741966 100644 --- a/npc/functions/mobpoint.txt +++ b/npc/functions/mobpoint.txt @@ -22,19 +22,15 @@ function script mobpoint { OnNPCKillEvent: // Remove undue Job exp // The check is probably correct, but setparam is not working =/ + /* if (strmobinfo(7, killedrid) == 0 && readparam(JobExp) > 0) { setparam(JobExp, readparam(JobExp)-1); - if (is_admin()) - addtimer(200, "#mobptsys::OnDelJExp"); } + */ // call functions callfunc "mobpoint"; callfunc "SQuest_Hasan"; end; -OnDelJExp: - setparam(JobExp, 100); - dispbottom "Totally broken"; - end; } |