Textdraws
#6

pawn Код:
new Text:Logo;


public OnGameModeInit()
{
   
    Logo = TextDrawCreate(320.0, 100.0, "My Text");
    TextDrawSetOutline(Logo, 1);
    TextDrawFont(Logo, 3);
    TextDrawBackgroundColor(Logo, 0xFFFFFFFF );
    TextDrawAlignment(Logo, 2);
    TextDrawLetterSize(Logo, 2.0 ,7.5);
    return(1);
}

public OnPlayerConnect( playerid )
{
   
    TextDrawShowForPlayer(playerid, Logo);
    return(1);
}

public OnPlayerSpawn( playerid )
{
    TextDrawHideForPlayer(playerid, Logo);
    return(1);
}
Reply


Messages In This Thread
Textdraws - by Anthonyx3' - 27.01.2011, 02:01
Re: Textdraws - by Grim_ - 27.01.2011, 02:02
Re: Textdraws - by Anthonyx3' - 27.01.2011, 02:09
Re: Textdraws - by Grim_ - 27.01.2011, 02:12
Re: Textdraws - by -Rebel Son- - 27.01.2011, 02:13
Re: Textdraws - by Gabe - 27.01.2011, 02:14
Re: Textdraws - by Anthonyx3' - 27.01.2011, 02:16

Forum Jump:


Users browsing this thread: 1 Guest(s)