SA-MP Forums Archive
[HELP] - a red marker that shows a dialog or something.. - 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: [HELP] - a red marker that shows a dialog or something.. (/showthread.php?tid=426690)



[HELP] - a red marker that shows a dialog or something.. - Riven - 29.03.2013

Hello dudes !

i want to ask if anyone can help me on this. how i can add the red mark somewhere
and also how to add the (if) command for that red mark.

here is the picture of that red mark :



would be so cool if i find out how to make it


Cheers!


Re: [HELP] - a red marker that shows a dialog or something.. - Konstantinos - 29.03.2013

https://sampwiki.blast.hk/wiki/Function:SetPlayerCheckpoint
https://sampwiki.blast.hk/wiki/OnPlayerEnterCheckpoint


Re: [HELP] - a red marker that shows a dialog or something.. - Riven - 29.03.2013

i saw this one already. and when i used it i didn't see it as a small circle . it was really huge and dunno .. i want it small like this .


Re: [HELP] - a red marker that shows a dialog or something.. - SilverKiller - 29.03.2013

At the end of SetPlayerCheckpoint there is a size (the 3.0 in wiki) change it to 2.0 or 1.0.


Re: [HELP] - a red marker that shows a dialog or something.. - MP2 - 29.03.2013

Change the size then? Look on the wiki page.


Re: [HELP] - a red marker that shows a dialog or something.. - Riven - 29.03.2013

Oh , thanks so much you both


Edit : Changed the size to 2.0 , 1.0 and 0.5 and still that huge size..


Re: [HELP] - a red marker that shows a dialog or something.. - Pawnie - 29.03.2013

I used size 3.0 and it's almost like that mate. Try maybe placing it underground? Like bellow the point itself


Re: [HELP] - a red marker that shows a dialog or something.. - Konstantinos - 29.03.2013

Quote:
Originally Posted by Riven
Посмотреть сообщение
Edit : Changed the size to 2.0 , 1.0 and 0.5 and still that huge size..
Make sure it's not SetPlayerRaceCheckpoint, because it will be large.


Re: [HELP] - a red marker that shows a dialog or something.. - Riven - 30.03.2013

Here is my code im using .. it's same as Wiki code!


Код:
public OnPlayerSpawn(playerid)
{
    SetPlayer(playerid, 908.3809,-2618.4063,354.8896,26.4625, 2.0);
    return 1;
}



public OnPlayerEnterCheckpoint(playerid)
{
    GivePlayerMoney(playerid, 1000);
    DisablePlayerCheckpoint(playerid);
    return 1;
}



Re: [HELP] - a red marker that shows a dialog or something.. - Riven - 30.03.2013

Nvm , working well now .

Thanks mates!