diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-09-01 08:14:36 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-09-01 08:14:36 +0000 |
commit | d90483d3d0d2c334fff01faa0d1ef4899fce700b (patch) | |
tree | aa8fcd6f7d7ff0743bd00c563caf2862f76aacb5 /npc/custom/eAAC_Scripts/kafraExpress | |
parent | 755aefb11175f1d7f145c74ad2b6e084974ff71f (diff) | |
download | hercules-d90483d3d0d2c334fff01faa0d1ef4899fce700b.tar.gz hercules-d90483d3d0d2c334fff01faa0d1ef4899fce700b.tar.bz2 hercules-d90483d3d0d2c334fff01faa0d1ef4899fce700b.tar.xz hercules-d90483d3d0d2c334fff01faa0d1ef4899fce700b.zip |
Fixed certain typos in src/npc/doc files
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11102 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom/eAAC_Scripts/kafraExpress')
-rw-r--r-- | npc/custom/eAAC_Scripts/kafraExpress/ke_statmarket.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/custom/eAAC_Scripts/kafraExpress/ke_statmarket.txt b/npc/custom/eAAC_Scripts/kafraExpress/ke_statmarket.txt index c5c69624f..3be27c681 100644 --- a/npc/custom/eAAC_Scripts/kafraExpress/ke_statmarket.txt +++ b/npc/custom/eAAC_Scripts/kafraExpress/ke_statmarket.txt @@ -76,7 +76,7 @@ function script F_keStatMarket { } else if (@qty > @max) { if (@max == 9999) - callfunc "F_keIntro", e_X, "You can't buy that much!"; + callfunc "F_keIntro", e_X, "You can't buy that many!"; else callfunc "F_keIntro", e_X, "You don't have that many to sell..."; } else @@ -86,7 +86,7 @@ function script F_keStatMarket { switch(@kmenu) { case 2: //Buy Stat if (!(callfunc("F_keCharge",@cost,$@kesm_discount,1))) { - callfunc "F_keIntro", e_X, "You do not have enough zeny to buy that much."; + callfunc "F_keIntro", e_X, "You do not have enough zeny to buy that many."; break; } set StatusPoint,StatusPoint+@qty; @@ -99,7 +99,7 @@ function script F_keStatMarket { break; case 4: //Buy Skill if (!(callfunc("F_keCharge",@cost,$@kesm_discount,1))) { - callfunc "F_keIntro", e_X, "You do not have enough zeny to buy that much."; + callfunc "F_keIntro", e_X, "You do not have enough zeny to buy that many."; break; } set SkillPoint,SkillPoint+@qty; |