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

[Major HB Tool] Need suggestions - release is getting close!

Danne206

New Member
Joined
Jan 15, 2010
Messages
105
Reaction score
1
Hello!

MODS: Sorry if this is the wrong section, please move it if so.

Since a while back, I've been working on a HB plugin.
What it does: monitoring the status of your characters (more info below) anywhere via a domain, allows you to execute commands anywhere on the site (such as closing wow, restarting hb and so on), relogging if dc'd.

You will only need an account on the website - takes 10 seconds to make (in the future this process will be aviable through the plugin).
No information which can be used by any external source to indentify your character / account will be stored.
Your data is highly secure, each account has an unique salt (30 characters long), and are hashed together with the salt with sha512.
I also have heavy server side protection to deny access from possible ddosers and such.

What I need help with, I need to find out what the community needs:
Character data:
(Rawly converted to readable text directly from my source - when viewed it will be sorted and some will be under "additional information" ? means that it's usually a bool - true / false)
XP left to level
Estimated time left to level
Current target
Durability percentage
Mana percentage
Focus percentage
Rage percentage
RunicPower percentage
Am I in game?
Bags full?
Combat?
GotTarget?
--Target
Dead?

Remote Functions:
(This will in NO way interact with your computer - the plugin will read the ev. commands and
execute them)
Shut down wow
Restart HB
Clear target
Relog on dc - requires you to enter account information, obviously. Optional of course.

Start wow [VIP]
Start HB [VIP]

I need help to know what you people want more, what info? Such as current zone for example. What functions do you want?
Example: Logout after x time has passed, wait y minutes and login to char z.

Sorry for the messy thread - wrote it in a hurry and alot of text is semi copied from the source.
Appreciate your input.

EDIT: Update:
//Nothing specified / true = supported
//False = Work In Process
$AllowedData = array(
"Client",
"Username",
"Password",
"Chat",
"CencuredChatSettings",
"HealthPercent",
"Class",
"Level",
"NextLevelXP",
"IsInGame",
"BagsFull",
"Combat",
"Gold",
"Location",
"Cord_x",
"Cord_y",
"Cord_z",
"TimeStandingStill",
"IsTargetedByPlayer" => false,

/*
* if(TimeStandingStill > Settings.MaxAFKValue)
* Func.Exit(true);
*/
);

//Listed below = code exists
//=> true = usable
//=> false = currently disabled / Work In Process
//NOTE: Parameters are NOT included here
$SupportedRCommands = array(
"LogoutWOW" => true,
"LoginWOW" => true,
"Restart" => true,
"ShutdownC" => true,
"ShutdownB" => true,
"PauseFor_int" => false,
"ReplyTo" => false,
);

Cmon guys, give me more! Alot is in process currently. Appreciate any input, posetive as negative. Try to be constructive though.

Oh, and by the way: excuse the format, just copy pasted it from the source.

EDIT: How remote commands is working currently (since I do NOT want to integrate directly with your computer, many people would cry cause of "security" and others due to their non-forwarded ports).

Online controllpanel -> Remote command -> Server respond to the command -> Server creates an instruction about what to do online (only if the command passes the check of what's possible and allowed) for the bot -> Bot executes the command

Could use a great CSS designer by the way, this is ment to be lightweight - and design is my worst side really :]

Please check the comments for the latest update
 
Last edited:
In complete honesty. There's about 9 of these plug ins. For one (one that I use) is Apox and Wireds IRC bot, and another just like this is Cowdude's CowStats. Now, if you're thinking about having paid access to this to 'remotely start' hb/wow - which can be done over a simple VNC/RDP connection, you're even further from being original. You want to be original and really make this thing shine? iPhone/iPod Touch/iPad, and/or, Android app. Have all of this information push to the iphone (etc). I for one would absolutely pay for this if the information was available on my iphone in an easy to read app. You could probably even get away with putting it up on the iTunes store and really make bank. That's my suggestion, take it or leave it.

P.S. Yes I'm already looking at BuddyProwl 3.
 
Last edited:
In complete honesty. There's about 9 of these plug ins. For one (one that I use) is Apox and Wireds IRC bot, and another just like this is Cowdude's CowStats. Now, if you're thinking about having paid access to this to 'remotely start' hb/wow - which can be done over a simple VNC/RDP connection, you're even further from being original. You want to be original and really make this thing shine? iPhone/iPod Touch/iPad, and/or, Android app. Have all of this information push to the iphone (etc). I for one would absolutely pay for this if the information was available on my iphone in an easy to read app. You could probably even get away with putting it up on the iTunes store and really make bank. That's my suggestion, take it or leave it.

P.S. Yes I'm already looking at BuddyProwl 3.
I truly appreciate your input! Nope, everything will be free, I will accept donations however to pay the hosting bill - but I do not expect any really hehe.
Hmm, I might be able to fix the iPod/iPhone part though.
I'll take a look :)
 
I would like to see an app that gives you the map coordinates of your character or that tells me how long I have been in a 20 yard radius. This way I could easily see if I am stuck.
 
I am not sure if there is an addon or app for this but here goes, why not create an app for any whispers you recieve you get the message sent to your iphone as i have had tonnes of whispers but never get to see them as HB doesn't record whispers.
 
I am not sure if there is an addon or app for this but here goes, why not create an app for any whispers you recieve you get the message sent to your iphone as i have had tonnes of whispers but never get to see them as HB doesn't record whispers.

...and a way to reply to whispers

or anytime someone nearby /s or emotes.

what about detecting if a player has you targeted

? just some ideas
 
place a little ad banner on this remote control website to get some bucks for the work - but i thin the "paid access" won't work - like the other guys already said - there are working plugins for free
 
For recording whispers this can be done with WIM (wow instant messenger) it will open a dialog box for every whisper you get I personally use this on my bot character, although not on others as it annoys me during play.
 
For recording whispers this can be done with WIM (wow instant messenger) it will open a dialog box for every whisper you get I personally use this on my bot character, although not on others as it annoys me during play.
Thanks for the replies! I will most likely be able to include most of it.
Also, I have no idea where you got that pay idea from, cause it will always be free. However, a small ad at the bottom or similar might not be impossible, but that doesn't affect you guys anyways :)
 
//Nothing specified / true = supported
//False = Work In Process
$AllowedData = array(
"Client",
"Username",
"Password",
"Chat",
"CencuredChatSettings",
"HealthPercent",
"Class",
"Level",
"NextLevelXP",
"IsInGame",
"BagsFull",
"Combat",
"Gold",
"Location",
"Cord_x",
"Cord_y",
"Cord_z",
"TimeStandingStill",
"IsTargetedByPlayer" => false,

/*
* if(TimeStandingStill > Settings.MaxAFKValue)
* Func.Exit(true);
*/
);

//Listed below = code exists
//=> true = usable
//=> false = currently disabled / Work In Process
//NOTE: Parameters are NOT included here
$SupportedRCommands = array(
"LogoutWOW" => true,
"LoginWOW" => true,
"Restart" => true,
"ShutdownC" => true,
"ShutdownB" => true,
"PauseFor_int" => false,
"ReplyTo" => false,
);

Cmon guys, give me more! Alot is in process currently. Appreciate any input, posetive as negative. Try to be constructive though.

Oh, and by the way: excuse the format, just copy pasted it from the source.

EDIT: How remote commands is working currently (since I do NOT want to integrate directly with your computer, many people would cry cause of "security" and others due to their non-forwarded ports).

Online controllpanel -> Remote command -> Server respond to the command -> Server creates an instruction about what to do online (only if the command passes the check of what's possible and allowed) for the bot -> Bot executes the command

Could use a great CSS designer by the way, this is ment to be lightweight - and design is my worst side really :]
 
Last edited:
//Nothing specified / true = supported
//False = Work In Process
$AllowedData = array(
"Client",
"Username",
"Password",
"Chat",
"CencuredChatSettings",
"HealthPercent",
"Class",
"Level",
"NextLevelXP",
"IsInGame",
"BagsFull",
"Combat",
"Gold",
"Location",
"Cord_x",
"Cord_y",
"Cord_z",
"TimeStandingStill",
"IsTargetedByPlayer" => false,

/*
* if(TimeStandingStill > Settings.MaxAFKValue)
* Func.Exit(true);
*/
);

//Listed below = code exists
//=> true = usable
//=> false = currently disabled / Work In Process
//NOTE: Parameters are NOT included here
$SupportedRCommands = array(
"LogoutWOW" => true,
"LoginWOW" => true,
"Restart" => true,
"ShutdownC" => true,
"ShutdownB" => true,
"PauseFor_int" => false,
"ReplyTo" => false,
);

Cmon guys, give me more! Alot is in process currently. Appreciate any input, posetive as negative. Try to be constructive though.

Oh, and by the way: excuse the format, just copy pasted it from the source.

EDIT: How remote commands is working currently (since I do NOT want to integrate directly with your computer, many people would cry cause of "security" and others due to their non-forwarded ports).

Online controllpanel -> Remote command -> Server respond to the command -> Server creates an instruction about what to do online (only if the command passes the check of what's possible and allowed) for the bot -> Bot executes the command

Could use a great CSS designer by the way, this is ment to be lightweight - and design is my worst side really :]

I am not 100% sure how your thing works. A nice gui (on the site) user friendly would be nice. So instead of us having to imput commands instead we can click buttons such as "Start Wow", "Loggin", "Begin Botting" or what ever. if that would work that'd be awesome.
 
I am not 100% sure how your thing works. A nice gui (on the site) user friendly would be nice. So instead of us having to imput commands instead we can click buttons such as "Start Wow", "Loggin", "Begin Botting" or what ever. if that would work that'd be awesome.

Yup, exactly my plan! :D
I'm sorry if I was confusing, this is just raw code with what it's currently "supporting".
There's always people who try to mess with code to get oppertunities / destroy for others and such - checking the value from the button against the $SupportedRCommands to filter out everything that isn't and then filtering/optimizing/using the data provided with the function.

tldr; The user will just see a button - more advanced users however MIGHT (just an idea / dream currently :p ) be able to use commands directly from their panel - when it's been specially activated - of course.
Thanks for your input!
 
Back
Top