13 lines
346 B
Plaintext
13 lines
346 B
Plaintext
|
//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)));
|
||
|
|
||
|
}
|
||
|
|