diff options
author | masao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-28 17:22:58 +0000 |
---|---|---|
committer | masao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-28 17:22:58 +0000 |
commit | bac34367a987e5eeb0b263b7dafe36282fdd7a51 (patch) | |
tree | 15cbb4422ce3e764a66236f014423e4237bbc1e5 /npc/re/jobs/1-1/merchant.txt | |
parent | 693467a92ac8dd1c2c0cc1962e0de54ae94c92ea (diff) | |
download | hercules-bac34367a987e5eeb0b263b7dafe36282fdd7a51.tar.gz hercules-bac34367a987e5eeb0b263b7dafe36282fdd7a51.tar.bz2 hercules-bac34367a987e5eeb0b263b7dafe36282fdd7a51.tar.xz hercules-bac34367a987e5eeb0b263b7dafe36282fdd7a51.zip |
- Follow up r16521
* Forgot to apply some changes from my Test folder to the rAthena folder.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16522 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/re/jobs/1-1/merchant.txt')
-rw-r--r-- | npc/re/jobs/1-1/merchant.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/re/jobs/1-1/merchant.txt b/npc/re/jobs/1-1/merchant.txt index 6c9004a76..3f023de28 100644 --- a/npc/re/jobs/1-1/merchant.txt +++ b/npc/re/jobs/1-1/merchant.txt @@ -85,8 +85,8 @@ alberta_in,53,43,6 script Merchant#mer 86,{ } else { jobchange Job_Merchant; } - set job_merchant_q,0; - set job_merchant_q2,0; + set MERCNT_Q,0; + set MERCNT_Q2,0; getitem 1381,1; //N_Battle_Axe mes "[Guildsman Mahnsoo]"; mes "Congratulations again for being a member of the merchant guild and one of our colleagues. I expect your active participation from now on!"; @@ -169,7 +169,7 @@ alberta_in,53,43,6 script Merchant#mer 86,{ } alberta_in,28,29,2 script Merchant Guildsman 83,{ - if (job_merchant_q == 0 || job_merchant_q == 1 || job_merchant_q == 2) { + if (MERCNT_Q == 0 || MERCNT_Q == 1 || MERCNT_Q == 2) { mes "[Union Staff Kay]"; mes "I am sorry, but we don't make deliveries anymore."; mes "Didn't Chief Mahnsoo tell you?"; @@ -186,7 +186,7 @@ alberta_in,28,29,2 script Merchant Guildsman 83,{ } morocc_in,140,102,4 script Student#mer 86,{ - if (job_merchant_q == 4 || job_merchant_q == 3) { + if (MERCNT_Q == 4 || MERCNT_Q == 3) { mes "[Dyer's Student]"; mes "I am sorry, but the Merchant Guild no longer makes deliveries to us anymore."; close; @@ -203,7 +203,7 @@ morocc_in,140,102,4 script Student#mer 86,{ } geffen_in,155,122,4 script Guild Staff 47,{ - if (job_merchant_q == 4 || job_merchant_q == 3) { + if (MERCNT_Q == 4 || MERCNT_Q == 3) { mes "[Guild Staff]"; mes "I am sorry, but the Merchant Guild no longer makes deliveries to us anymore."; close; |