diff options
author | technote24 <technote24@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-08 23:41:53 +0000 |
---|---|---|
committer | technote24 <technote24@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-08 23:41:53 +0000 |
commit | 68c4c735455439e9c849b4c81d8a598e76d90c57 (patch) | |
tree | fd83ed067839c593e21d83370daa404562dd1c62 /npc/custom | |
parent | 305303ce8e4f18c2a57b5ea846cf5b7992ade4d6 (diff) | |
download | hercules-68c4c735455439e9c849b4c81d8a598e76d90c57.tar.gz hercules-68c4c735455439e9c849b4c81d8a598e76d90c57.tar.bz2 hercules-68c4c735455439e9c849b4c81d8a598e76d90c57.tar.xz hercules-68c4c735455439e9c849b4c81d8a598e76d90c57.zip |
=General
*Added some jobs with ID's and MAPID's masks to prepare for the adding of more jobs in const.txt
*Fixed a typo on JOBL_THIRD check in const.txt
*Added all currently known tags and ID's support for NPC's, skills, status, and units.
*Changed SI_SITTING to official name SI_SIT.
*Increased MAX_SKILL to 3040.
=NPC
*Corrected a typo in the jobmaster script.
-Fixed required job level for changing to 3rd to 50.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15836 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom')
-rw-r--r-- | npc/custom/jobs/jobmaster.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/npc/custom/jobs/jobmaster.txt b/npc/custom/jobs/jobmaster.txt index c67d6eb59..ad23f2037 100644 --- a/npc/custom/jobs/jobmaster.txt +++ b/npc/custom/jobs/jobmaster.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= rAthena Dev Team [Ori:LunatikBunnie] //===== Current Version: ===================================== -//= 1.6 +//= 1.7 //===== Compatible With: ===================================== //= rAthena SVN; 15624+ //===== Description: ========================================= @@ -18,6 +18,8 @@ //= 1.5a fixed Baby -> Super Baby change. Switched to JobName() [Lupus] //= 1.6 Added support for both branches of 3rd classes, //= unified response order, fixed minor quirk. +//= 1.7 Corrected typo on EAJ_THIRD to EAJL_THIRD and fixed job +//= level requirement to change to 3rd. [Rytech] //===== TODO: ================================================ //= Add baby 3rd classes //= Could be restructured some more using eajobs @@ -208,7 +210,7 @@ prontera,153,193,6 script Job Master 123,{ } if (Class >= Job_Lord_Knight && Class <= Job_Paladin2) { - if(JobLevel < 70) goto L_cantCh; + if(JobLevel < 50) goto L_cantCh; goto L_Third; } } @@ -216,7 +218,7 @@ prontera,153,193,6 script Job Master 123,{ close; L_Third: - set @target_job, roclass(eaclass() | EAJ_THIRD); + set @target_job, roclass(eaclass() | EAJL_THIRD); mes "Are you sure you want to change to " + JobName(@target_job) + "?"; if(select("Yes", "No")==1){ callfunc "Job_Change", @target_job; |