help please
#3

Код HTML:
// 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);
}
Reply


Messages In This Thread
help please - by bartje01 - 07.07.2010, 00:54
Re: help please - by (.Aztec); - 07.07.2010, 02:02
Re: help please - by TheKingOfSamp - 07.07.2010, 02:54
Re: help please - by bartje01 - 07.07.2010, 04:54
Re: help please - by (.Aztec); - 07.07.2010, 05:46
Re: help please - by bartje01 - 07.07.2010, 06:20

Forum Jump:


Users browsing this thread: 1 Guest(s)