diff options
author | DZeroX <DZeroX@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-17 01:08:50 +0000 |
---|---|---|
committer | DZeroX <DZeroX@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-17 01:08:50 +0000 |
commit | 8b7fc26a3e48449421c2aa771426a32d7498af9e (patch) | |
tree | 82c84c783098981f920baf8bb938d1a04d6e09b6 | |
parent | 40c6b81224c8f06464412b79a563f2d2e8d0c90d (diff) | |
download | hercules-8b7fc26a3e48449421c2aa771426a32d7498af9e.tar.gz hercules-8b7fc26a3e48449421c2aa771426a32d7498af9e.tar.bz2 hercules-8b7fc26a3e48449421c2aa771426a32d7498af9e.tar.xz hercules-8b7fc26a3e48449421c2aa771426a32d7498af9e.zip |
- Fixed several grammar mistakes from the original dialogs.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10550 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | npc/merchants/old_pharmacist.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/merchants/old_pharmacist.txt b/npc/merchants/old_pharmacist.txt index d60af260a..2b4df2798 100644 --- a/npc/merchants/old_pharmacist.txt +++ b/npc/merchants/old_pharmacist.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= DZeroX //===== Current Version: ===================================== -//= 1.0a +//= 1.1 //===== Compatible With: ===================================== //= eAthena SVN Trunk //===== Description: ========================================= @@ -69,7 +69,7 @@ alberta_in.gat,16,28,4 script Old Pharmacist 61,{ next; if ((countitem(507) < .@max) || (countitem(508) < .@max) || (countitem(713) < .@max) || (Zeny < .@max*3)) { mes "[Old Pharmacist]"; - mes "You punk! Do you want me to make stuff from insufficient ingridients?"; + mes "You rascal! You don't even have all the materials and you want me to make you potions?!"; close; } set Zeny,Zeny-(.@max*getarg(1)); @@ -100,7 +100,7 @@ alberta_in.gat,16,28,4 script Old Pharmacist 61,{ if ((countitem(507) < .@amount) || (countitem(508) < .@amount) || (countitem(713) < .@amount) || (Zeny < .@amount*3)) { next; mes "[Old Pharmacist]"; - mes "You punk! Do you want me to make stuff from insufficient ingridients?"; + mes "You rascal! You don't even have all the materials and you want me to make you potions?!"; close; } next; @@ -195,7 +195,7 @@ L_making: next; if ((countitem(getarg(0)) < .@max*2) || (countitem(713) < .@max) || (Zeny < .@max*getarg(1))) { mes "[Old Pharmacist]"; - mes "You punk! Do you want me to make stuff from insufficient ingridients?"; + mes "You rascal! You don't even have all the materials and you want me to make you potions?!"; close; } set Zeny,Zeny-(.@max*getarg(1)); @@ -226,7 +226,7 @@ L_making: if ((countitem(getarg(0)) < .@amount*2) || (countitem(713) < .@amount) || (Zeny < .@amount*getarg(1))) { next; mes "[Old Pharmacist]"; - mes "You punk! Do you want me to make stuff from insufficient ingridients?"; + mes "You rascal! You don't even have all the materials and you want me to make you potions?!"; close; } next; |