Fixed a parenthesis typo in the dance quest
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@9894 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
49096125fb
commit
46508c6c6e
@ -27,6 +27,7 @@ KarLaeda
|
||||
Date Added
|
||||
======
|
||||
2007/02/21
|
||||
* Fixed a parenthesis typo in the dance quest [ultramage]
|
||||
* Dancer Job Quest v 3.0. Optimized, fixed typos, added missing dialogues [Lupus]
|
||||
- not fully tested yet! U can use v2.5 as 100% working
|
||||
- Moved NPC Master Kavaruk (overlapped Phantasmic Arrow Skill quest NPC)
|
||||
|
@ -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.";
|
||||
|
Loading…
x
Reference in New Issue
Block a user