Files
HeroesStone_PRC8/_module/nss/de1_wayq2_3.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

14 lines
446 B
Plaintext

/////////////////////////////////////
// Dragon's Edge
// by Charly Carlos
/////////////////////////////////////
// This will unlock the Jail door to the jail proper, and set the quest
// variable to 3 meaning the player has spoken to Frazt about the orc problem.
/////////////////////////////////////
void main()
{
object oDoor = GetObjectByTag("JailDoor1");
SetLocked(oDoor, FALSE);
SetLocalInt(GetModule(), "nWaymootQuest2", 3);
}