Hello,
First of - great work here! Thank you, really.
But I was thinking, that instead of running same route over and over when you die, couldn't you just in the function where it's checking which graveyard it is at, select a new random profile. This would make it change profiles while it is actually running, and will make it way less bot-like. I'm not too far into this kind of scripting, but it doesn't seem like its doing this already (if it is, sorry :-).)
Ok, looked a bit further into it;
Code:
Case 5 ; unghost = alive again = this is supposed (?) to trigger only in BG
= GetRandomFile(GetBGProfileDir()) ; JUST FOR TESTING:: DELETE AFTERWARDS
add2log("STATUS: UNGHOST - ALIVE AGAIN",2)
= GetWhichGY()
If <> false Then ; Alterac
_XMLExecNode(, "/FloProfile/" & )
EndIf
AntiAfkWithAutoAttack()
Found this under the bot() function, and seems to be where it executes a new route. So, if I throw in a BgBeforeStart() before this stuff(but still in "Case 5"), will that do the trick?
Code:
Func BgBeforeStart()
= GetRandomFile(GetBGProfileDir()) ; new Random XML-File is selected
_XMLExecNode(, "/FloProfile/BeforeStart")
EndFunc
Second edit: OK - I need to learn2read. It is already done by Flos
I find it weird that it dont change between the profiles when it dies still, then, though. Just never mind this post ^_^