diff options
-rw-r--r-- | npc/012-1/guards.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/012-1/guards.txt b/npc/012-1/guards.txt index 15b4ca41a..793b397fd 100644 --- a/npc/012-1/guards.txt +++ b/npc/012-1/guards.txt @@ -316,7 +316,7 @@ OnSkip: // .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)) getmapxy(.@m$, .@x, .@y, 0); - makeitem(StrangeCoin, 1, .@m$, .@x, .@y); + makeitem(StrangeCoin, 1, "012-1", .@x, .@y); end; OnTimer300000: @@ -397,7 +397,7 @@ OnXtreem: // You have 0.1% of base chance, plus 0.2% each fighting player + 1% each near player. getmapxy(.@m$, .@x, .@y, 0); if (rand(10000) <= 10 + (getmapusers("012-1")*20) + (getareausers("012-1", .@x-8, .@x+8, .@y-8, .@y+8)*100)) - makeitem(BronzeGift, 1, .@m$, .@x, .@y); + makeitem(BronzeGift, 1, "012-1", .@x, .@y); end; OnVictory: @@ -435,7 +435,7 @@ OnVictory: // You have 5% of base chance, plus 2% for each living player. if (rand(10000) <= 500 + (getmapusers("012-1")*200)) getmapxy(.@m$, .@x, .@y, 0); - makeitem(StrangeCoin, 1, .@m$, .@x, .@y); + makeitem(StrangeCoin, 1, "012-1", .@x, .@y); end; OnReward: |