diff options
author | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-11 16:23:45 +0000 |
---|---|---|
committer | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-11 16:23:45 +0000 |
commit | a439035ec24d99ff8df22b9efac2c98b8cd46987 (patch) | |
tree | e8883c8de727939002ba5ffd6bb2362142932363 /npc/warps | |
parent | 12522c2090a447c848d27b0ef0b1f00ea43d663e (diff) | |
download | hercules-a439035ec24d99ff8df22b9efac2c98b8cd46987.tar.gz hercules-a439035ec24d99ff8df22b9efac2c98b8cd46987.tar.bz2 hercules-a439035ec24d99ff8df22b9efac2c98b8cd46987.tar.xz hercules-a439035ec24d99ff8df22b9efac2c98b8cd46987.zip |
* 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://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9456 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/warps')
-rw-r--r-- | npc/warps/cities/rachel.txt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/npc/warps/cities/rachel.txt b/npc/warps/cities/rachel.txt index 1f6722d5c..00b625d7c 100644 --- a/npc/warps/cities/rachel.txt +++ b/npc/warps/cities/rachel.txt @@ -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; } |