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/re/jobs/3-1/mechanic.txt | |
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/re/jobs/3-1/mechanic.txt')
-rw-r--r-- | npc/re/jobs/3-1/mechanic.txt | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/npc/re/jobs/3-1/mechanic.txt b/npc/re/jobs/3-1/mechanic.txt index 2133a227a..8300576f2 100644 --- a/npc/re/jobs/3-1/mechanic.txt +++ b/npc/re/jobs/3-1/mechanic.txt @@ -13,7 +13,7 @@ //= 1.2 Updated script. [Euphy] //============================================================ -yuno,129,156,3 script Chainheart 923,{ +yuno,129,156,3 script Chainheart 4_M_DOCTOR,{ mes "[Chainheart]"; if (BaseLevel > 99) { mes "Living as a Mechanic is tough,"; @@ -293,7 +293,7 @@ yuno,129,156,3 script Chainheart 923,{ close; } -jupe_cave,37,55,5 script Scholar#Mechanic 883,{ +jupe_cave,37,55,5 script Scholar#Mechanic 4_M_ALCHE_D,{ if (checkweight(1201,1) == 0 || MaxWeight - Weight < 300) { mes "- Your pack is too heavy. -"; mes "- Lighten your body first -"; @@ -384,7 +384,7 @@ jupe_cave,37,55,5 script Scholar#Mechanic 883,{ close; } -jupe_core2,149,273,3 script Ghostfire#1 802,{ +jupe_core2,149,273,3 script Ghostfire#1 4_NFWISP,{ mes "[?]"; if (job__mechanic == 11) { mes "I've lost my body and all that's left is my spirit in this place."; @@ -470,7 +470,7 @@ jupe_core2,149,273,3 script Ghostfire#1 802,{ end; } -jupe_core2,53,75,3 script Ghostfire#2 802,{ +jupe_core2,53,75,3 script Ghostfire#2 4_NFWISP,{ mes "[?]"; if (job__mechanic > 5) { mes "Juperos... I..."; @@ -532,7 +532,7 @@ jupe_core2,53,75,3 script Ghostfire#2 802,{ end; } -jupe_core2,242,62,3 script Ghostfire#3 802,{ +jupe_core2,242,62,3 script Ghostfire#3 4_NFWISP,{ mes "[?]"; if (job__mechanic > 6) { mes "I want to know more about the knowledge..."; @@ -573,7 +573,7 @@ jupe_core2,242,62,3 script Ghostfire#3 802,{ end; } -jupe_core2,29,150,0 script #Foothold 139,1,1,{ +jupe_core2,29,150,0 script #Foothold HIDDEN_WARP_NPC,1,1,{ OnTouch: if (job__mechanic == 8) { percentheal 0,-30; @@ -612,7 +612,7 @@ OnTouch: end; } -jupe_core2,272,149,0 script #Foothold2 139,1,1,{ +jupe_core2,272,149,0 script #Foothold2 HIDDEN_WARP_NPC,1,1,{ OnTouch: if (job__mechanic == 9) { mes "-I had a feeling that power-"; @@ -647,7 +647,7 @@ OnTouch: end; } -jupe_core2,288,142,3 script #Door 844,1,1,{ +jupe_core2,288,142,3 script #Door CLEAR_NPC,1,1,{ end; OnInit: OnDisable: @@ -701,7 +701,7 @@ OnTouch: end; } -jupe_core2,149,34,0 script #Acquiring Knowledge 139,1,0,{ +jupe_core2,149,34,0 script #Acquiring Knowledge HIDDEN_WARP_NPC,1,0,{ OnTouch: if (job__mechanic == 9) { mes "-The moment I stepped on-"; @@ -726,6 +726,6 @@ OnTouch: } end; } -jupe_core2,150,33,0 duplicate(#Acquiring Knowledge) #Acquiring Knowledge2 139,1,0 +jupe_core2,150,33,0 duplicate(#Acquiring Knowledge) #Acquiring Knowledge2 HIDDEN_WARP_NPC,1,0 jupe_core2,0,0,0,0 monster Dimik 1669,100,0,0,0
\ No newline at end of file |