11.02.2013, 14:51
Yea these are the comple lines i made
And i want it to show me something when i type an command
pawn Код:
forward playerstats(playerid);
new PlayerText:playerstats[playerid];
public playerstats(playerid)
{
playerstats[playerid] = CreatePlayerTextDraw(playerid, 240.0,580.0, " ");
TextDrawAlignment(playerstats[playerid], 2);
TextDrwaBackgroundColor(playerstats[playerid], 255);
TextDrawFont(playerstats[playerid], 1);
TextDrawSetOutline(playerstats[playerid], 1);
TextDrawSetProportional(playerstats[playerid], 1);
TextDrawLetterSize(playerstats[playerid], 0.3, 1.25);
PlayerTextDrawUseBox(playerid, playerstats[playerid], 1);
PlayerTextDrawBoxColor(playerid, playerstats[playerid],0x00000066);
PlayerTextDrawColor(playerid, playerstats[playerid], 0xFF0000FF);
TextDrawTextSize(playerstats[playerid], 160.00,280.00);
}