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

Stop and dismount...

swiny

New Member
Joined
Dec 19, 2010
Messages
517
Reaction score
73
Override Stop and dismount... function?

just wondering if i could override the "stop and dismount" function
if so where.


id like it instead of stopping. dismounting.
to do something else?

any info would be helpful.

thanks!
 
Last edited:
You could try to write a plugin that Dismounts like this:

Code:
public override void Pulse()
{
  if (Me.Mounted && [B][COLOR=red]BotWantedToDismountButCant[/COLOR][/B])
     Lua.DoString("Dismount()"); 
}
But I don't know how to get this Event triggered: the Bot tried to dismount but he can't
or HB writes to the Log: stop and dismount...
The Botfunction Mount.Dismount(); seems to be broken, in my opinion.

If I had the Infos, how to get the Event: "the Bot has problems with dismounting" or "The Bot writes in the Log: stop and dismount ...",
I could write a dismounterplugin in 5 Minutes. :(
 
Last edited:
ive already got a function to override the function just need pritty much know when to fire it, basicly before it fires stop and dismount.

Atm im using
public override bool NeedCombatBuffs
public override void CombatBuff()
 
Back
Top