summaryrefslogtreecommitdiff
path: root/npc/jobs/2-2/dancer.txt
diff options
context:
space:
mode:
authorultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-21 16:46:57 +0000
committerultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-21 16:46:57 +0000
commit3ff0743c26051d6b0f8c741bf7424801cf7d172c (patch)
treea79398d6df37ac1e90c4a8586e1065f2faa4fa88 /npc/jobs/2-2/dancer.txt
parent120b6a38af546987948505832c1d8d6fb3c853af (diff)
downloadhercules-3ff0743c26051d6b0f8c741bf7424801cf7d172c.tar.gz
hercules-3ff0743c26051d6b0f8c741bf7424801cf7d172c.tar.bz2
hercules-3ff0743c26051d6b0f8c741bf7424801cf7d172c.tar.xz
hercules-3ff0743c26051d6b0f8c741bf7424801cf7d172c.zip
Fixed a parenthesis typo in the dance quest
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9894 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/jobs/2-2/dancer.txt')
-rw-r--r--npc/jobs/2-2/dancer.txt12
1 files changed, 3 insertions, 9 deletions
diff --git a/npc/jobs/2-2/dancer.txt b/npc/jobs/2-2/dancer.txt
index 7a4e41201..0a908a888 100644
--- a/npc/jobs/2-2/dancer.txt
+++ b/npc/jobs/2-2/dancer.txt
@@ -167,9 +167,7 @@ job_duncer.gat,43,93,4 script Aire 724,{
case 2:
case 3:
case 4:
- if(DANC_Q==2 && (countitem(938) >= 20) && (countitem(501) >= 5) && (countitem(909) >= 3)
- && (countitem(2403) >= 1) && (Zeny >= 10000)){
-
+ if(DANC_Q==2 && countitem(938) >= 20 && countitem(501) >= 5 && countitem(909) >= 3 && countitem(2403) >= 1 && Zeny >= 10000) {
set Zeny,Zeny-10000;
delitem 938,20;
delitem 501,5;
@@ -177,23 +175,19 @@ job_duncer.gat,43,93,4 script Aire 724,{
delitem 2403,1;
goto L_DONE;
}
- if(DANC_Q==3 && countitem(1055) >= 5) && (countitem(2405) >= 1) && (Zeny >= 10000)){
-
+ if(DANC_Q==3 && countitem(1055) >= 5 && countitem(2405) >= 1 && Zeny >= 10000) {
set Zeny,Zeny-10000;
delitem 1055,5;
delitem 2405,1;
goto L_DONE;
}
- if(DANC_Q==4 && countitem(965) >= 2 && countitem(503) >= 5 && countitem(909) >= 20
- && countitem(1020) >= 10 && countitem(2401) >= 1){
-
+ if(DANC_Q==4 && countitem(965) >= 2 && countitem(503) >= 5 && countitem(909) >= 20 && countitem(1020) >= 10 && countitem(2401) >= 1) {
delitem 965,2;
delitem 503,5;
delitem 909,20;
delitem 1020,10;
delitem 2401,1;
goto L_DONE;
-
}
mes "Something is wrong here.";
mes "Seems you don't have enough items, we need everything that was asked for.";