SA-MP Forums Archive
[HELP] People marker at the little 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] People marker at the little map (/showthread.php?tid=85549)



[HELP] People marker at the little map - baxi - 08.07.2009

I want to see everyones marker on the little map , what need i to do?


Re: [HELP] People marker at the little map - refshal - 08.07.2009

pawn Код:
ShowPlayerMarkers(true);



Re: [HELP] People marker at the little map - baxi - 08.07.2009

Quote:
Originally Posted by еddy
pawn Код:
ShowPlayerMarkers(true);
where need i put it , ongamemodeinit?


Re: [HELP] People marker at the little map - refshal - 08.07.2009

Yeah.


Re: [HELP] People marker at the little map - baxi - 08.07.2009

Quote:
Originally Posted by еddy
pawn Код:
ShowPlayerMarkers(true);
Dont works , Someone other thing?


Re: [HELP] People marker at the little map - refshal - 08.07.2009

Show me your OnGameModeInit. You possilbly did something wrong.


Re: [HELP] People marker at the little map - -Sneaky- - 08.07.2009

Quote:
Originally Posted by еddy
pawn Код:
ShowPlayerMarkers(true);
I don't think true/false work?

Try

pawn Код:
ShowPlayerMarkers(1);



Re: [HELP] People marker at the little map - refshal - 08.07.2009

Quote:
Originally Posted by Sneaky.
I don't think true/false work?
It works for me.


Re: [HELP] People marker at the little map - -Sneaky- - 08.07.2009

Quote:
Originally Posted by еddy
Quote:
Originally Posted by Sneaky.
I don't think true/false work?
It works for me.
Ok I thought you could only do 1/0 anyways @ baxi, you need it like this:

pawn Код:
public OnGameModeInit()
{
  ShowPlayerMarkers(1);
  return 1;
}
Understood?


Re: [HELP] People marker at the little map - baxi - 08.07.2009

Quote:
Originally Posted by Sneaky.
Quote:
Originally Posted by еddy
Quote:
Originally Posted by Sneaky.
I don't think true/false work?
It works for me.
Ok I thought you could only do 1/0 anyways @ baxi, you need it like this:

pawn Код:
public OnGameModeInit()
{
  ShowPlayerMarkers(1);
  return 1;
}
Understood?
Works not