TextDraw
#1

Hello, This is the first time to create TextDraw so i made this
PHP код:
CMD:text(playeridparams[])
{
    new 
PlayerText:test[MAX_PLAYERS];
    
test[playerid] = CreatePlayerTextDraw(playerid240580"This is test");
    
PlayerTextDrawShow(playeridtest[playerid]);
    return 
1;

But it didn't show anything....
Any Help ?!
Reply
#2

pawn Код:
CMD:text(playerid, params[])
{
    new Text:test[MAX_PLAYERS];
    test[playerid] = CreatePlayerTextDraw(playerid, 240, 580, "This is test");
    PlayerTextDrawShow(playerid, test[playerid]);
    return 1;
}
Reply
#3

It didn't work i got only 2 warnings
Reply
#4

Your text is off the screen. Valid values for Y are between 0 and 480.
Reply
#5

lol i took it from SAMP WIKI
Reply
#6

use this :http://bsndesign.webs.com/tde.htm
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)