Everything posted by Avvi
- [Free] Operator - Multiboxing & Multiboxing Assistance Plugin
-
Remove wow event
Hi there. is this coming from a plugin or quester code? Not sure where you put this.
-
Bot stop/close when got special Whisp Plugin Request
I don't know the answer to that question :/
-
Bot stop/close when got special Whisp Plugin Request
Ok, that will work with my plugin if you know the names of the GMs.
-
Bot stop/close when got special Whisp Plugin Request
My plugin should work for that - you would need to know the Names of the GM's if you want to specifically only exit on GM whispers, though.
-
Bot stop/close when got special Whisp Plugin Request
No. The whisper alert will only go off for people in the list. I will not be adding it to work the way you specified in the above post. The code is written in such a way that if I were to do it in the above way, it would mud up the code. Is this necessary for you? It seems that originally you only cared about exiting the game for a subset of users and didn't specify noise/email/phone notification/discord as being important.
-
Bot stop/close when got special Whisp Plugin Request
I've finished adding this to the RoboAlert plugin.
-
Bot stop/close when got special Whisp Plugin Request
Ok, I will add it to RoboAlert
-
Bot stop/close when got special Whisp Plugin Request
Hey there, i've added this functionality to my RoboXecute plugin. It does not automatically exit the game, but it will send messages to you into Discord. Once you see the message from the player, you can then exit the game by running /exit command into discord. Does this fit your requirement, or would you still rather it automatically exit the game for you?
- Avoid ban or minimize risk
-
Bot stop/close when got special Whisp Plugin Request
For stopping the bot, do you want it to fully exit WRobot, or do you want it to Pause WRobot?
-
Utterly frustrated
The bot attacking multiple enemies at the same time to die. : There is a setting that can help with that. Under General Settings "Max units near target: x" Try setting the value to 0. Instead of sitting down and eating food / drinking mana he rushes on into the next mobs only to die (again). This is likely a fight class issue, but I think you can try setting your minimum hp/mana to a higher value (like 65%). It's not a great workaround, but it solved my problem with it. You'll end up buying more water/food this way though, so that's a con. The bot not selling things or having trouble Can you expand on this more. Is it never selling, or is it only selling some items? Out of everything you said, what are some ideas that you think would help improve the bot as a whole? Do you think the bot needs more support/features from plugins, or are you mostly frustrated with the things you listed above, and the other issues you've run across?
-
Bot stop/close when got special Whisp Plugin Request
Hey there. I will be adding soon. Been busy with work life so I will likely add it over the weekend , but Hopefully sooner.
-
Bot stop/close when got special Whisp Plugin Request
My plugin does the pause after a whisper occurs. I can add a feature so that it only pauses for certain players if you'd like.
-
[FREE] Avvi's AutoIgnore
-
[FREE] Avvi's AutoIgnore
Addon was added in the description. I will add the delay option soon. For now, you can remove line 176 in the plugin file. calculateRandomSleepByRange(1000, 4000);
-
[FREE] Avvi's AutoIgnore
-
[FREE] Avvi's AutoIgnore
-
[FREE] Avvi's AutoIgnore
-
[FREE] Avvi's AutoIgnore
-
[FREE] Avvi's AutoIgnore
Hi there. Is there a specific feature that isn't working or is everything just not working? I haven't tested this o. Wotlk, but I will install if nothing works. Thanks!
-
Ramdisk to Improve WRobot Performance on Slower Systems
For anyone that is unfamiliar with ramdisk configuration, can you provide some steps or a URL that describes the process?
- How to reply?
-
Wow
Unfortunately, ALL system processes are suspended when the system goes into sleep mode (with a few exceptions for operating system operations).
-
Macro insert random delay
private void foo() { var tmp = calculateRandomByRange(1000, 3000); //sleep for random between 1000 and 3000 Thread.sleep(tmp); // run macros macro(): } private int calculateRandomByRange(int lower, int upper) { Random r = new Random(); return (r.Next(lower, upper)); } Here is how you do a random sleep between 1000 and 3000 milliseconds in C#.