diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-09-30 19:54:58 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-09-30 19:54:58 +0000 |
commit | 00f4b25981be9632f662ff055bae81ad3d49694f (patch) | |
tree | 17367c22fcb04f9e7ac12f697ed4adada89871eb /npc/jobs/3-1/archbishop.txt | |
parent | c16d2c8445d40e1966b12353054df33e9de6897a (diff) | |
download | hercules-00f4b25981be9632f662ff055bae81ad3d49694f.tar.gz hercules-00f4b25981be9632f662ff055bae81ad3d49694f.tar.bz2 hercules-00f4b25981be9632f662ff055bae81ad3d49694f.tar.xz hercules-00f4b25981be9632f662ff055bae81ad3d49694f.zip |
* Fixed skill_calc_heal applying heal bonuses only to AL_HEAL.
* Still working on updating the status window to display properly.
* Refine bonuses on armor now apply properly. (+1 additional bonus for every 4 refines.) Refining in general now goes up to 20.
* Criticals will now no longer ignore defense, but will still always hit.
* Converted m/def2 to a short, for testing status window update, will eventually need to surpass 32k. Good like this for now while we work on it.
* Cleaned up some minor things relating tot he arch bishop skill update.
* Applied some of the 30/08/2011 kRO updates to arch bishop skills.
* Added more SI_ Constants from newer clients to status.h.
* Added constants to the database for future updates.
* Updated Runestones and creation items.
* Added Runestone delays to item_delay.
* Added Runestones receipies to produce_db.
* Added dummy rates to refine_db.
* Added Rune Knight skills to skill_cast_db
* Updated Rune Knight skills, and Arch Bishop skills.
* Updated SP requirements in skill_require_db.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/renewal@14964 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/jobs/3-1/archbishop.txt')
-rw-r--r-- | npc/jobs/3-1/archbishop.txt | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/npc/jobs/3-1/archbishop.txt b/npc/jobs/3-1/archbishop.txt index a01e06b69..976a66dfa 100644 --- a/npc/jobs/3-1/archbishop.txt +++ b/npc/jobs/3-1/archbishop.txt @@ -1,6 +1,23 @@ +//===== eAthena Script =======================================
+//= Arch Bishop Job Quest
+//===== By: ==================================================
+//= L0ne_W0lf
+//===== Current Version: =====================================
+//= 1.1
+//===== Compatible With: =====================================
+//= eAthena SVN
+//===== Description: =========================================
+//= [Aegis Conversion]
+//= Job change script fr Third class (Arch Bishop)
+//= Does not entirely support changing to Baby Third Class.
+//===== Additional Comments: =================================
+//= 1.0 First version.
+//= 1.1 Fixed class checks for arch bishops.
+//============================================================
+
prt_church,103,88,3 script Praying Minister#arch 60,{
if (BaseJob != Job_Priest) {
- if (BaseJob == job_Archbishop) {
+ if (Class == Job_Archbishop || Class == Job_Archbishop_H || Class == Job_Baby_Bishop) {
mes "[Praying Minister]";
mes "Ah! An Archbishop.";
mes "You have reached the state of light.";
@@ -819,7 +836,7 @@ job3_arch01,29,34,3 script Valkyrie#arch 403,{ end;
}
else {
- if (BaseJob != Job_Archbishop) {
+ if (Class != Job_Archbishop || Class != Job_Archbishop_H || Class != Job_Baby_Bishop) {
if (job_arch < 5) {
warp "odin_tem02",282,263;
end;
|