Gps gps = new Gps(this);
gps.LoadDataBase(Application.StartupPath + "\\Plugins\\YourPluginName\\YourDB3File.db3"); // rename the path to match the plugin name and file name
while(true)
{
gps.GpsMove("A");
Thread.Sleep(10000);
gps.GpsMove("B");
Thread.Sleep(10000);
}