26.07.2014, 04:46
Edit this to your preference
And change the command to
I see you like xSF very much.
pawn Код:
DescriptionText[playerid] = TextDrawCreate(320.0, 380.0, " ");
TextDrawAlignment(DescriptionText[playerid], 2);
TextDrawFont(DescriptionText[playerid], 1);
TextDrawLetterSize(DescriptionText[playerid], 0.320000, 1.700000);
TextDrawSetOutline(DescriptionText[playerid], 1);
TextDrawHideForPlayer(playerid, DescriptionText[playerid]);
pawn Код:
CMD:smoke(playerid, params[])
{
foreach(new i : Player)
{
new string[128], sName[24];
GetPlayerName(playerid, sName, sizeof(sName));
format(string, sizeof(string), "~r~[DM] ~w~%s(%d) has joined /smoke", sName, playerid);
ShowDescriptionText(i, string);
}
return 1;
}