SA-MP Forums Archive
[FilterScript] FGPS - Advanced 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: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] FGPS - Advanced GPS System (/showthread.php?tid=219539)

Pages: 1 2 3


Re: FGPS - Advanced GPS System - Fj0rtizFredde - 01.02.2011

Quote:
Originally Posted by sherlock
View Post
so you go to your chosen location and type /fsave name?
You go to where you want the location to be Example go to LSPD and type /fsave LSPD and it will save it like that in the database and when you select it from the dialog it will navigate you to that point

To everone else: Thanks and keep posting suggestions


Re: FGPS - Advanced GPS System - sherlock - 01.02.2011

Quote:
Originally Posted by Fj0rtizFredde
View Post
You go to where you want the location to be Example go to LSPD and type /fsave LSPD and it will save it like that in the database and when you select it from the dialog it will navigate you to that point

To everone else: Thanks and keep posting suggestions
yeah thats what i meant. Im so gonna use this!


Re: FGPS - Advanced GPS System - ZmaXy - 02.02.2011

Don't work for me


Re: FGPS - Advanced GPS System - TheYoungCapone - 02.02.2011

this is nice


Re: FGPS - Advanced GPS System - ExeC - 02.02.2011

Great job


Re: FGPS - Advanced GPS System - Swiftz - 02.02.2011

Ur genius 100/10


Re: FGPS - Advanced GPS System - TruServe - 02.02.2011

Quote:
Originally Posted by Fj0rtizFredde
View Post
Thanks all for the feedback
I added a new version with /Fedit so you can edit the names ingame
Hey,

I have updated the mirror: http://trueserve.info/dl/FGPS.rar
Also, I've added an archive for old versions: http://trueserve.info/dl/FGPSarchive/


Re: FGPS - Advanced GPS System - roar - 02.02.2011

This is nice! Good job!


Re: FGPS - Advanced GPS System - Gertin - 02.02.2011

I can save the positsions, but when i type /gps and i take "Unity", that arrow dont come :S Whats the problem are ? Where i need to put that SQLite Database Browser . I put it in my server folder. Plz help,

Thanks (Sry for my baf english and im just learning scripting )


Re: FGPS - Advanced GPS System - Fool - 02.02.2011

Can you make it with Y_ini or dini?


Re: FGPS - Advanced GPS System - |_ⒾⓇⓄN_ⒹⓄG_| - 20.09.2011

its really awesome o.o
+rep


Re: FGPS - Advanced GPS System - coolmark1995 - 22.09.2011

Awesome


Re: FGPS - Advanced GPS System - titanak - 24.09.2011

There is something wrong with the
Code:
GetLastID();
it does not get the latest id from database , and sets ID to: 0 , and this sets coords to Farmland lol.
is this fixable and how?

Func:

Code:
stock GetLastID()
{
    new DBResult:qresult, count = 0, Value[128];
	qresult = db_query(GPSDB, "SELECT * FROM `FGPSSystem` ORDER BY `ID` DESC LIMIT 1");
	count = db_num_rows(qresult);
	for(new a=0;a<count;a++)
	{
		if(count <= MAX_LOCATIONS)
		{
 			db_get_field_assoc(qresult, "ID", Value, 5);	gValue[a] = Value[a]+1;
			db_next_row(qresult);
		}
	}
	db_free_result(qresult);
	return 1;
}



Re: FGPS - Advanced GPS System - Kalzifer - 05.10.2011

Don't you mind if I thanslate it into russian?)


Re: FGPS - Advanced GPS System - Emmet_ - 05.10.2011


SetPVarInt(playerid,"YEAH",0);
DeletePVar(playerid,"Spongebob");
DeletePVar(playerid,"Mario");
DeletePVar(playerid,"SpiderPig");
DeletePVar(playerid,"FAIL");


What is this? xD

Good job. Hopefully I'll learn how to get SQLite working and I'll use it.


Re : FGPS - Advanced GPS System - TheBest6 - 05.10.2011

Thanks


Re: FGPS - Advanced GPS System - Jstylezzz - 19.02.2012

Wow awesome dude 5/5, i'm going to use it for sure!


Re: FGPS - Advanced GPS System - SampLoverNo123 - 19.02.2012

Nice, good job


Respuesta: FGPS - Advanced GPS System - Andrei_Daniel - 21.02.2012

VERY GOOD!!!!!!!!! 10/10 !! Good, and you, when tipe the command /fsave you can to load the gps in this moment! you dont need to relog or.... THANKS,


FGPS - Advanced GPS System bug fix - NeaGigel2013 - 01.03.2012

I have found a solution for that bug when you have more than 10 locations and the GPS is leading you to Red County.
It's a bit annoying, but it works.
All you have to do is to open the Positions.db with the SQLite Database Browser, which is provided in the filterscript archive, and modify those ID's after 9.
Instead of 0, 0, 0... put 10, 11, 12...

It worked for me on 0.3d-R2 server and client!
Hope it works for you too!

Great FilterScript, btw!