diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-02 17:27:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-02 17:27:36 -0300 |
commit | 5ac3d58d05798d55f2db1de4bbc46a472eff2545 (patch) | |
tree | 37fa8b9f18aeb95b1dc6b4cdfd909db3f76bb87d /npc/012-1 | |
parent | 3624d09562343863a91f5ff244cd1c645dbaabaa (diff) | |
download | serverdata-5ac3d58d05798d55f2db1de4bbc46a472eff2545.tar.gz serverdata-5ac3d58d05798d55f2db1de4bbc46a472eff2545.tar.bz2 serverdata-5ac3d58d05798d55f2db1de4bbc46a472eff2545.tar.xz serverdata-5ac3d58d05798d55f2db1de4bbc46a472eff2545.zip |
Optimize Stuff for Crazyfefe
Diffstat (limited to 'npc/012-1')
-rw-r--r-- | npc/012-1/guards.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/012-1/guards.txt b/npc/012-1/guards.txt index 6de6a60df..d50241346 100644 --- a/npc/012-1/guards.txt +++ b/npc/012-1/guards.txt @@ -166,7 +166,7 @@ OnSkip: // You have 1% of base chance, plus 0.5% each player + 0.05% each monster level. if (rand(10000) <= 100 + (getmapusers("012-1")*50) + (strmobinfo(3,killedrid)*5)) getmapxy(.@m$, .@x, .@y, 0); - makeitem(StrangeCoin, 1, "012-1", .@x, .@y); + makeitem(any(Plushroom, Chagashroom, Bread, HalfCroconut, Aquada, CasinoCoins), rand(1,2), "012-1", .@x, .@y); end; OnTimer300000: |