diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-07 04:52:02 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-07 04:52:02 +0000 |
commit | aa0c6f842d41eafbc60ca9cfbaa69e6914d46ae0 (patch) | |
tree | 5b67fa6f71bd33af187301029a5d86b8ee99481c /npc/jobs/2-2/dancer.txt | |
parent | 6dcb99e42257de276814d3fe42a19c8f85e776d2 (diff) | |
download | hercules-aa0c6f842d41eafbc60ca9cfbaa69e6914d46ae0.tar.gz hercules-aa0c6f842d41eafbc60ca9cfbaa69e6914d46ae0.tar.bz2 hercules-aa0c6f842d41eafbc60ca9cfbaa69e6914d46ae0.tar.xz hercules-aa0c6f842d41eafbc60ca9cfbaa69e6914d46ae0.zip |
turned the rest of job numbers to constants
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7554 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/jobs/2-2/dancer.txt')
-rw-r--r-- | npc/jobs/2-2/dancer.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/jobs/2-2/dancer.txt b/npc/jobs/2-2/dancer.txt index 15140a665..4d396c857 100644 --- a/npc/jobs/2-2/dancer.txt +++ b/npc/jobs/2-2/dancer.txt @@ -71,7 +71,7 @@ L1: }
//= 1st quest NPC, asks for Items and/or money, then passes you onto the next NPC
job_duncer.gat,43,93,4 script Aire 724,{
- if ((BaseJob == Job_Archer) && (Sex == 0)) goto Larcher;
+ if (BaseJob == Job_Archer && Sex == 0) goto Larcher;
if (BaseJob == Job_Dancer) goto Ldancer;
if (Upper==1) goto LUpper1;
mes "[Aire]";
@@ -320,7 +320,7 @@ LUpper1: }
//= 2nd "Quest" and Job changer for after the 3rd Quest
job_duncer.gat,95,93,4 script Bijou 101,{
- if ((BaseJob == Job_Archer) && (Sex == 0)) goto LArcher;
+ if (BaseJob == Job_Archer && Sex == 0) goto LArcher;
if (BaseJob == Job_Dancer) goto LDancer;
mes "[Bijou]";
mes "Welcome to our Dance Theater, there are many dancers around here.";
|