diff options
author | masao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-24 20:30:24 +0000 |
---|---|---|
committer | masao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-24 20:30:24 +0000 |
commit | 7853b6d1b84d3783a7f513ea877b4c52b120fc28 (patch) | |
tree | d4b17354bab7bc62690292a8aa90dff82ad074ac /npc/quests/skills/merchant_skills.txt | |
parent | e526ee3248e8537894de240de05511127c572a84 (diff) | |
download | hercules-7853b6d1b84d3783a7f513ea877b4c52b120fc28.tar.gz hercules-7853b6d1b84d3783a7f513ea877b4c52b120fc28.tar.bz2 hercules-7853b6d1b84d3783a7f513ea877b4c52b120fc28.tar.xz hercules-7853b6d1b84d3783a7f513ea877b4c52b120fc28.zip |
- Some more 1st Class Platinum Skill NPC optimizations.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15958 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/skills/merchant_skills.txt')
-rw-r--r-- | npc/quests/skills/merchant_skills.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/quests/skills/merchant_skills.txt b/npc/quests/skills/merchant_skills.txt index e70ab887e..55239bbe3 100644 --- a/npc/quests/skills/merchant_skills.txt +++ b/npc/quests/skills/merchant_skills.txt @@ -40,7 +40,7 @@ alberta,83,96,5 script Necko 98,7,7,{ mes "Ppyakikakikakakakakakakaka!!"; close; } - else if ((Class == Job_Merchant) && (JobLevel < 15)) { + else if (JobLevel < 15) { mes "[Necko]"; mes "Oh, did you come because"; mes "you are infatuated with my voice?"; @@ -61,7 +61,7 @@ alberta,83,96,5 script Necko 98,7,7,{ mes "Kyukwakakakakakakakakakaka!"; close; } - else if ((countitem(722) > 6) && (countitem(532) > 0) && (countitem(921) > 49) && (BaseJob == Job_Merchant) & (JobLevel >= 15)) { + else if ((countitem(722) > 6) && (countitem(532) > 0) && (countitem(921) > 49) && (JobLevel >= 15)) { mes "[Necko]"; mes "Oh! You!"; mes "You are qualified to learn how to shout!"; @@ -178,7 +178,7 @@ OnTouch: close; } -alberta,119,221,6 script Charlron 107,5,5,{ +alberta,119,221,6 script Charlron 107,{ if (BaseJob == Job_Merchant) { if (getskilllv("MC_CHANGECART") == 1) { mes "[Charlron]"; @@ -200,7 +200,7 @@ alberta,119,221,6 script Charlron 107,5,5,{ mes "Be healthy~"; close; } - else if ((BaseJob == Job_Merchant) && (JobLevel >= 30)) { + else if (JobLevel >= 30) { mes "[Charlron]"; mes "Nice to see you fellow merchant"; mes "If I remember correctly,"; @@ -331,7 +331,7 @@ alberta,119,221,6 script Charlron 107,5,5,{ close; } -alberta,232,106,6 script Gershaun 57,5,5,{ +alberta,232,106,6 script Gershaun 57,{ if (BaseJob == Job_Merchant) { if (getskilllv("MC_CARTREVOLUTION") == 1) { mes "[Gershaun]"; |