summaryrefslogtreecommitdiff
path: root/npc/guilds
diff options
context:
space:
mode:
Diffstat (limited to 'npc/guilds')
-rw-r--r--npc/guilds/bank.txt2
-rw-r--r--npc/guilds/forge.txt2
-rw-r--r--npc/guilds/logs.txt10
-rw-r--r--npc/guilds/storage.txt4
4 files changed, 9 insertions, 9 deletions
diff --git a/npc/guilds/bank.txt b/npc/guilds/bank.txt
index dadd5277d..166fe2b02 100644
--- a/npc/guilds/bank.txt
+++ b/npc/guilds/bank.txt
@@ -10,7 +10,7 @@ guilds,35,35,0 script Guild Vault NPC_NO_SPRITE,{
do
{
mesn;
- mesc l("This vault currently have @@ GP inside.", format_number($GUILD_BANK[.@gid]));
+ mesc l("This vault currently has %d GP inside.", format_number($GUILD_BANK[.@gid]));
select
l("Okay, laters"),
l("Donate GP"),
diff --git a/npc/guilds/forge.txt b/npc/guilds/forge.txt
index a558c4c83..f7dc8c73c 100644
--- a/npc/guilds/forge.txt
+++ b/npc/guilds/forge.txt
@@ -11,7 +11,7 @@ guilds,24,27,0 script Guild Blacksmith NPC_NO_SPRITE,{
mesc l("What will you forge today?");
//mesc l("You might need to have a @@ equipped for some recipes!", getitemlink(Knife));
mesc l("Note: Items forged here will be guild-bound, but will use player recipes and bonuses!");
- mesc b(l("\"WHAT IS CRAFTED IN GUILD BELONGS TO GUILD.\"")), 1;
+ mesc b(l("\"WHAT IS CRAFTED HERE BELONGS TO THE GUILD.\"")), 1;
if (SmithSystem(CRAFT_GUILD))
{
mesc l("Success!"), 3;
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;
}
diff --git a/npc/guilds/storage.txt b/npc/guilds/storage.txt
index e1f30e32a..bae5c985b 100644
--- a/npc/guilds/storage.txt
+++ b/npc/guilds/storage.txt
@@ -13,13 +13,13 @@ OnStorage:
end;
if (getguildlvl(.@gid) < 2)
{
- npctalkonce l("Your guild need to have at least level 2 to use storage feature.");
+ npctalkonce l("Your guild needs to have at least level 2 to use storage feature.");
}
else
{
if (getguildrole(.@gid, getcharid(3)) > GPOS_MEMBER)
{
- dispbottom l("Your position must be the one of a regular member or above.");
+ dispbottom l("Your rank must be regular member or above.");
end;
}
if (guildopenstorage())