diff options
author | shadowlady <shadowlady@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-13 02:48:19 +0000 |
---|---|---|
committer | shadowlady <shadowlady@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-13 02:48:19 +0000 |
commit | 43b8fbb2821ae887a7d4874ca0764aac00ac60d6 (patch) | |
tree | 9771e23abebfe63998a9ed56f458432f3d3411c4 /npc | |
parent | bb9c16c88e28f00b8dc48c3b0b6b279c61b8f1b0 (diff) | |
download | hercules-43b8fbb2821ae887a7d4874ca0764aac00ac60d6.tar.gz hercules-43b8fbb2821ae887a7d4874ca0764aac00ac60d6.tar.bz2 hercules-43b8fbb2821ae887a7d4874ca0764aac00ac60d6.tar.xz hercules-43b8fbb2821ae887a7d4874ca0764aac00ac60d6.zip |
Reverted.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/athena@146 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/merchants/renters.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/merchants/renters.txt b/npc/merchants/renters.txt index cb6cc99de..81f7985f3 100644 --- a/npc/merchants/renters.txt +++ b/npc/merchants/renters.txt @@ -18,7 +18,7 @@ // PecoPeco Breeder (for Knights)-------------------------------------------
prontera.gat,61,338,3 script PecoPeco Breeder 86,{
mes "[PecoPeco Breeder]";
- if(Class == Job_Knight || Class == Job_Knight2 || Class == 4008 || Class == Job_Lord_Knight || Class == Job_Lord_Knight2) goto L_Start;
+ if((Class == 7)||(Class == 4008)) goto L_Start;
mes "I'm a PecoPeco breeder and I rent out PecoPeco's for^4444FF Knights ^000000to ride on.";
close;
@@ -63,7 +63,7 @@ L_Start: // Grand PecoPeco Breeder (for Crusaders)-------------------------------------------
prontera.gat,238,312,5 script Grand PecoPeco Breeder 86,{
mes "[Grand PecoPeco Breeder]";
- if(Class == Job_Crusader || Class == Job_Crusader2 || Class == 4015 || Class == Job_Paladin || Class == Job_Paladin2 ) goto L_Start;
+ if((Class == 14)||(Class == 4015)) goto L_Start;
mes "I'm a Grand PecoPeco breeder and I rent out Grand PecoPeco's for^4444FF Crusaders ^000000to ride on.";
close;
|