-
Posts
397 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Avvi
-
[Free] Operator - Multiboxing & Multiboxing Assistance Plugin
Avvi commented on Yayybo's file in Plugins - TBC
- 15 comments
-
- multiboxing
- party
-
(and 1 more)
Tagged with:
-
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
Avvi replied to aqualian's topic in Profiles and Requests
I don't know the answer to that question :/ -
Bot stop/close when got special Whisp Plugin Request
Avvi replied to aqualian's topic in Profiles and Requests
Ok, that will work with my plugin if you know the names of the GMs. -
Bot stop/close when got special Whisp Plugin Request
Avvi replied to aqualian's topic in Profiles and Requests
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
Avvi replied to aqualian's topic in Profiles and Requests
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
Avvi replied to aqualian's topic in Profiles and Requests
I've finished adding this to the RoboAlert plugin. -
Bot stop/close when got special Whisp Plugin Request
Avvi replied to aqualian's topic in Profiles and Requests
Ok, I will add it to RoboAlert -
Bot stop/close when got special Whisp Plugin Request
Avvi replied to aqualian's topic in Profiles and Requests
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? -
Sorry to say, but you just had really bad timing. Most people on this forum have been botting for many years and haven't got caught until this most recent ban-wave.
-
Bot stop/close when got special Whisp Plugin Request
Avvi replied to aqualian's topic in Profiles and Requests
For stopping the bot, do you want it to fully exit WRobot, or do you want it to Pause WRobot? -
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
Avvi replied to aqualian's topic in Profiles and Requests
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
Avvi replied to aqualian's topic in Profiles and Requests
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. -
-
-
-
-
-
-
-
Ramdisk to Improve WRobot Performance on Slower Systems
Avvi replied to eternalbot's topic in General discussion
For anyone that is unfamiliar with ramdisk configuration, can you provide some steps or a URL that describes the process? -
A few options that include reacting to messages in game: Create a notification (Phone notification/Email/Sound) Respond with a message: If you want to just ignore people who whisper you:
-
Unfortunately, ALL system processes are suspended when the system goes into sleep mode (with a few exceptions for operating system operations).
-
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#.