diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-07 15:27:07 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-07 15:27:07 -0300 |
commit | 0eaa0129e7d218b058c34fab9853b1d38853e6b9 (patch) | |
tree | 9a3cf931fe091fe855ff32d87818d3c20747e229 /npc/003-0-1 | |
parent | 7f91b4f988ba3a7d4c6eb44b372aec40ada214c7 (diff) | |
download | serverdata-0eaa0129e7d218b058c34fab9853b1d38853e6b9.tar.gz serverdata-0eaa0129e7d218b058c34fab9853b1d38853e6b9.tar.bz2 serverdata-0eaa0129e7d218b058c34fab9853b1d38853e6b9.tar.xz serverdata-0eaa0129e7d218b058c34fab9853b1d38853e6b9.zip |
You'll now find the Alliance Officer in the Council Room for a free level 60.
They'll sort out Homunculus, monster points, magic, crafting, skills.
Give fruits. Make you awesome enough to keep playing the beta smoothly.
Diffstat (limited to 'npc/003-0-1')
-rw-r--r-- | npc/003-0-1/guards.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/npc/003-0-1/guards.txt b/npc/003-0-1/guards.txt index 9296cd0bb..b0876a50e 100644 --- a/npc/003-0-1/guards.txt +++ b/npc/003-0-1/guards.txt @@ -7,6 +7,8 @@ 003-0-1,50,24,0 script Guard#00301A NPC_BRGUARD_SPEAR,{ if (getgmlevel()) goto L_Sponsor; + if ($FIRESOFSTEAM) + goto L_Steam; mesn; mesq l("Past this grates, is the Magic Council Room."); @@ -27,6 +29,16 @@ L_Sponsor: closeclientdialog; close; +L_Steam: + mesn; + mesq l("The Council is not in session, it has dispersed since Andrei Sakar went to an expedition to Artis. However, it was decided to allow others inside."); + mesc l("Warp to Council room?"); + if (askyesno() == ASK_YES) { + warp "003-0-2", 34, 42; + } + closeclientdialog; + close; + OnInit: .distance=4; end; |