diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-10-24 12:48:53 +0000 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-10-24 12:48:53 +0000 |
commit | 1a3d323af19764546552b1d621c65303c1fb3005 (patch) | |
tree | 5e70a62dc756d5a10fe558fe6e3efefcf5ef1a97 /npc/001-2-39 | |
parent | 8077efb70e0af1c54a84859f73c96de21c60107b (diff) | |
download | serverdata-1a3d323af19764546552b1d621c65303c1fb3005.tar.gz serverdata-1a3d323af19764546552b1d621c65303c1fb3005.tar.bz2 serverdata-1a3d323af19764546552b1d621c65303c1fb3005.tar.xz serverdata-1a3d323af19764546552b1d621c65303c1fb3005.zip |
CONTENT III SUPER MERGE REQUEST
Included:
* Tulimshar Casino
* Placeholder fixing/filling
* Food Questline
* Rossy Quest
* Galimatia Quest (mostly by Livio)
* Edourard bugs
* Blood Donor Quest (from Moubootaur Legends)
* Merchant Guild Quest
* Mundane Bugfix
* La Marine
* Hurns Doctor easter eggs
* Sailing to Argaes with Legion
* Other things not relevant enough to be noted down, I guess
Diffstat (limited to 'npc/001-2-39')
-rw-r--r-- | npc/001-2-39/qanon.txt | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/npc/001-2-39/qanon.txt b/npc/001-2-39/qanon.txt index 2a948afe..36cf47e5 100644 --- a/npc/001-2-39/qanon.txt +++ b/npc/001-2-39/qanon.txt @@ -2,6 +2,7 @@ // Authors: // Alige // Reid +// Jesusalva // Description: // Artis's Legion of Aemil leader. // Variables: @@ -15,6 +16,7 @@ 001-2-39,34,41,0 script Q'Anon NPC_Q_ANON,{ function legionState; + function legionState2; function notaMember; .@q=getq(Artis_Legion_Progress); mesn; @@ -31,6 +33,7 @@ // Main Menu select rif(.@q == 5, l("Lozerk told me to talk to you and join the legion.")), + rif(.@q == 6, l("Have I grown enough reputation to join?")), l("Thanks, sir Q'Anon."); mes ""; switch (@menu) @@ -39,6 +42,9 @@ legionState(); break; case 2: + legionState2(); + break; + case 3: mesn; mesq lg("Make me proud, girl.", "Make me proud, boy."); break; @@ -90,6 +96,34 @@ function legionState { return; } +function legionState2 { + if (faction_standing("LEGION", true) >= 1) { + mesn; + mesq l("Actually. I am thinking in sending you in a... special mission."); + next; + mesn; + mesq l("You probably noticed a frigate docked near La Johanne when you arrived?"); + next; + mesn; + mesq l("We've found... the old continent, from where our race came from long ago."); + next; + mesn; + mesq l("It seems to have fallen in barbarian hands since the Fleet of Ancea, and that, is not something we can allow."); + next; + mesn; + mesc l("%s gives you a piece of paper, which you put on a different pocket."); + mesq lg("Go to the ship, show the captain this letter if asked. After reaching, look for Captain Hal. He'll give you further instructions."); + next; + mesn; + mesq lg("Make me proud, girl.", "Make me proud, boy."); + setq Artis_Legion_Progress, 7; + } else { + mesn; + mesq l("Hmm... No, not yet. Try helping other legion members around."); + } + return; +} + OnInit: .bodytype = BODYTYPE_3; .distance = 3; |