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

Wanted to make a plugin but...

hasharu

New Member
Joined
Aug 4, 2010
Messages
5
Reaction score
0
I am new to HB and wanted to make a plugin that could activate new profiles (or prioritise hotspots so only after a flag is turned on it would then move to the next hotspot) based on if a certain named mob was killed... I have downloaded alot of the plugins others have made and looked through them but I can't seem to find any information about any of the commands used in the plugin language? if anyone can point me in the right direction or even the name of the language used it would be extremely appreciated ^^
 
Thanks! and is there a way to find out all avalible variables? for instance the name of the mob your character currently has targetted? something like 'if (playertarget.currenttargetname = insertnamehere)' is there a list of the variables used for wow I can look through?
 
Oh thats exactly what I was looking for! thanks both guys, you rock!
 
Hmmm I have figured out how to find out what mob you are targetting:

if (_me.CurrentTarget.Name.Contains("Bleeding Hollow Scryer")) //just a test mob name
{
Log("DING SUCCESS!!!!");
}

but what do I input to the Navigator.MoveTo function to make my character goto a certain hotspot?

I am attempting to make a plugin for instances where it gets to a certain mob (eg a boss) and then is able to decide what hotspot / destination to goto and it will also have the ability to click objects (such as doors / gates) and zone to repair and sell (hopefully)
 
Last edited:
If you can successfully create this plugin i really hope you will publicly release it xD as i would think a lot of people might use it (like myself).
 
Well its not too difficult looking at the script, I just need to know the specific commands and variables and how they work together.
I've used python before and its a very similar language and structure, I normally reverse engineer by looking at other peoples plugins and examples.
I'll definately release it as I go along, first being a simple plugin for just one instance then hopefully make it useable for all instances ^^
 
I highly suggest you pick up a book on C# (it's a widely used, standardized programming language)

Most of the things you're asking are within the 'basics' of the language.
 
Back
Top