diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-15 22:13:08 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-15 22:13:08 -0300 |
commit | 01b6536dbf67548e579a64995b3e8019594f2f4b (patch) | |
tree | f3a3c1e128590ca8e57ea0c5a0f5c3782098aea8 /npc | |
parent | e269fa5290d5d4e3fb841d5aefc3ba5d880bfbc7 (diff) | |
download | serverdata-01b6536dbf67548e579a64995b3e8019594f2f4b.tar.gz serverdata-01b6536dbf67548e579a64995b3e8019594f2f4b.tar.bz2 serverdata-01b6536dbf67548e579a64995b3e8019594f2f4b.tar.xz serverdata-01b6536dbf67548e579a64995b3e8019594f2f4b.zip |
Bugs
Diffstat (limited to 'npc')
-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: |