16.08.2011, 12:49
Quote:
So how I basicaly understood is, that when you are in the deathmatch you can see the player marker on the mini map and when you are outside you can't?
https://sampwiki.blast.hk/wiki/SetPlayerMarkerForPlayer https://sampwiki.blast.hk/wiki/ShowPlayerMarkers If so just create: If(inDM == 1 ) { ShowPlayerMarkers(1); } else { //nothing here, that means the markers don't show //or just ShowPlayerMarkers(0); } |