diff options
author | Kisuka <kisuka@kisuka.com> | 2013-10-28 00:42:23 -0700 |
---|---|---|
committer | Kisuka <kisuka@kisuka.com> | 2013-10-28 00:42:23 -0700 |
commit | 124ab2a1cdb344f24170a4d91f7000ebabf39b40 (patch) | |
tree | ebc5aeee49da96f88e55358c184d69d90eae9289 /npc/jobs/2-1a | |
parent | e7efdfe96e1b4c288bca845c03512da6842d6425 (diff) | |
download | hercules-124ab2a1cdb344f24170a4d91f7000ebabf39b40.tar.gz hercules-124ab2a1cdb344f24170a4d91f7000ebabf39b40.tar.bz2 hercules-124ab2a1cdb344f24170a4d91f7000ebabf39b40.tar.xz hercules-124ab2a1cdb344f24170a4d91f7000ebabf39b40.zip |
Added ability to use constants instead of sprite IDs for NPCs. Converted all npcs to use this.
Diffstat (limited to 'npc/jobs/2-1a')
-rw-r--r-- | npc/jobs/2-1a/AssassinCross.txt | 2 | ||||
-rw-r--r-- | npc/jobs/2-1a/HighPriest.txt | 2 | ||||
-rw-r--r-- | npc/jobs/2-1a/HighWizard.txt | 2 | ||||
-rw-r--r-- | npc/jobs/2-1a/LordKnight.txt | 2 | ||||
-rw-r--r-- | npc/jobs/2-1a/Sniper.txt | 2 | ||||
-rw-r--r-- | npc/jobs/2-1a/WhiteSmith.txt | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/npc/jobs/2-1a/AssassinCross.txt b/npc/jobs/2-1a/AssassinCross.txt index ff15ab302..a9fdee622 100644 --- a/npc/jobs/2-1a/AssassinCross.txt +++ b/npc/jobs/2-1a/AssassinCross.txt @@ -13,7 +13,7 @@ //= 1.3 Now saves/restores all the quest skills [Lupus] //============================================================ -valkyrie,44,58,5 script Assassin Cross#Valkyrie 725,{ +valkyrie,44,58,5 script Assassin Cross#Valkyrie 4_F_JOB_ASSASSIN,{ if (ADVJOB == 0 || Upper != 1) { set .@karma_d,rand(1,10); if (.@karma_d > 4) { diff --git a/npc/jobs/2-1a/HighPriest.txt b/npc/jobs/2-1a/HighPriest.txt index 9c6109dba..e7dffe9b9 100644 --- a/npc/jobs/2-1a/HighPriest.txt +++ b/npc/jobs/2-1a/HighPriest.txt @@ -13,7 +13,7 @@ //= 1.3 Now saves/restores all the quest skills [Lupus] //============================================================ -valkyrie,44,42,5 script High Priest#Valkyrie 60,{ +valkyrie,44,42,5 script High Priest#Valkyrie 1_M_PASTOR,{ if (ADVJOB == 0 || Upper != 1) { set .@karma_d,rand(1,10); if (.@karma_d > 4) { diff --git a/npc/jobs/2-1a/HighWizard.txt b/npc/jobs/2-1a/HighWizard.txt index 6a152a5cb..12517e04c 100644 --- a/npc/jobs/2-1a/HighWizard.txt +++ b/npc/jobs/2-1a/HighWizard.txt @@ -13,7 +13,7 @@ //= 1.3 Now saves/restores all the quest skills [Lupus] //============================================================ -valkyrie,44,47,5 script High Wizard#Valkyrie 735,{ +valkyrie,44,47,5 script High Wizard#Valkyrie 4_M_JOB_WIZARD,{ if (ADVJOB == 0 || Upper != 1) { set .@karma_d,rand(1,10); if (.@karma_d > 4) { diff --git a/npc/jobs/2-1a/LordKnight.txt b/npc/jobs/2-1a/LordKnight.txt index f1254c08a..eb310e360 100644 --- a/npc/jobs/2-1a/LordKnight.txt +++ b/npc/jobs/2-1a/LordKnight.txt @@ -13,7 +13,7 @@ //= 1.3 Now saves/restores all the quest skills [Lupus] //============================================================ -valkyrie,44,39,5 script Lord Knight#Valkyrie 56,{ +valkyrie,44,39,5 script Lord Knight#Valkyrie 1_M_KNIGHTMASTER,{ if (ADVJOB == 0 || Upper != 1) { set .@karma_d,rand(1,10); if (.@karma_d > 4) { diff --git a/npc/jobs/2-1a/Sniper.txt b/npc/jobs/2-1a/Sniper.txt index de9b8e44e..c7060cdf6 100644 --- a/npc/jobs/2-1a/Sniper.txt +++ b/npc/jobs/2-1a/Sniper.txt @@ -13,7 +13,7 @@ //= 1.3 Now saves/restores all the quest skills [Lupus] //============================================================ -valkyrie,44,55,5 script Sniper#Valkyrie 727,{ +valkyrie,44,55,5 script Sniper#Valkyrie 4_F_JOB_HUNTER,{ if (ADVJOB == 0 || Upper != 1) { set .@karma_d,rand(1,10); if (.@karma_d > 4) { diff --git a/npc/jobs/2-1a/WhiteSmith.txt b/npc/jobs/2-1a/WhiteSmith.txt index 174fb2582..d917d3988 100644 --- a/npc/jobs/2-1a/WhiteSmith.txt +++ b/npc/jobs/2-1a/WhiteSmith.txt @@ -13,7 +13,7 @@ //= 1.3 Now saves/restores all the quest skills [Lupus] //============================================================ -valkyrie,44,50,5 script MasterSmith#Valkyrie 731,{ +valkyrie,44,50,5 script MasterSmith#Valkyrie 4_M_JOB_BLACKSMITH,{ if (ADVJOB == 0 || Upper != 1) { set .@karma_d,rand(1,10); if (.@karma_d > 4) { |