19.04.2009, 19:24
So we bought a new Serverscript.
But now everyone can see each other marked on the Map.....
I searched for "marker" in the Script and found following condition in the "OnPlayerSpawn" Function:
It looks like this solves our problem,but it doesn`t.
As you can see, i commented out the Markers, but it still doesn`t work
Can you tell me ANY command which can be (mis)used to detect players on the minimap/map/radar ?
Like SetPlayerMapIcon, so that i can search for it....
But now everyone can see each other marked on the Map.....
I searched for "marker" in the Script and found following condition in the "OnPlayerSpawn" Function:
Код:
// if(MapIconsShown[playerid] != 1) { // MapIconsShown[playerid] = 1; for(new i = 0; i < sizeof(BizzInfo); i++) { //SetPlayerMapIcon(playerid,i + 1,BizzInfo[i][bEntranceX],BizzInfo[i][bEntranceY],BizzInfo[i][bEntranceZ],36,COLOR_LIGHTRED); } for(new i = 0; i < sizeof(SBizzInfo); i++) { //SetPlayerMapIcon(playerid,i + 20,SBizzInfo[i][sbEntranceX],SBizzInfo[i][sbEntranceY],SBizzInfo[i][sbEntranceZ],36,COLOR_LIGHTRED); } }
As you can see, i commented out the Markers, but it still doesn`t work
Can you tell me ANY command which can be (mis)used to detect players on the minimap/map/radar ?
Like SetPlayerMapIcon, so that i can search for it....