Quote:
|
No issues with running GWA2 on my end. Must be an issue on your end.
|
It definitely is an issue on my end.
Quote:
|
Perhaps using an odd version of AutoIt?
|
Do you mean 'old' version or did you really mean 'odd'?
Addressing the case if the AutoIt version is 'old':
I am using the same one that has always been installed.
I could try to update it to the newest version though and see what happens.
Quote:
|
I found that a lot of the bots I used to run had to have some functions re-written to feature all Local calls (especially in movement and agent detection functions) or it would error.
|
I am actually am not running any bots. We are not getting past the Initialize()
function located in the GWA2 file. The error occurs before any of my code runs.
( I have traced the code to the point shown in the original post. reprinted here
for convenience )
Code:
$mBasePointer = MemoryRead(GetScannedAddress('ScanBasePointer', 8)) ;
It is the MemoryRead() function that is causing an error.
or the:
Code:
;~ Description: Internal use only.
Func GetScannedAddress($aLabel, $aOffset)
Return MemoryRead(GetLabelInfo($aLabel) + 8) - MemoryRead(GetLabelInfo($aLabel) + 4) + $aOffset
EndFunc ;==>GetScannedAddress
Maybe what Return returns is bad.