summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorgumi <mekolat@users.noreply.github.com>2017-01-15 15:30:10 -0500
committergumi <mekolat@users.noreply.github.com>2017-01-15 16:38:45 -0500
commit577f233b091ee0f1c82fe970ef38ed1cb4692664 (patch)
treec2fbf630aac3650da8ee49beebf76d9111369809 /npc
parent0b18d7b7a7dd14f3875584da6262775bfe39b15e (diff)
downloadserverdata-577f233b091ee0f1c82fe970ef38ed1cb4692664.tar.gz
serverdata-577f233b091ee0f1c82fe970ef38ed1cb4692664.tar.bz2
serverdata-577f233b091ee0f1c82fe970ef38ed1cb4692664.tar.xz
serverdata-577f233b091ee0f1c82fe970ef38ed1cb4692664.zip
fix lg misuse
Diffstat (limited to 'npc')
-rw-r--r--npc/000-1/tibbo.txt3
-rw-r--r--npc/000-2-1/chefgado.txt3
-rw-r--r--npc/001-2-28/plush.txt8
3 files changed, 8 insertions, 6 deletions
diff --git a/npc/000-1/tibbo.txt b/npc/000-1/tibbo.txt
index c16a797b..5e5a2701 100644
--- a/npc/000-1/tibbo.txt
+++ b/npc/000-1/tibbo.txt
@@ -95,7 +95,8 @@ L_Aquada:
next;
mesq l("You can find them in the ocean, near corals and other sea beings. But the sea is too heavy today, you shouldn't try swimming for now.");
next;
- mesq lg("Otherwise, if you really want one, and if you feel capable, you can try killing tortugas or crocs if you're strong enough. I'm sure they could drop one or two @@s.", getitemlink(Aquada));
+ mesq lg("Otherwise, if you really want one, and if you feel capable, you can try killing tortugas or crocs if you're strong enough. I'm sure they could drop one or two @@s.",
+ "Otherwise, if you really want one, and if you feel capable, you can try killing tortugas or crocs if you're strong enough. I'm sure they could drop one or two @@s.", getitemlink(Aquada));
close;
diff --git a/npc/000-2-1/chefgado.txt b/npc/000-2-1/chefgado.txt
index 247e58ac..ca069d8e 100644
--- a/npc/000-2-1/chefgado.txt
+++ b/npc/000-2-1/chefgado.txt
@@ -111,7 +111,8 @@ L_QuestAccepted:
L_OpenCroconut:
mes "";
mesn;
- mesq lg("Take a @@ and try opening it using something like a sharp knife. I doubt you'll succeed, you're being so weak in everything.", getitemlink(Croconut));
+ mesq lg("Take a @@ and try opening it using something like a sharp knife. I doubt you'll succeed, you're being so weak in everything.",
+ "Take a @@ and try opening it using something like a sharp knife. I doubt you'll succeed, you're being so weak in everything.", getitemlink(Croconut));
next;
mesq l("Now move!");
diff --git a/npc/001-2-28/plush.txt b/npc/001-2-28/plush.txt
index 3c6fd5ea..bcf73e5a 100644
--- a/npc/001-2-28/plush.txt
+++ b/npc/001-2-28/plush.txt
@@ -32,10 +32,10 @@
PC_IS_DEAD = false;
speech 5,
- lg("I registered you on the @@ room of the upper level.",
- (Sex == G_FEMALE) ? "4th" : "2nd"),
+ lg("I registered you on the 4th room of the upper level.",
+ "I registered you on the 2nd room of the upper level."),
l("You can go upstairs and choose a different room if you want.");
- savepoint "001-2-29", 29, (Sex == G_FEMALE) ? 49 : 35;
+ savepoint "001-2-29", 29, g(49, 35);
}
}
@@ -79,7 +79,7 @@
if (askyesno() == ASK_YES)
{
- register_room;
+ register_room;
}
}
return;