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/novice | |
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/novice')
-rw-r--r-- | npc/jobs/novice/novice.txt | 4 | ||||
-rw-r--r-- | npc/jobs/novice/supernovice.txt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/npc/jobs/novice/novice.txt b/npc/jobs/novice/novice.txt index 8c06d6a47..7016a1fb2 100644 --- a/npc/jobs/novice/novice.txt +++ b/npc/jobs/novice/novice.txt @@ -28,7 +28,7 @@ new_1-1.gat,66,114,4 script Bulletin Board 111,{ }
new_1-1.gat,53,114,4 script Shion 727,{
- if(BaseJob != 0 || Upper==1) goto L_Fail;
+ if(BaseJob != Job_Novice || Upper==1) goto L_Fail;
switch (NEW_MES_FLAG0) {
case 0: mes "[Shion]";
mes "Hello there~";
@@ -237,7 +237,7 @@ new_1-1.gat,144,107,2 script Guard#02 105,{ //Receptionist
new_1-2.gat,100,29,4 script Receptionist 86,{
- if(BaseJob != 0 || Upper==1) goto L_Fail;
+ if(BaseJob != Job_Novice || Upper==1) goto L_Fail;
mes "[Training Grounds Receptionist]";
mes "Welcome!";
mes "You are at the entrance";
diff --git a/npc/jobs/novice/supernovice.txt b/npc/jobs/novice/supernovice.txt index d28214673..63f611312 100644 --- a/npc/jobs/novice/supernovice.txt +++ b/npc/jobs/novice/supernovice.txt @@ -25,7 +25,7 @@ aldeba_in.gat,223,167,3 script Tozel 709,{
if(SUPNOV_Q == 1) goto L_Start2;
if(BaseJob == Job_SuperNovice) goto L_Twice;
- if(BaseJob != 0 || Upper==1) goto L_Otherjob;
+ if(BaseJob != Job_Novice || Upper==1) goto L_Otherjob;
mes "[Tozel]";
mes "Hello, Novice!";
mes "Are you enjoying yourself as a novice, the preferred class of the common man?";
@@ -181,7 +181,7 @@ L_Otherjob: // -- Totaly Useless :) --
aldeba_in.gat,216,169,5 script Serei 86,{
if(BaseJob == Job_SuperNovice) goto L_Supernovice;
- if(BaseJob != 0) goto L_Otherjob;
+ if(BaseJob != Job_Novice) goto L_Otherjob;
mes "[Serei]";
mes "You're pretty common.";
mes "A common man should live a happy life.";
|