Problem with showplayeronmap - 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)
+--- Thread: Problem with showplayeronmap (
/showthread.php?tid=348395)
Problem with showplayermarkers -
carbonzero - 05.06.2012
I have a problem with Showplayermarkers
Код:
public OnGameModeInit() // Do not add vehicles Above the next lines. - CuervO
{
UsePlayerPedAnims(1);
ShowPlayerMarkers(1);
LoadCar();
new string2[64];
for(new h = 1; h < sizeof(CarInfo); h++)
{
format(string2, sizeof(string2), "LARP/Vehicles/%d.ini",h);
if(dini_Exists(string2))
{
ownedcar[h] = AddStaticVehicleEx(CarInfo[h][cModel],CarInfo[h][cLocationx],CarInfo[h][cLocationy],CarInfo[h][cLocationz]+1.0,CarInfo[h][cAngle],CarInfo[h][cColorOne],CarInfo[h][cColorTwo],60000);
if(CarInfo[h][cPaintjob] != 999)
{
ChangeVehiclePaintjob(h, CarInfo[h][cPaintjob]);
}
SetVehicleVirtualWorld(h, CarInfo[h][cVirWorld]);
SetVehicleModifications(h);
}
I added "ShowPlayerMarkers(2);" and (1) but on mini-map don't apear players
I use Gm Raven's RolePlay 4.3
Re: Problem with showplayeronmap -
carbonzero - 05.06.2012
Up PLZ
Re: Problem with showplayeronmap -
Sandiel - 05.06.2012
Just use SetPlayerColor, it will auto-place him in the map in that color.
Re: Problem with showplayeronmap -
carbonzero - 05.06.2012
Don't work
Re: Problem with showplayeronmap -
Firo - 05.06.2012
You want people to see each other on mini map
YES/NO?
Re: Problem with showplayeronmap -
carbonzero - 05.06.2012
Yes, I want all players to be on the minimap
Re: Problem with showplayeronmap -
Firo - 05.06.2012
pawn Код:
ShowPlayerMarkers(PLAYER_MARKERS_MODE_GLOBAL);
Use this function OnGameModeInit public.
Glad to help you.
Re: Problem with showplayeronmap -
carbonzero - 05.06.2012
not work

(

Re: Problem with showplayeronmap -
Firo - 05.06.2012
Quote:
Originally Posted by carbonzero
|
After you paste it to there, you removed the Other's?
Re: Problem with showplayeronmap -
carbonzero - 05.06.2012
yes...