diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-03-07 16:37:32 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-03-07 16:37:32 -0300 |
commit | c6a2871fbf9535d5ffe2126c04c624a807b46cd7 (patch) | |
tree | f25601180a71bdea42b35e3111ca5be5b38a5d10 /npc/003-2-1/demure.txt | |
parent | 6aceff972c764590010e29770b41adcbe1c205da (diff) | |
download | serverdata-c6a2871fbf9535d5ffe2126c04c624a807b46cd7.tar.gz serverdata-c6a2871fbf9535d5ffe2126c04c624a807b46cd7.tar.bz2 serverdata-c6a2871fbf9535d5ffe2126c04c624a807b46cd7.tar.xz serverdata-c6a2871fbf9535d5ffe2126c04c624a807b46cd7.zip |
By Saulc's command (and with the help of a huge SQL query)...
* You'll be kicked from Complain depto for 15 min after 100 kills.
- This will be increase in 1 minute every kick, up to a hour.
* Coin Bag sell price nerfed in 25 GP
* Dragon Scales sell price nerfed in 60 GP
Will take a while until these changes show any positive effect ingame.
Once they do, however, we'll need to nerf the prices in Fortress Town.
Diffstat (limited to 'npc/003-2-1/demure.txt')
-rw-r--r-- | npc/003-2-1/demure.txt | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/npc/003-2-1/demure.txt b/npc/003-2-1/demure.txt index 35b532522..357577db1 100644 --- a/npc/003-2-1/demure.txt +++ b/npc/003-2-1/demure.txt @@ -28,7 +28,20 @@ close; OnHydra: - areamonster "003-2-1", 20, 20, 65, 60, strmobinfo(1, GreenDragon), GreenDragon, any(1,1,2); + areamonster "003-2-1", 20, 20, 65, 60, strmobinfo(1, GreenDragon), GreenDragon, any(1,1,2), "NotSoBot::OnHydra2"; + setq Q_DragonFarm, getq(Q_DragonFarm)+1; + if (getq(Q_DragonFarm) > 100) goto L_Kick; + end; + +OnHydra2: + setq Q_DragonFarm, getq(Q_DragonFarm)+1; + if (getq(Q_DragonFarm) > 100) goto L_Kick; + end; + +L_Kick: + .@t=900+min(2700, getq3(Q_DragonFarm)*60); + setq Q_DragonFarm, 1, gettimetick(2)+.@t, getq3(Q_DragonFarm)+1; + warp "003-2", 28, 41; end; OnInit: |