SA-MP Forums Archive
Help! Players on radar (mini-map).. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Help! Players on radar (mini-map).. (/showthread.php?tid=217290)



Help! Players on radar (mini-map).. - GeonMake - 27.01.2011

Help me please.. how do to see players on radar (mini-map)
Help me please! thanks.
Excuse me Roman or English using ****** Translate


Re: Help! Players on radar (mini-map).. - Grim_ - 27.01.2011

You will need to use SetPlayeMarkers function.

https://sampwiki.blast.hk/wiki/ShowPlayerMarkers


Re: Help! Players on radar (mini-map).. - GeonMake - 27.01.2011

Quote:
Originally Posted by Grim_
Посмотреть сообщение
You will need to use SetPlayeMarkers function.

https://sampwiki.blast.hk/wiki/ShowPlayerMarkers
I did that but nothing ..


Re: Help! Players on radar (mini-map).. - Grim_ - 27.01.2011

Make sure you are using the appropriate mode to display the markers. Currently, there are three modes to choose from:

0. Off - Disables markers all together
1. Global - Shows everyone's markers to each player, regardless of position
2. Streamed - Shows only player's markers who are within your streamed area

An example of setting global markers would be like so:
pawn Код:
ShowPlayerMarkers( 1 );
Also make sure you are placing the function under the OnGameModeInit callback.


Re: Help! Players on radar (mini-map).. - GeonMake - 27.01.2011

Quote:
Originally Posted by Grim_
Посмотреть сообщение
Make sure you are using the appropriate mode to display the markers. Currently, there are three modes to choose from:

0. Off - Disables markers all together
1. Global - Shows everyone's markers to each player, regardless of position
2. Streamed - Shows only player's markers who are within your streamed area

An example of setting global markers would be like so:
pawn Код:
ShowPlayerMarkers( 1 );
Also make sure you are placing the function under the OnGameModeInit callback.
but nothing so I put


Re: Help! Players on radar (mini-map).. - Grim_ - 27.01.2011

You must be doing something wrong, or missing the whole point of what I'm trying to explain here. Please provide us with your OnGameModeInit callback.