From 6ff813be846f3a99ae7069b92bdb98d742c22079 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sat, 18 May 2019 17:24:29 -0300 Subject: Blue Sage placeholders. Make Psi Conscience stronger - small chase, and to prevent you exploiting the energy balls to damage the Psi - it'll knockback itself 5 tiles when attacked at melee range. It'll also stun the attacker (cannot move/etc.) for 5 seconds. --- npc/020-7/elias.txt | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 npc/020-7/elias.txt (limited to 'npc/020-7/elias.txt') diff --git a/npc/020-7/elias.txt b/npc/020-7/elias.txt new file mode 100644 index 000000000..71200e6ce --- /dev/null +++ b/npc/020-7/elias.txt @@ -0,0 +1,49 @@ +// TMW2 scripts. +// Authors: +// Jesusalva +// TMW Org. +// Description: +// Controls access to Blue Sage Residence +// Minimum level: 36 (implicit) + +// NivalisQuest_BlueSage STRUCTURE +// FIELD 1: +// INVESTIGATION +// 1 - ACCESS GRANTED +// 2~10 - FOLLOW LOGIC +// FIELD 2: +// BOOK MAKING QUEST +// FIELD 3: +// SLIME HUNTING QUEST + +020-7,43,42,0 script #BlueSageEntry NPC_HIDDEN,1,1,{ +OnTouch: + .@q=getq(NivalisQuest_BlueSage); + if (!.@q) { + slide 42, 43; + doevent "Elias::OnAccessDenied"; + } + end; +} + +020-7,40,41,0 script Elias NPC_SAGRATHA,{ + .@q=getq(General_Narrator); + if (.@q < 10) { + npctalk3 l("ERROR/TODO: Explain that library and residence is off-limits"); + } else { + npctalk3 l("ERROR/TODO: Grant access to Blue Sage Library after showing Rakinorf recommendation letter."); + } + goodbye; + end; + +OnAccessDenied: + npctalk3 l("You can't go in there!"); + end; + +OnInit: + .sex=G_MALE; + .distance=5; + end; + +} + -- cgit v1.2.3-60-g2f50