summaryrefslogtreecommitdiff
path: root/npc/025-2-3
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-02-26 14:14:12 -0300
committerJesusaves <cpntb1@ymail.com>2021-02-26 14:14:12 -0300
commit72f62c743624dcaf116b4d5f5f7a8717538bb480 (patch)
tree73708f2234100ccc65490a1baa40c608d6ba0caa /npc/025-2-3
parent602d38794539ebeae84c01b293340ece62906af2 (diff)
downloadserverdata-72f62c743624dcaf116b4d5f5f7a8717538bb480.tar.gz
serverdata-72f62c743624dcaf116b4d5f5f7a8717538bb480.tar.bz2
serverdata-72f62c743624dcaf116b4d5f5f7a8717538bb480.tar.xz
serverdata-72f62c743624dcaf116b4d5f5f7a8717538bb480.zip
Defeating Pinkie Emperor (hourly challenge) now gives 1 strange coin to all party members.
Only survivors are counted.
Diffstat (limited to 'npc/025-2-3')
-rw-r--r--npc/025-2-3/boss.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/025-2-3/boss.txt b/npc/025-2-3/boss.txt
index ebed55c0f..a2ed20fe3 100644
--- a/npc/025-2-3/boss.txt
+++ b/npc/025-2-3/boss.txt
@@ -22,10 +22,16 @@ OnBossDeath:
.@party=getcharid(1);
if (.@party > 0) {
mapannounce "025-2-3", "Boss deafeated by Party: " + getpartyname(.@party), bc_all;
+ partytimer("025-2-4", 200, "#BossCtrl_025-2-3::OnBossReward");
} else {
mapannounce "025-2-3", "Boss deafeated by: " + strcharinfo(0), bc_all;
+ getitem StrangeCoin, 1;
}
callfunc "02524_Revenge_BlackBox";
end;
+OnBossReward:
+ if (ispcdead()) end;
+ getitem StrangeCoin, 1;
+ end;
}