05.10.2011, 12:54
hey i made that
And TextDrawLetterSize doesnt work cause the size of letters dont change...help me pls
PHP код:
new Text:welcometext;
public OnPlayerConnect(playerid)
{
TextDrawColor(welcometext, 0x00FF00FF);
TextDrawShowForPlayer(playerid, welcometext);
TextDrawLetterSize(welcometext, 10.000, 10.000);
TextDrawFont(welcometext, 3);
TextDrawAlignment(welcometext, 2);
return 1;
}
public OnFilterScriptInit()
{
welcometext = TextDrawCreate(150.0,300.0,"Welcome to European Trucking!");
return 1;
}
public OnFilterScriptExit()
{
TextDrawDestroy(welcometext);
return 1;
}