summaryrefslogtreecommitdiff
path: root/npc/quests/eden/eden_service.txt
diff options
context:
space:
mode:
authormasao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-05-26 14:30:12 +0000
committermasao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-05-26 14:30:12 +0000
commit828ba5b2c63b316bb284be884a8ad62755025bfc (patch)
treeba30030b26e0feebe2d456fa9b08f5a745bbb48b /npc/quests/eden/eden_service.txt
parentf4f7fdc5781d376ca2abaf78b4eef6b87ffdd6a6 (diff)
downloadhercules-828ba5b2c63b316bb284be884a8ad62755025bfc.tar.gz
hercules-828ba5b2c63b316bb284be884a8ad62755025bfc.tar.bz2
hercules-828ba5b2c63b316bb284be884a8ad62755025bfc.tar.xz
hercules-828ba5b2c63b316bb284be884a8ad62755025bfc.zip
- Some minor improvements in the instance Scripts.
- Some minor improvements in the Eden Group NPC's. - Fixed typo in Wanderer Pet Food NPC. bugreport:5823 git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16151 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/eden/eden_service.txt')
-rw-r--r--npc/quests/eden/eden_service.txt67
1 files changed, 31 insertions, 36 deletions
diff --git a/npc/quests/eden/eden_service.txt b/npc/quests/eden/eden_service.txt
index 630165ed8..46f96ebc5 100644
--- a/npc/quests/eden/eden_service.txt
+++ b/npc/quests/eden/eden_service.txt
@@ -1,25 +1,23 @@
-//===== rAthena Script =======================================
+//===== rAthena Script =======================================
// Eden Group Quests - Service NPCs
-//===== By: ==================================================
+//===== By: ==================================================
//= L0ne_W0lf
-//===== Current Version: =====================================
-//= 1.0
-//===== Compatible With: =====================================
+//===== Current Version: =====================================
+//= 1.1
+//===== Compatible With: =====================================
//= Any rAthena SVN
-//===== Description: =========================================
-//= [AEGIS Conversion]
+//===== Description: =========================================
//= Paradise Group storage access.
-//===== Additional Comments: =================================
+//===== Additional Comments: =================================
//= 1.0 First Version.
//= 1.1 Replaced 2nd NPC with duplicate function. [Masao]
//============================================================
-moc_para01,173,120,0 script Goods Cabinet#01::goodsc 111,{
-
+- 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 "+ Cabinet is exclusively +";
mes "+ for the Eden group +";
mes "If you want to use this";
mes "cabinet please check";
@@ -32,38 +30,35 @@ moc_para01,173,120,0 script Goods Cabinet#01::goodsc 111,{
mes "3.Cabinet fee is";
mes " ^4d4dff500 zeny^000000!";
next;
- if (countitem(6219) > 0)
- {
- mes "You need to insert Zeny to use the Cabinet.";
+ 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;
+ 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;
}
- 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 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,170,120,0 duplicate(goodsc) Goods Cabinet#02 111 \ No newline at end of file
+moc_para01,173,120,0 duplicate(pggc) Goods Cabinet#01 111
+moc_para01,170,120,0 duplicate(pggc) Goods Cabinet#02 111 \ No newline at end of file