Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
Sign in to follow this  
Andrea Rovenski

How do I 'freeze' the player?

Recommended Posts

For a message script

so im assuming its ACS :P

you could use a script like this:

Script 1 (void)
{
SetPlayerProperty(1, 1, PROP_TOTALLYFROZEN);
Print(s:"Hello");
delay(70);
Print(s:"Bye");
Delay(70);
SetPlayerProperty(1, 0, PROP_TOTALLYFROZEN);
}

This script when called, will freeze they player, send a message, wait 2 seconds, send another message, wait another 2 seconds then unfreeze the player.

is that what you meant?

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  
×