Aantioch_Infernum/_module/nss/trapdoor_1.nss

13 lines
346 B
Plaintext
Raw Normal View History

2023-08-08 16:22:17 -04:00
//Put this OnUsed
void main()
{
object oPC = GetLastUsedBy();
AssignCommand(oPC, ClearAllActions());
//AssignCommand(OBJECT_SELF, ActionPlayAnimation(ANIMATION_PLACEABLE_OPEN));
object oTarget = GetWaypointByTag("WP_ROGUE_STORE");
location lTarget = GetLocation(oTarget);
DelayCommand(3.0, AssignCommand(oPC, ActionJumpToLocation(lTarget)));
}