What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Mount leveling plugin?

CalifRHCP

Member
Joined
Jan 15, 2010
Messages
439
Reaction score
3
Wondering if anyone has one they'd be alright sharing. Nothing fancy I guess just looking for something that will run around on the mount so I can get that passive experience. Figure if im afking for labor may as well get something else out of it too.
 
Wondering if anyone has one they'd be alright sharing. Nothing fancy I guess just looking for something that will run around on the mount so I can get that passive experience. Figure if im afking for labor may as well get something else out of it too.

Open gps editor, make a new file then run gps plugin. Enable auto path and just run all across the continent or something. In the gps editor name the first point "Start" and the other "End". Then just make something to make it move.

Code:
Gps gps = new Gps(this);
gps.LoadDataBase(Application.StartupPath + "\\plugins\\SomeFolder\\myfile.db3");

while (true)
{
   gps.GpsMove("Start");
   gps.GpsMove("End");
}
 
Mm yea I thought about using something like that but I was concerned about the mount dying or somehow despawning and having no way in the plugin to resummon/res it.
 
Mm yea I thought about using something like that but I was concerned about the mount dying or somehow despawning and having no way in the plugin to resummon/res it.

There's plenty of examples for everything you need already on the forums. Use gps.onGpsPreMove to check if mount isn't summoned and pause movement and summon it if you need to.
 
Back
Top