a small Question. - 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: a small Question. (
/showthread.php?tid=355331)
a small Question. -
Gangster-rocks - 29.06.2012
How can i create point shows for all players.
Please help me.
Re: a small Question. -
Gangster-rocks - 29.06.2012
Help i need help +REP
Re: a small Question. -
Smokkr - 29.06.2012
What poin??Mapicon or what?
Re: a small Question. -
sleepysnowflake - 29.06.2012
Could you please be more explicit?
Re: a small Question. -
Gangster-rocks - 29.06.2012
the red Marker i can add it in my Pos i know how to make some thing spawn near me so that one fine but how to create the red marker.
Re: a small Question. -
[A]ndrei - 29.06.2012
Ohhhhhhhhh ok goto MTA then create a marker unless you have a different way of scripting it...
EDIT: Goto MTA press f then press the marker sign at the left bellow of the screen then put the marker where you want...
Re: a small Question. -
Gangster-rocks - 29.06.2012
Not like that i know this thats easy i wanna know how to make it show to all players.
Re: a small Question. -
[A]ndrei - 29.06.2012
stand by ill try to figure it out...
EDIT: Here this is a map icon so they can see the icon...
pawn Код:
public OnPlayerConnect( playerid )
{
// This Is A example
SetPlayerMapIcon( playerid, 12, 2204.9468, 1986.2877, 16.7380, 52, 0, MAPICON_LOCAL );//over here is the coordinates...
EDIT:2 this is a walk in marker...
pawn Код:
public OnPlayerSpawn(playerid)
{
SetPlayerCheckpoint(playerid,X,Y,Z,CHECKPOINTSIZE);
}
public OnPlayerEnterCheckpoint(playerid)
{
DisablePlayerCheckpoint(playerid);
return 1;
}
+rep