CMD:a3dtext(playerid, params[])
{
if(!ToAdminLevel(playerid,6)) return 0;
new Float:X, Float:Y, Float:Z;
if(unformat(params, "s[128]",params)) return SendClientMessage(playerid, KOLOR_BORDOWY, "[U?yj] /a3dtext < Tekst >");
GetPlayerPos(playerid, X, Y, Z);
AddLabelToFile(LABEL_FILE_NAME, params, X, Y, Z);
CreateDynamic3DTextLabel(params, ForRndColorLabel[random(sizeof(ForRndColorLabel))], X, Y, Z, 50.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, -1, -1, -1, 5.0);
format(Msg, sizeof(Msg), "3D Text pomy?lnie utworzony!. Tekst: "%s".",params);
return SendClientMessage(playerid, KOLOR_ZIELONY, Msg);
}