diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-12 18:18:33 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-12 18:18:33 -0300 |
commit | cb4ea2d546bcd6ed53adf4ddf5ae950d6b775c18 (patch) | |
tree | da137f1f1204e061f354c4306ace003025678fb5 /npc/002-1 | |
parent | 78f9c88f4ab17a12ce6eceef510e0bc8b2e603ed (diff) | |
download | serverdata-cb4ea2d546bcd6ed53adf4ddf5ae950d6b775c18.tar.gz serverdata-cb4ea2d546bcd6ed53adf4ddf5ae950d6b775c18.tar.bz2 serverdata-cb4ea2d546bcd6ed53adf4ddf5ae950d6b775c18.tar.xz serverdata-cb4ea2d546bcd6ed53adf4ddf5ae950d6b775c18.zip |
Make maps, and ask Dan to handle 002-3 pious too
Diffstat (limited to 'npc/002-1')
-rw-r--r-- | npc/002-1/dan.txt | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/npc/002-1/dan.txt b/npc/002-1/dan.txt index 80f137064..4b778e077 100644 --- a/npc/002-1/dan.txt +++ b/npc/002-1/dan.txt @@ -89,30 +89,36 @@ OnInit: OnRespawnPiou1: if (getq(ShipQuests_Dan) == 1) DanCheck(); - sleep 60000; + sleep 59000; areamonster(instance_mapname("002-1"), 52, 32, 73, 41, "Piou", 1002, 1, instance_npcname("PiouSpwn")+"::OnRespawnPiou1"); end; OnRespawnPiou2: if (getq(ShipQuests_Dan) == 1) DanCheck(); - sleep 60000; + sleep 61000; areamonster(instance_mapname("002-1"), 52, 32, 73, 41, "Piou", 1002, 1, instance_npcname("PiouSpwn")+"::OnRespawnPiou2"); end; OnRespawnPiou3: if (getq(ShipQuests_Dan) == 1) DanCheck(); - sleep 60000; + sleep 59500; areamonster(instance_mapname("002-1"), 52, 32, 73, 41, "Piou", 1002, 1, instance_npcname("PiouSpwn")+"::OnRespawnPiou3"); end; OnRespawnPiou4: if (getq(ShipQuests_Dan) == 1) DanCheck(); - sleep 60000; + sleep 61500; areamonster(instance_mapname("002-1"), 52, 32, 73, 41, "Piou", 1002, 1, instance_npcname("PiouSpwn")+"::OnRespawnPiou4"); end; +OnRespawnPiou5: + if (getq(ShipQuests_Dan) == 1) DanCheck(); + sleep 60000; + areamonster(instance_mapname("002-3"), 31, 26, 40, 31, "Piou", 1002, 1, instance_npcname("PiouSpwn")+"::OnRespawnPiou4"); + end; OnInstanceInit: areamonster(instance_mapname("002-1"), 52, 32, 73, 41, "Piou", 1002, 1, instance_npcname("PiouSpwn")+"::OnRespawnPiou1"); areamonster(instance_mapname("002-1"), 52, 32, 73, 41, "Piou", 1002, 1, instance_npcname("PiouSpwn")+"::OnRespawnPiou2"); areamonster(instance_mapname("002-1"), 52, 32, 73, 41, "Piou", 1002, 1, instance_npcname("PiouSpwn")+"::OnRespawnPiou3"); areamonster(instance_mapname("002-1"), 52, 32, 73, 41, "Piou", 1002, 1, instance_npcname("PiouSpwn")+"::OnRespawnPiou4"); + areamonster(instance_mapname("002-3"), 31, 26, 40, 31, "Piou", 1002, 1, instance_npcname("PiouSpwn")+"::OnRespawnPiou5"); end; } |