summaryrefslogtreecommitdiff
path: root/npc/guilds/logs.txt
diff options
context:
space:
mode:
authorNetSysFire <16-NetSysFire@users.noreply.git.themanaworld.org>2023-01-30 02:06:30 +0000
committerNetSysFire <16-NetSysFire@users.noreply.git.themanaworld.org>2023-01-30 02:06:30 +0000
commite7fd238b04c9243a146aa2686541a9b532b45818 (patch)
treeaa81ac41f99773812f555a9a560c386c0dc5a35e /npc/guilds/logs.txt
parent02c1cd48d4de0300578f89c92b879d9e7032cd39 (diff)
parent78bfe00b3a420730ecf89687ea3da2d4f76d3f2a (diff)
downloadserverdata-e7fd238b04c9243a146aa2686541a9b532b45818.tar.gz
serverdata-e7fd238b04c9243a146aa2686541a9b532b45818.tar.bz2
serverdata-e7fd238b04c9243a146aa2686541a9b532b45818.tar.xz
serverdata-e7fd238b04c9243a146aa2686541a9b532b45818.zip
Merge branch 'random-typos' into 'master'HEADmaster
Random typo fixes See merge request ml/serverdata!78
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;
}