diff options
Diffstat (limited to 'npc/001-10-1')
-rw-r--r-- | npc/001-10-1/scripts.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/001-10-1/scripts.txt b/npc/001-10-1/scripts.txt index 0c507dab4..cfda99a6f 100644 --- a/npc/001-10-1/scripts.txt +++ b/npc/001-10-1/scripts.txt @@ -24,14 +24,14 @@ OnVictory: getitem BottledDust, 1; maptimer("001-10-1", 100, "#COD_BossManager::OnReward1"); - maptimer("001-10-1", 100, "#COD_BossManager::OnReward2"); + maptimer("001-10", 100, "#COD_BossManager::OnReward2"); donpcevent("Colonel DUSTMAN::OnCoDEnd"); end; // Handle rewards: 10 dust for winner party on boss room, 1 dust for everyone else // on boss room, 1 dust for winner party outside boss room OnReward1: - if ((.pwin > 0 && getcharid(1) == .pwin) || strcharinfo(0) == .awin$) + if ((.pwin > 0 && getcharid(1) == .pwin) || strcharinfo(0) == .win$) getitem BottledDust, 10; else getitem BottledDust, 1; |