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

Using Mount Skill

Status
Not open for further replies.

tdaves

New Member
Joined
Apr 23, 2013
Messages
16
Reaction score
0
I have been digging through the forums and the API wiki. I cannot seem to figure out how to trigger my mount skills. The skills I am trying to trigger are the mounts "Run! (Rank 1)" or the "Dreaming Donkey (Rank 4)". Any help will be appreciated.
 
as well as your skill
Code:
UseSkill("NameSkill");
 
I tryed:

Code:
 if (skillCooldown("Run!"))
                {
                    UseSkill("Run!");
                }

But I get the following error when I try to compile:

3:52:06 PM: c:\*******\HorseRunner.cs(52,21) : error CS0120: An object reference is required for the non-static field, method, or property 'ArcheBuddy.Bot.Classes.Core.skillCooldown(string)'
3:52:06 PM: c:\Users\Timmy\Desktop\ArchBuddy\Plugins\HorseRunner\HorseRunner.cs(54,21) : error CS0120: An object reference is required for the non-static field, method, or property 'ArcheBuddy.Bot.Classes.Core.UseSkill(string)'
 
method skillCooldown() return long value, but not bool.
Code:
if (skillCooldown("Run!") == 0)
                {
                    UseSkill("Run!");
                }
 
Thanks for the help. I found I was putting it in a static method instead of a public. I have it working now.

I have another question. I am trying to get my character to mount my horse. I tried UseSkill("Mount pet."); but nothing happens. I have not been able to find how to use a creature skill like you would a doodad. Any suggestions?
 
Yes, I have been able to summon the mount. I can't seem to sit on it.
 
Status
Not open for further replies.
Back
Top