FlyFF - Awakebot (Customizable, Support your own server)

03/13/2023 15:48 marjzzz#646
Quote:
Originally Posted by micoh17 View Post
Stopping after 3 tries and can't find the awake no matter what i do
same problem any solution?
03/24/2023 18:09 drvaloche#647
Hi men ,
trying to use this bot on insanity . is this still working ?

setting the "settings.xml" file to <Setting name="ProcessName">Client</Setting>, but no flyff processes found .
Did i do stgh wrong ?
tyvm
06/30/2023 08:21 cyruuusgab#648
Hi does anyone know how to disable the feature "Same awake the last 3 times, stopping the bot"?
09/24/2023 02:01 marivic143#649
can i disable the reversion scroll clicks??
12/18/2023 21:40 DestenyAPT#650
i have been trying it, and it seems like sometimes it doesent register the click, im playing on a server with an /awake window, and almost half the times he hovers the button but the client doesent register the click, anyone can help?
Thank you
03/15/2024 17:49 Wuddäh#651
I adjusted all settings. Still it somehow
cant find the awakes. Can anyone help or have some ideas whats the issue?
03/16/2024 05:25 Insikapol123#652
same problem

bot stopped in 3 times how to fix?
08/26/2024 06:15 alvin.udani#653
even after i check the click awake scroll once its keep on double clicking
10/31/2024 16:18 carljoseph011#654
HOW TO FIX THIS AWAKE NOT FOUND AND AWAKED NOT ACHIEVED?
11/01/2024 10:37 AntiSerum#655
here an updated config for entropia
11/02/2024 11:02 idol856#656
Why is stop on 3attemps of awake?

why its stop on 3 attemps of awakening?
11/25/2024 18:32 mdhelz014#657
Awabot.Core.Exceptions.AwakeningParseException: The awaketext: "Max. MP +" is not a valid awake
at Awabot.Bot.Bot.AwakeningParser.SplitAwakeLines()
at Awabot.Bot.Bot.AwakeningParser.GetCompletedAwakes( )
at Awabot.Bot.Bot.AwakeningRoutine.AwakeningLoopThrea d(List`1 preferredAwakeItemList)

how to fix this?
bot always stop at fp +250 and mp +250 even i didnt set it..
12/04/2024 03:55 rftech23#658
Quote:
Originally Posted by idol856 View Post
Why is stop on 3attemps of awake?

why its stop on 3 attemps of awakening?
You can change the value of 3 on this line to whatever you want and bot wont stop anymore after game returns same awake for 3 times:

if (latestAwakes.Count >= 5)

Here's the original code, source code is available in github. Just compile your own solution.:

private void AwakeningLoopThread(List<AwakeItem> preferredAwakeItemList)
{
Queue<List<Awake>> latestAwakes = new Queue<List<Awake>>();

try
{
LogHelper.AppendLog(_ui, "Bot has started");

Win32.SetForegroundWindow(_botConfig.Process.MainW indowHandle);

AwakeningResolver awakeResolver = new AwakeningResolver(_serverConfig);

while (_isRunning)
{
if (latestAwakes.Count >= 3)
{
// Check if the 3 awakes in the queue are all the same
var firstAwakes = latestAwakes.ElementAt(0);

bool anyNotEqual = false;

for (int i = 1; i < latestAwakes.Count; ++i)
{
var awakes = latestAwakes.ElementAt(i);

bool sameSize = awakes.Count == firstAwakes.Count;

if (!sameSize)
{
anyNotEqual = true;
break;
}
12/29/2024 12:08 N1ight#659
How can i use decimal values in this Project ?
I Had Change but the Type doesnt Match Need to Change from int to other Typ but my knowlege are Not enogh :D

Example 0.5, 1.5 or 2.5

For awakes
12/30/2024 15:44 Flogolo#660
Quote:
Originally Posted by N1ight View Post
How can i use decimal values in this Project ?
I Had Change but the Type doesnt Match Need to Change from int to other Typ but my knowlege are Not enogh :D

Example 0.5, 1.5 or 2.5

For awakes
i didnt look much long into it, but looks like the times can be changed in "AwakeningRoutine.cs"