summaryrefslogtreecommitdiff
path: root/npc/003-2
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-02-05 20:05:52 -0200
committerJesusaves <cpntb1@ymail.com>2019-02-05 20:05:52 -0200
commit93486c9fb8475ea51916d6b9ce329a329554669b (patch)
tree75c527593a068216174842c50050a61a0996aafa /npc/003-2
parentdb1ce7332b7cafce3eedf99f76e9e049a69e4625 (diff)
downloadserverdata-93486c9fb8475ea51916d6b9ce329a329554669b.tar.gz
serverdata-93486c9fb8475ea51916d6b9ce329a329554669b.tar.bz2
serverdata-93486c9fb8475ea51916d6b9ce329a329554669b.tar.xz
serverdata-93486c9fb8475ea51916d6b9ce329a329554669b.zip
Make lua less ambiguous due a bug.
Add more dialog to Eistein to entretain players.
Diffstat (limited to 'npc/003-2')
-rw-r--r--npc/003-2/eistein.txt6
-rw-r--r--npc/003-2/lua.txt3
2 files changed, 7 insertions, 2 deletions
diff --git a/npc/003-2/eistein.txt b/npc/003-2/eistein.txt
index c846c7f52..2b88aa499 100644
--- a/npc/003-2/eistein.txt
+++ b/npc/003-2/eistein.txt
@@ -51,14 +51,18 @@
{
select
l("Interesting! can I be rewarded for my help?"),
+ l("What about job levels and job experience?"),
l("Quit");
switch (@menu) {
case 1:
quest_open;
break;
+ case 2:
+ mesn; mesq l("Job levels already boosts all your status. It gives +1 on each status every 10 job levels."); next;
+ break;
}
- } while (@menu != 2);
+ } while (@menu != 3);
closedialog;
goodbye;
diff --git a/npc/003-2/lua.txt b/npc/003-2/lua.txt
index 10657b5b6..2cbbbe504 100644
--- a/npc/003-2/lua.txt
+++ b/npc/003-2/lua.txt
@@ -133,7 +133,8 @@ L_Info:
mesq l("Of course, give me just a minute to look up for your data, @@.", strcharinfo(0));
next;
mesn;
- mesq l("You can explore the city on the meanwhile, I need to inspect the data.");
+ mesq l("Please wait here on the meanwhile. Try asking Estard about parties, or talk to Eistein.");
+ //mesq l("You can explore the city on the meanwhile, I need to inspect the data.");
if (!@lua_init) {
@lua_init=1;
addtimer(rand(55000,65000),"Lua#003-2::OnLuaInfo");