SA-MP Forums Archive
Different Coloured Markers? - 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: Different Coloured Markers? (/showthread.php?tid=292716)



Different Coloured Markers? - Ely - 24.10.2011

Hello Peeps Im New To Scripting So Dont Be Meany

I Wanted To Know In Somebody's Server The Owner Uses The Pickup ID: 1559 And The Pickup's Are Yellow Coloured For Him



And When I Put The Pickup ID: 1559 Mine Are Coloured White?



Why Is This And How Do I Make Mine Yellow Coloured? Thanks <3


Re : Different Coloured Markers? - Naruto_Emilio - 24.10.2011

well to delet the yellow markets you will have to put:
pawn Код:
public OnGameModeInit()
{
    DisableInteriorEnterExits();
    return 1;
}
Then add your own using Pickups...

pawn Код:
new tele;
 
public OnGameModeInit()
{
    tele = CreatePickup(model, type, Float:X, Float:Y, Float:Z, Virtualworld)
    return 1;
}
 
public OnPlayerPickUpPickup(playerid, pickupid)
{
    if(pickupid == tele) SetPlayerPos(playerid,x, y, z);
    return 1;
}



Re: Different Coloured Markers? - Babul - 24.10.2011

one recent SAMP update introduced some custom markers, no need to waste your time at using the ugly default one ^^
Код:
19135, EnExMarker1, EnExMarkers, 150, 0
19197, EnExMarker2, EnExMarkers, 150, 2097156
19198, EnExMarker3, EnExMarkers, 150, 2097156
...one of the above 3 markers is close to the yellow default marker, it even is animated AND transparent!
to find all new custom objects, open your "GTA San Andreas/SAMP/" directory, and open the file "SAMP.ide", its a plain textfile, you will see the complete list of new objects.


Re: Different Coloured Markers? - Ely - 24.10.2011

Quote:
Originally Posted by Babul
Посмотреть сообщение
one recent SAMP update introduced some custom markers, no need to waste your time at using the ugly default one ^^
Код:
19135, EnExMarker1, EnExMarkers, 150, 0
19197, EnExMarker2, EnExMarkers, 150, 2097156
19198, EnExMarker3, EnExMarkers, 150, 2097156
...one of the above 3 markers is close to the yellow default marker, it even is animated AND transparent!
to find all new custom objects, open your "GTA San Andreas/SAMP/" directory, and open the file "SAMP.ide", its a plain textfile, you will see the complete list of new objects.
Thankyou So Much The ID 19198 Was What I Wanted Thanks Again - Ellie