summaryrefslogtreecommitdiff
path: root/npc/guilds/logs.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/guilds/logs.txt')
-rw-r--r--npc/guilds/logs.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/guilds/logs.txt b/npc/guilds/logs.txt
index 4c225f0fc..57bd7cb1e 100644
--- a/npc/guilds/logs.txt
+++ b/npc/guilds/logs.txt
@@ -86,7 +86,7 @@ guilds,47,39,0 script Guild Logs NPC_NO_SPRITE,{
1, SacredLifePotion, 1, SacredManaPotion);
if (.@s == 0)
- mesc l("Your guild doesn't knows any recipes!"), 1;
+ mesc l("Your guild doesn't know any recipes!"), 1;
.@role=getguildrole(.@gid, getcharid(3));
do
@@ -105,11 +105,11 @@ guilds,47,39,0 script Guild Logs NPC_NO_SPRITE,{
.@price=.@min_lv*274;
if (.@cur_lv < .@min_lv)
{
- mesc l("Guild Level is not enough: @@/@@", .@cur_lv, .@min_lv);
+ mesc l("Guild Level is not high enough: %d/%d", .@cur_lv, .@min_lv);
next;
break;
}
- mesc l("Raising this skill will allow to recruit 4 more members.");
+ mesc l("Raising this skill will allow you to recruit 4 more members.");
mesc l("The cost for Guild Vault is @@ GP.", .@price);
next;
select
@@ -182,7 +182,7 @@ guilds,47,39,0 script Guild Logs NPC_NO_SPRITE,{
case 8:
GDSkillLearn(TMW2_GD_AUTOREVIVE, 3000,
l("Blessing of Immortality"),
- l("If a guild mate dies, they will revive. Don't work on self."),
+ l("If a guild mate dies, they will revive. Doesn't work on self."),
7, 11, 17, 23, 26, 29, 31, 34, 38);
break;
case 9:
@@ -389,7 +389,7 @@ function GDSkillLearn {
// Guild level insuffice
if (.@gid_lv < .@min_lv)
{
- mesc l("Guild Level is not enough: @@/@@", .@gid_lv, .@min_lv);
+ mesc l("Guild Level is not high enough: %d/%d", .@gid_lv, .@min_lv);
next;
return 0;
}