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

How to get onto a mount

Poopiedoopie

New Member
Joined
Sep 24, 2014
Messages
117
Reaction score
3
Im using the followin

PHP:
Item item = me.getInvItem("Black Donkey");
                
item.UseItem();

Thread.Sleep(1000);

how do i get a reference to the mount i summoned ? and better yet how do i get onto my mount ?
 
Code:
UseItem("Black Donkey");
Thread.Sleep(2000);
var m = getMount();
if (m != null)
  SitToMount();
 
Code:
UseItem("Black Donkey");
Thread.Sleep(2000);
var m = getMount();
if (m != null)
  SitToMount();

Thank you, do you perhaps by any chance now how to talk to a npc (gold trader) and sell your tradepack? and get a list of npc around you
 
Will this automatically select the gold trader ?
This will automatically come to trader and sell him tradepack for gold.
 
Code:
UseItem("Black Donkey");
Thread.Sleep(2000);
var m = getMount();
if (m != null)
  SitToMount();

for some reason this isn't working on mine, I changed "Black Donkey" for
UseItem("Gray Lilyut Horse");
Thread.Sleep(2000);
var m = getMount();
if (m != null)
SitToMount();

it just doesn't do anything or spawn the horse

edit: same script running a few hours later, is summoning horse again, but this keeps happening randomly
 
Last edited:
Back
Top