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/1-1/thief.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/1-1/thief.txt')
-rw-r--r-- | npc/jobs/1-1/thief.txt | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/npc/jobs/1-1/thief.txt b/npc/jobs/1-1/thief.txt index 1bb5b1736..a64093317 100644 --- a/npc/jobs/1-1/thief.txt +++ b/npc/jobs/1-1/thief.txt @@ -157,8 +157,6 @@ M_Menu: next;
mes "[Thief Guide]";
mes " This sounds easy but ^009900do know, there are Monsters who guard Mushrooms^000000?";
- // had to leave the engrish in, it was to good not too. d^_^b
- // And I took it out. :D [KillerBox]
mes " Stop reading Fairy Tales and ^FF0000brace up your nerves; this will be the toughest experience ever^000000.";
next;
mes "[Thief Guide]";
@@ -244,8 +242,8 @@ M_Menu: // -- Test Grader --
moc_prydb1.gat,42,133,2 script Comrade Brad 118,{
callfunc "F_ToHigh",Job_Thief_High,"Thief High",Job_Assassin_Cross,"Brad";
- if(BaseJob == 0) goto L_Novice;
- if(BaseJob == 6) goto L_Thief;
+ if(BaseJob == Job_Novice) goto L_Novice;
+ if(BaseJob == Job_Thief) goto L_Thief;
L_Other:
mes "[Brad]";
@@ -338,8 +336,8 @@ L_4: // -- Irrelevant Man --
moc_ruins.gat,141,125,3 script Irrelevant Man 118,{
- if(BaseJob == 6) goto L_Thief;
- if(BaseJob == 0) goto L_Novice;
+ if(BaseJob == Job_Thief) goto L_Thief;
+ if(BaseJob == Job_Novice) goto L_Novice;
L_Other:
if(@s_flag==1) goto L_1b;
|