31.03.2012, 16:08
Й necessбrio 0.3e RC 4 para usar esse filterscript.
pawn Код:
#include <a_samp>
new PlayerText:Load;
public OnPlayerConnect(playerid)
{
Load = CreatePlayerTextDraw(playerid, 0.000000, 1.000000, "loadsc3:loadsc3");
PlayerTextDrawBackgroundColor(playerid, Load, 255);
PlayerTextDrawFont(playerid, Load, 4);
PlayerTextDrawLetterSize(playerid, Load, 0.759999, 1.000000);
PlayerTextDrawColor(playerid, Load, -1);
PlayerTextDrawSetOutline(playerid, Load, 0);
PlayerTextDrawSetProportional(playerid, Load, 1);
PlayerTextDrawSetShadow(playerid, Load, 1);
PlayerTextDrawUseBox(playerid, Load, 1);
PlayerTextDrawBoxColor(playerid, Load, 255);
PlayerTextDrawTextSize(playerid, Load, 639.000000, 448.000000);
PlayerTextDrawShow(playerid, PlayerText:Load);
return 1;
}
public OnPlayerRequestClass(playerid, classid)
{
PlayerTextDrawHide(playerid, PlayerText:Load);
return 1;
}