Initial upload
Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
This commit is contained in:
12
_module/nss/tri_devicedest.nss
Normal file
12
_module/nss/tri_devicedest.nss
Normal file
@@ -0,0 +1,12 @@
|
||||
void main()
|
||||
{
|
||||
object oDoor = GetObjectByTag("tri_magicdoor");
|
||||
object oSparks = GetNearestObjectByTag("tri_magicspa", OBJECT_SELF, 1);
|
||||
|
||||
SetLocked(oDoor, 0);
|
||||
DelayCommand(10.0, ActionOpenDoor(oDoor));
|
||||
SetPlotFlag(oSparks,FALSE);
|
||||
DestroyObject(oSparks);
|
||||
|
||||
DelayCommand(1200.0, SetLocked(oDoor, TRUE));
|
||||
}
|
||||
Reference in New Issue
Block a user