25 lines
737 B
Plaintext
25 lines
737 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE,3.0);
|
||
|
DelayCommand(2.0, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE));
|
||
|
|
||
|
object oObject3 = GetObjectByTag("c4Explosive");
|
||
|
|
||
|
DelayCommand(0.1, ExecuteScript("mengexplosion", oObject3));
|
||
|
DelayCommand(0.4, ExecuteScript("mengexplosion", oObject3));
|
||
|
DelayCommand(0.7, ExecuteScript("mengexplosion", oObject3));
|
||
|
DelayCommand(1.0, ExecuteScript("mengexplosion", oObject3));
|
||
|
DelayCommand(1.3, ExecuteScript("mengexplosion", oObject3));
|
||
|
DelayCommand(1.5, ExecuteScript("mengexplosion", oObject3));
|
||
|
|
||
|
DelayCommand(3.0, ExecuteScript("purpleworm", OBJECT_SELF));
|
||
|
|
||
|
|
||
|
DelayCommand(10.0, ExecuteScript("removeobject", OBJECT_SELF));
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
|