* Adjusted Rachel Sanctuary entrance to prevent exploits

* Added Ktullanux to spawns until the quest is added
* All Rachel MVPs now only respawn once a day to prevent exploits
* Uncommented Rachel Sanctuary spawns by default

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9456 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Playtester 2006-12-11 16:23:45 +00:00
parent 2fd5ba31c5
commit 65e46b9e7b
7 changed files with 18 additions and 9 deletions

View File

@ -34,6 +34,10 @@ KarLaeda
Date Added
======
12/11
* Adjusted Rachel Sanctuary entrance to prevent exploits [Playtester]
- added Ktullanux to spawns until the quest is added
- all Rachel MVPs now only respawn once a day to prevent exploits
- uncommented Rachel Sanctuary spawns by default
* Some cleanup & optimization for MvM Arena [KarLaeda]
- Added missing close2 to Hunter Job Quest
* Added Yuno Government Buildings warps. Thanks to $ephiroth [Lupus]

View File

@ -34,3 +34,4 @@ ice_dun03.gat,0,0,0,0 monster Ice Titan 1777,50,0,0,0
ice_dun03.gat,0,0,0,0 monster Snowier 1775,30,0,0,0
ice_dun03.gat,0,0,0,0 monster Gazeti 1778,30,0,0,0
ice_dun03.gat,0,0,0,0 monster Iceicle 1789,10,0,0,0
ice_dun03.gat,0,0,0,0 monster Ktullanux 1779,1,86400000,86000000,1

View File

@ -50,4 +50,4 @@ ra_san05.gat,0,0,0,0 monster Echio 1770,20,0,0,0
ra_san05.gat,0,0,0,0 monster Isilla 1772,20,0,0,0
ra_san05.gat,0,0,0,0 monster Hodremlin 1773,20,0,0,0
ra_san05.gat,0,0,0,0 monster Seeker 1774,20,0,0,0
ra_san05.gat,0,0,0,0 monster Gloom Under Night 1768,1,7200000,3600000,1
ra_san05.gat,0,0,0,0 monster Gloom Under Night 1768,1,86400000,86000000,1

View File

@ -26,7 +26,7 @@ ra_fild01.gat,0,0,0,0 monster Galion 1783,2,0,0,0
ra_fild02.gat,0,0,0,0 monster Muscipular 1780,40,0,0,0
ra_fild02.gat,0,0,0,0 monster Galion 1783,20,0,0,0
ra_fild02.gat,0,0,0,0 monster Drosera 1781,20,0,0,0
ra_fild02.gat,0,0,0,0 monster Atros 1785,1,7200000,3600000,1
ra_fild02.gat,0,0,0,0 monster Atros 1785,1,86400000,86000000,1
//==================================================
// ra_fild03 - Rachel Field
@ -35,7 +35,7 @@ ra_fild03.gat,0,0,0,0 monster Galion 1783,30,0,0,0
ra_fild03.gat,0,0,0,0 monster Roween 1782,10,0,0,0
ra_fild03.gat,0,0,0,0 monster Drosera 1781,10,0,0,0
ra_fild03.gat,0,0,0,0 monster Stapo 1784,10,0,0,0
ra_fild03.gat,0,0,0,0 monster Atros 1785,1,7200000,3600000,1
ra_fild03.gat,0,0,0,0 monster Atros 1785,1,86400000,86000000,1
//==================================================
// ra_fild04 - Rachel Field
@ -44,7 +44,7 @@ ra_fild04.gat,0,0,0,0 monster Roween 1782,60,0,0,0
ra_fild04.gat,0,0,0,0 monster Stapo 1784,20,0,0,0
ra_fild04.gat,0,0,0,0 monster Wild Rose 1261,10,0,0,0
ra_fild04.gat,0,0,0,0 monster Galion 1783,3,0,0,0
ra_fild04.gat,0,0,0,0 monster Atros 1785,1,7200000,3600000,1
ra_fild04.gat,0,0,0,0 monster Atros 1785,1,86400000,86000000,1
//==================================================
// ra_fild05 - Rachel Field

View File

@ -69,7 +69,7 @@ npc: npc/mobs/dungeons/orcdun.txt
npc: npc/mobs/dungeons/payoncave.txt
npc: npc/mobs/dungeons/pront_maze.txt
npc: npc/mobs/dungeons/pront_sewers.txt
//npc: npc/mobs/dungeons/racheldun.txt
npc: npc/mobs/dungeons/racheldun.txt
npc: npc/mobs/dungeons/thanatos.txt
npc: npc/mobs/dungeons/toyfactory.txt
npc: npc/mobs/dungeons/turtleisland.txt

View File

@ -66,7 +66,7 @@ npc: npc/mobs/dungeons/orcdun.txt
npc: npc/mobs/dungeons/payoncave.txt
npc: npc/mobs/dungeons/pront_maze.txt
npc: npc/mobs/dungeons/pront_sewers.txt
//npc: npc/mobs/dungeons/racheldun.txt
npc: npc/mobs/dungeons/racheldun.txt
npc: npc/mobs/dungeons/sunkenship.txt
npc: npc/mobs/dungeons/thanatos.txt
npc: npc/mobs/dungeons/toyfactory.txt

View File

@ -73,11 +73,15 @@ ra_temin.gat,276,326,0 script Statue#Rachel 111,{
mes "Isn't it great?";
next;
mes "Do you want to enter Rachel Sanctuary?";
mes "Please donate ^FF000050000 Zeny^000000 to enter.";
next;
if(select("Yes", "No") == 1){
close2;
warp "ra_san01",139,14;
end;
if(Zeny >= 50000){
set Zeny,Zeny-50000;
close2;
warp "ra_san01",139,14;
end;
}
}
close;
}