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
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: