Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: ngocson389 on Aug 15, 2016, 12:38 PM

Title: How to Print to Screen
Post by: ngocson389 on Aug 15, 2016, 12:38 PM
How to print text to Screen like this:

(https://forum.vc-mp.org/proxy.php?request=http%3A%2F%2Fi.imgur.com%2F2CV1M0S.png&hash=d200f0aeb6c0e877728fcef2accbe2e7bc628a23)
Title: Re: How to Print to Screen
Post by: KAKAN on Aug 15, 2016, 12:49 PM
If you're using rel03 version, use CreateTextdraw and if rel04, do some client side shits.
Title: Re: How to Print to Screen
Post by: ngocson389 on Aug 15, 2016, 01:04 PM
Can u give me some line code for 004 :p Tksssss
Title: Re: How to Print to Screen
Post by: MatheuS on Aug 15, 2016, 01:30 PM
function Script::ScriptLoad()
{
    TextDraw <- GUIMemobox( VectorScreen( 1000, 500 ), VectorScreen( 100, 100 ), Colour( 255, 202, 202, 255 ) );
    TextDraw.AddLine( "First line" );
    TextDraw.AddLine( "Second line" );
}

Here is an example of how to create the client-side TextDraw.

To add the FPS use the code made by @Doom_Kill3R recently posted on the forum.
Link: FPS Label (http://forum.vc-mp.org/?topic=3552.0)
Title: Re: How to Print to Screen
Post by: ngocson389 on Aug 15, 2016, 01:36 PM
Oh tks. so. How can i get pos in screen
Title: Re: How to Print to Screen
Post by: MatheuS on Aug 15, 2016, 02:20 PM
Quote from: ngocson389 on Aug 15, 2016, 01:36 PMOh tks. so. How can i get pos in screen


http://forum.vc-mp.org/?topic=2752.0