06.03.2016, 17:01
Hello. I'm getting this error
error 035: argument type mismatch (argument 14)
lines:
Thanks
error 035: argument type mismatch (argument 14)
lines:
Код:
tags_Nametag[playerid] = CreateDynamic3DTextLabelEx(string, YELLOW, 0.0, 0.0, 0.0, 6000.0, playerid, _, 0, 6000.0, _, _, players, 1, 1, maxplayers); tags_NametagLOS[playerid] = CreateDynamic3DTextLabelEx("[| |]", BLUE, 0.0, 0.0, 0.0, 6000.0, playerid, _, 1, 6000.0, _, _, players, 1, 1, maxplayers);
Код:
hook OnPlayerConnect(playerid) { new string[MAX_PLAYER_NAME + 6], name[MAX_PLAYER_NAME], players[MAX_PLAYERS], maxplayers; tags_Toggle[playerid] = false; foreach(new i : Player) { if(tags_Toggle[i]) players[maxplayers++] = i; } GetPlayerName(playerid, name, MAX_PLAYER_NAME); format(string, sizeof(string), "(%d) %s", playerid, name); tags_Nametag[playerid] = CreateDynamic3DTextLabelEx(string, YELLOW, 0.0, 0.0, 0.0, 6000.0, playerid, _, 0, 6000.0, _, _, players, 1, 1, maxplayers); tags_NametagLOS[playerid] = CreateDynamic3DTextLabelEx("[| |]", BLUE, 0.0, 0.0, 0.0, 6000.0, playerid, _, 1, 6000.0, _, _, players, 1, 1, maxplayers); return 1; }