diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-02 11:47:19 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-02 11:47:19 -0300 |
commit | 87f06c10487c295ab9e593eae0d0b245b04b6a96 (patch) | |
tree | 63d0ccd42d7b55d911258e137f12e55a5ad8e923 | |
parent | 34271ea68384b9b43aac2260654c21d4cb222564 (diff) | |
download | serverdata-87f06c10487c295ab9e593eae0d0b245b04b6a96.tar.gz serverdata-87f06c10487c295ab9e593eae0d0b245b04b6a96.tar.bz2 serverdata-87f06c10487c295ab9e593eae0d0b245b04b6a96.tar.xz serverdata-87f06c10487c295ab9e593eae0d0b245b04b6a96.zip |
Fix 001-1 too
-rw-r--r-- | npc/001-1/eventmaster.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/001-1/eventmaster.txt b/npc/001-1/eventmaster.txt index 14c2d0891..3e2064914 100644 --- a/npc/001-1/eventmaster.txt +++ b/npc/001-1/eventmaster.txt @@ -260,8 +260,8 @@ OnAerosMobDeath: // A level 100 monster can have a 4% drop bonus against a level 0 monster. // .coins_rate acts stablishing a basic drop value. Advised value: 600 (up to 10% for normal mobs) if (rand(10000) <= .coins_rate + (atoi(strmobinfo(3,killedrid))*4)) - getmapxy(.@m, .@x, .@y, 0); - makeitem(StrangeCoin, 1, .@m, .@x, .@y); + getmapxy(.@m$, .@x, .@y, 0); + makeitem(StrangeCoin, 1, .@m$, .@x, .@y); end; OnInit: |