summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
Diffstat (limited to 'npc')
-rw-r--r--npc/012-1/guards.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/012-1/guards.txt b/npc/012-1/guards.txt
index 7a2fb4fa1..377d400d1 100644
--- a/npc/012-1/guards.txt
+++ b/npc/012-1/guards.txt
@@ -317,7 +317,7 @@ OnSkip:
// A level 100 monster can have a 5% drop bonus against a level 0 monster.
// You have 1% of base chance, but 0.5% each player + 0.05% each monster level.
// .coins_rate acts stablishing a basic drop value. Advised value: 600 (up to 10% for normal mobs)
- if (rand(10000) <= 100 + (getmapusers("012-1")*50) + (atoi(strmobinfo(3,killedrid))*5))
+ if (rand(10000) <= 100 + (getmapusers("012-1")*50) + (strmobinfo(3,killedrid)*5))
getmapxy(.@m$, .@x, .@y, 0);
makeitem(StrangeCoin, 1, "012-1", .@x, .@y);
end;