09.07.2011, 06:19
Hey all i have a question how can i make some like this in my server?
sorry for ad but i dont know how other:
some can help me??
sorry for ad but i dont know how other:
some can help me??
error 010: invalid function or declaration |
new Text:yourtext
YourTextDraw(playerid)
{
yourtext = TextDrawCreate(0.0,0.0,"Place what you want in here."); //Remember to change the values of the floats.
TextDrawShowForPlayer(playerid,yourtext);
}
OnPlayerConnect(playerid)
{
YourTextDraw(playerid);
}
OnPlayerSpawn(playerid)
{
TextDrawHideForPlayer(playerid,yourtext);
TextDrawDestroy(yourtext);
}