generated from Jaysyn/ModuleTemplate
12 lines
289 B
Plaintext
12 lines
289 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Unlocks the jail door in the Waymoot Jail
|
|
/////////////////////////////////////
|
|
void main()
|
|
{
|
|
object oDoor = GetObjectByTag("JailDoor1");
|
|
SetLocked(oDoor, FALSE);
|
|
}
|