generated from Jaysyn/ModuleTemplate
17 lines
504 B
Plaintext
17 lines
504 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Jumps the player to the lower jail of the Waymoot Jail
|
|
/////////////////////////////////////
|
|
|
|
#include "de1_i0_henchman"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
AssignCommand(oPC, ActionJumpToLocation(GetLocation(GetObjectByTag("WP_wq2lj_player"))));
|
|
SetLocalInt(GetModule(), "nWaymootQuest2", 4);
|
|
SetLocalInt(GetObjectByTag("WJail1ToWJail2"), "nDoorIsGuarded", 0);
|
|
}
|