diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-08 19:30:07 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-08 19:30:07 +0000 |
commit | 31825ccc2dde034a218d9ad466dd721c40b5651d (patch) | |
tree | 961b976e45988f7f7158d33b3f11a18688f34b1f /npc/re/quests/eden/eden_service.txt | |
parent | 22c75b070526de8b103032f5bf13504af81e0095 (diff) | |
download | hercules-31825ccc2dde034a218d9ad466dd721c40b5651d.tar.gz hercules-31825ccc2dde034a218d9ad466dd721c40b5651d.tar.bz2 hercules-31825ccc2dde034a218d9ad466dd721c40b5651d.tar.xz hercules-31825ccc2dde034a218d9ad466dd721c40b5651d.zip |
Okie ladies and gentleman if this commit breaks anything it's jman's and maki's fault, yes, blame them.
Fixing pre-re / re npc support, moving /config/ folder to src root so other servers may also make use of the #define renewal dir and other stuff.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16382 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/re/quests/eden/eden_service.txt')
-rw-r--r-- | npc/re/quests/eden/eden_service.txt | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/npc/re/quests/eden/eden_service.txt b/npc/re/quests/eden/eden_service.txt new file mode 100644 index 000000000..5479ba092 --- /dev/null +++ b/npc/re/quests/eden/eden_service.txt @@ -0,0 +1,64 @@ +//===== rAthena Script ======================================= +// Eden Group Quests - Service NPCs +//===== By: ================================================== +//= L0ne_W0lf +//===== Current Version: ===================================== +//= 1.1 +//===== Compatible With: ===================================== +//= Any rAthena SVN +//===== Description: ========================================= +//= Paradise Group storage access. +//===== Additional Comments: ================================= +//= 1.0 First Version. +//= 1.1 Replaced 2nd NPC with duplicate function. [Masao] +//============================================================ + +- script Goods Cabinet#00::pggc -1,{ + mes "It is a Goods Storage Cabinet."; + mes "A message is written on a piece of paper."; + next; + mes "+ Cabinet is exclusively +"; + mes "+ for the Eden group +"; + mes "If you want to use this"; + mes "cabinet please check"; + mes "the following:"; + next; + mes "1.Are you a member"; + mes " of Eden group?"; + mes "2.Have you learned"; + mes " enough basic skills?"; + mes "3.Cabinet fee is"; + mes " ^4d4dff500 zeny^000000!"; + next; + if (countitem(6219) > 0) { + mes "You need to insert zeny to use the cabinet."; + mes "Cost : 500 Zeny "; + mes "Would you like to use it?"; + next; + switch (select("Use the Cabinet.:Cancel.")) { + case 1: + if (Zeny > 499) { + if (getskilllv("NV_BASIC") < 6) { + mes "The cabinet is not working for me."; + mes "Maybe I am not yet qualified to use Cabinet."; + close; + } + set Zeny, Zeny - 500; + close2; + openstorage; + end; + } + mes "I don't have enough zeny."; + mes "I need at least 500 zeny to use the Cabinet."; + close; + case 2: + mes "I will use it next time."; + close; + } + } + mes "I need an Eden Group Mark to use this Cabinet."; + close; +} + +moc_para01,173,120,0 duplicate(pggc) Goods Cabinet#01 111 +moc_para01,170,120,0 duplicate(pggc) Goods Cabinet#02 111 |