SA-MP Forums Archive
GPS System - 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: GPS System (/showthread.php?tid=389433)



GPS System - Patrick - 02.11.2012

Anyone can give me GPS System Filterscript? because its really hard to find one i found 1 but it bugs my checkpoint can anyone post a list of GPS system "Players Guide Where To Go" Pls Help

EG
SupaSave
that gives u arrow where to go direction to super save

HELP!


Re: GPS System - ToiletDuck - 02.11.2012

https://sampforum.blast.hk/showthread.php?tid=219539 try this


Re: GPS System - Patrick - 02.11.2012

thats what i tried and removes all my checkpoints to rob


Re: GPS System - ToiletDuck - 02.11.2012

Then why don't try to make your own GPS? such is
pawn Код:
cmd:guide(playerid,params[])
{
ShowPlayerDialog(playerid,DIALOG_GUIDE1,DIALOG_STYLE_LIST,"Line1\nLine2\nLine3","Choose","Cancel"
}
return1;
}

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == DIALOG_GUIDE1) {//Guide1
       
if(response)
{
if(listitem == 1)
{
SetPlayerCheckpoint(playerid, z,y,z, 3);
SendClientMessage(playerid, "You've choose the Guide1, You can see the Checkpoints on your Radar or Map");             
else if(listitem == 2)
{
SetPlayerCheckpoint(playerid, z,y,z, 3);
SendClientMessage(playerid, "You've choose the Guide1, You can see the Checkpoints on your Radar or Map");             
else if(listitem == 3)
SetPlayerCheckpoint(playerid, z,y,z, 3);
SendClientMessage(playerid, "You've choose the Guide1, You can see the Checkpoints on your Radar or Map");             
}
}
return 0;
}



Re: GPS System - ToiletDuck - 02.11.2012

*Correction*
pawn Код:
SendClientMessage(playerid,0xADD8E6FF, "You've choose the Guide1, You can see the Checkpoints on your Radar or Map");



Re: GPS System - MarkoN - 02.11.2012

there is an edit button.... and dont forget to define the dialog
Код:
#define DIALOG_GUIDE1 1,2,3,4
pick a number that isnt used by any other dialog or it will cause bugs


Re: GPS System - ToiletDuck - 02.11.2012

Quote:
Originally Posted by MarkoN
Посмотреть сообщение
there is an edit button.... and dont forget to define the dialog
Код:
#define DIALOG_GUIDE1 1,2,3,4
pick a number that isnt used by any other dialog or it will cause lags
Oh, yea thanks i forgot that Lawll