diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-17 18:37:10 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-17 18:37:10 -0300 |
commit | 716811271fdec8728a3f142c6b78961b3773ebd4 (patch) | |
tree | 6ffec3ba338e871e476dd286604896a560da143f /npc/001-8/hub.txt | |
parent | 7b3909874b0b8e4be81b45f52e5c5ff1ef0a52b1 (diff) | |
download | serverdata-716811271fdec8728a3f142c6b78961b3773ebd4.tar.gz serverdata-716811271fdec8728a3f142c6b78961b3773ebd4.tar.bz2 serverdata-716811271fdec8728a3f142c6b78961b3773ebd4.tar.xz serverdata-716811271fdec8728a3f142c6b78961b3773ebd4.zip |
Experiment with specialeffect
Diffstat (limited to 'npc/001-8/hub.txt')
-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; |