23.03.2013, 09:49
hello i'm using these codes ...but textdraw is not shown on player connect..
any help .. i want it on player(s) screen when he/she connect. etc..
pawn Код:
new Text:Textdraw4;
public OnFilterScriptInit()
{
Textdraw4 = TextDrawCreate(15.000000, 438.000000, "TESTING ...");
TextDrawBackgroundColor(Textdraw4, 65535);
TextDrawFont(Textdraw4, 3);
TextDrawLetterSize(Textdraw4, 0.419999, 0.799998);
TextDrawColor(Textdraw4, -1);
TextDrawSetOutline(Textdraw4, 1);
TextDrawSetProportional(Textdraw4, 1);
TextDrawSetSelectable(Textdraw4, 0);
return 1;
}
public OnPlayerConnect( playerid )
{
TextDrawShowForPlayer(playerid, Textdraw4);
return 1;
}
any help .. i want it on player(s) screen when he/she connect. etc..