12.08.2011, 21:43
Hi, when I try to create textdraws on init and show them to player, nothing happens! Even with blank gamemode and no other filterscripts. Please, help me.
pawn Код:
#include <a_samp>
new Text:welcomeText;
public OnFilterScriptInit()
{
welcomeText = TextDrawCreate(240.0,580.0,"Welcome to my SA-MP server");
return true;
}
public OnPlayerConnect(playerid)
{
TextDrawShowForPlayer(playerid,welcomeText);
}