diff options
Diffstat (limited to 'npc/001-8')
-rw-r--r-- | npc/001-8/hub.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/001-8/hub.txt b/npc/001-8/hub.txt index e08d9fee4..0de21f3bd 100644 --- a/npc/001-8/hub.txt +++ b/npc/001-8/hub.txt @@ -111,13 +111,13 @@ OnCount10: // Throw some random, weighty stuff on the whole map. HUBscatter(rand(CopperOre, TitaniumOre)); - specialeffect(4); + specialeffect(4, AREA, getcharid(3)); addtimer(5000, "#QuirinoHUB::OnCount5"); dispbottom l("10 seconds!"); end; OnCount5: - specialeffect(4); + specialeffect(4, AREA, getcharid(3)); // Random Helmet .@r=rand(1,9); @@ -171,8 +171,8 @@ OnBegin: delcells "qhubN"; delcells "qhubS"; setpcblock(PCBLOCK_ATTACK|PCBLOCK_SKILL|PCBLOCK_ITEM|PCBLOCK_MOVE|PCBLOCK_COMMANDS, false); - specialeffect(60); - specialeffect(11); + specialeffect(60, AREA, getcharid(3)); + specialeffect(11, AREA, getcharid(3)); dispbottom col("Run! Event started!", 1); initnpctimer; // Restart the timer to fix any desync. end; |