diff options
author | jesusalva <cpntb1@ymail.com> | 2018-03-01 02:02:35 -0300 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-03-01 02:02:35 -0300 |
commit | 92862ebb1dc1f4850ad50c72d0cc1ea25d70ee2e (patch) | |
tree | 5dc2450e9cc9a3976792f636a22548fe50696f3e /npc/003-2/lua.txt | |
parent | ffff34625685c5a1220dca71eeafd0eb8fec6f7d (diff) | |
download | serverdata-92862ebb1dc1f4850ad50c72d0cc1ea25d70ee2e.tar.gz serverdata-92862ebb1dc1f4850ad50c72d0cc1ea25d70ee2e.tar.bz2 serverdata-92862ebb1dc1f4850ad50c72d0cc1ea25d70ee2e.tar.xz serverdata-92862ebb1dc1f4850ad50c72d0cc1ea25d70ee2e.zip |
Continue storyline, to prevent things from getting too lose.
Diffstat (limited to 'npc/003-2/lua.txt')
-rw-r--r-- | npc/003-2/lua.txt | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/npc/003-2/lua.txt b/npc/003-2/lua.txt index 7392a1eec..0f0db3336 100644 --- a/npc/003-2/lua.txt +++ b/npc/003-2/lua.txt @@ -3,6 +3,8 @@ // Jesusalva 003-2,38,34,0 script Lua#003-2 NPC_FEMALE,{ + .@n = getq(General_Narrator); + mesn; mesq l("Hello, I act on the Alliance's behalf."); @@ -10,6 +12,7 @@ L_Menu: mes ""; menu l("Ok, see you later."),L_Close, + rif(.@n == 1, l("I was found near Candor Island, on a raft, and can't remember anything. Do you know who I am?")), L_Info, rif(getgmlevel(), l("I need a GM set, please!")), L_GMItems, rif(getgmlevel() && #GMEVENT_T <= gettimetick(2), l("I plan in doing an event! Give me the coins!")), L_GMEvent, rif(getgmlevel(), l("Tell people the name of a new hero.")), L_NewHero, @@ -50,6 +53,42 @@ L_NewHero: $MOST_HEROIC$ = .@MH$; goto L_Menu; +L_Info: + mes ""; + mesn; + mesq l("Of course, give me just a minute to look up for your data, @@.", strcharinfo(0)); + next; + mes "..."; + next; + mes "... ..."; + next; + mes "... ... ..."; + next; + mesn; + mesq l("No criminal record, no bank account, not even a tax payment declaration."); + next; + mesq l("I found your birth record, but it is not complete. Here says you were born on Halinarzo."); + next; + mesq l("The problem is that Halinarzo was destroyed in the never-ending war and was just recently rebuilt."); + next; + mesq l("Almost all documents were lost, destroyed or damaged. I cannot even find your parents name."); + next; + mesq l("All I can say is that you were born there, and moved by the age of 4, but to where? I don't know."); + next; + mesn; + mesq l("I'll arrange here with the alliance documents regarding you. I'll add a \"war victim\" status to make your life easier."); + next; + mesq l("You will then be able to register citzenship in any city, for free. But just once."); + next; + mesn; + mesq l("Sorry. At best, you can try your luck in Halinarzo, but the odds of someone recognizing you are pretty slim."); + next; + mesq l("You will be killed on the road if you try to go like this. Try helping people. Get money, experience, equipment."); + next; + mesq l("And then, finally, depart to ##BHalinarzo##b. Maybe, just maybe, someone recognize you. Or, start a new life! Few people can do that!"); + setq General_Narrator, 2; + close; + L_Close: close; |