How to Textdraw
#4

Quote:
Originally Posted by Ironboy
Посмотреть сообщение
clive plz help me with complete details
Have you read wiki?

Example from wiki:
pawn Код:
// This variable is used to store the id of the textdraw
// so that we can use it throught the script
new Text:welcomeText;
 
public OnGameModeInit()
{
    // This line is used to create the textdraw.
    // Note: This creates a textdraw without any formatting.
    welcomeText = TextDrawCreate(240.0,580.0,"Welcome to my SA-MP server");
    return 1;
}

public OnPlayerConnect(playerid)
{
    //This is used to show the player the textdraw when they connect.
    TextDrawShowForPlayer(playerid,welcomeText);
}
You can read more from wiki
https://sampwiki.blast.hk/wiki/TextDrawCreate
Reply


Messages In This Thread
How to Textdraw - by Ironboy - 21.01.2011, 09:15
Re: How to Textdraw - by HyperZ - 21.01.2011, 09:23
Re: How to Textdraw - by Ironboy - 21.01.2011, 09:32
Re: How to Textdraw - by HyperZ - 21.01.2011, 10:01
Re: How to Textdraw - by Ironboy - 21.01.2011, 10:05
Re: How to Textdraw - by HyperZ - 21.01.2011, 10:05
Re: How to Textdraw - by Ironboy - 21.01.2011, 10:07
Re: How to Textdraw - by HyperZ - 21.01.2011, 10:09
Re: How to Textdraw - by Ironboy - 21.01.2011, 10:12
Re: How to Textdraw - by HyperZ - 21.01.2011, 10:13

Forum Jump:


Users browsing this thread: 2 Guest(s)