Different Coloured Markers?
#1

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
Reply
#2

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;
}
Reply
#3

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.
Reply
#4

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
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)