15.03.2015, 19:50
maybe use it on OnPlayerConnect like this:
or if you wanna show it on respective time use this:
pawn Код:
public OnPlayerConnect(playerid)
{
SetPlayerMapIcon(playerid, iconid, Float:x, Float:y, Float:z, markertype, color, style);
return 1;
}
pawn Код:
for(new i = 0; i <MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
SetPlayerMapIcon(i, iconid, Float:x, Float:y, Float:z, markertype, color, style);
}
return 1;
}