Frictional Games Forum (read-only)

Full Version: Script? Monster Run!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello! Im working on a map where these lights turn on one by one. and when the last one turns on this monster spawns and comes towards you. Except he walks towards you for a few seconds. How can i make him start by sprinting? Thanks For any help you can give!

Joe - GamingFtLols
Hey, is this what you are looking for?
Try that one and see what happens Tongue

Spoiler below!
{
SetEntityActive("enemynamehere", true);
ShowEnemyPlayerPosition("enemynamehere);
}
(02-01-2012, 09:05 PM)Loveridge Wrote: [ -> ]Hello! Im working on a map where these lights turn on one by one. and when the last one turns on this monster spawns and comes towards you. Except he walks towards you for a few seconds. How can i make him start by sprinting? Thanks For any help you can give!

Joe - GamingFtLols

ShowEnemyPlayerPosition should make the monsters immediately run. Not 100% on that one, but fairly sure.
(02-02-2012, 06:11 AM)Obliviator27 Wrote: [ -> ]ShowEnemyPlayerPosition should make the monsters immediately run. Not 100% on that one, but fairly sure.
Yep.
(02-02-2012, 07:54 AM)flamez3 Wrote: [ -> ]
(02-02-2012, 06:11 AM)Obliviator27 Wrote: [ -> ]ShowEnemyPlayerPosition should make the monsters immediately run. Not 100% on that one, but fairly sure.
Yep.
Thanks All (Y)