Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
Mik57

In-Game HUD Messages

Recommended Posts

Can anyone show me the script lines to make a message appear on the communicator? Thx.

Share this post


Link to post

script 1 (void)
{
HudMessage(s:"\This will appear on the screen"; 2, 0, 3, 1.5, 0.5, 1.0);
}


Analysing the body of the script:-

scrip 1 (void)
{
HudMessage (this is an alternative to print, and will come up as a sort of typed message).

(s:"\This will appear on the screen"; 2, 0, 3, 1.5, 0.5, 1.0);
}

Also, if you want coloured text, put \c then a character after the c in CAPITALS, like this:-

\cH (this will make blue)

Hope this helps :)

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
×