Quote:
Originally Posted by lemoutondu10
Are there some faction of eotn title points bot?
|
the vaettir bot collects norn points.
Quote:
Originally Posted by Edgrala
Thanks guys for your replies :)
Does any of you mind to explain me what his the purpose of the GWA2 ? Where to have it (an update one as @ [Only registered and activated users can see links. Click Here To Register...] recommended) and how to use it ?
(Since i'm a passiv user that just extract and launch bots and want to know just a bit better, I have others bots that "don't work" but maybe solve this GWA2 problem should fix it ; like the rollerbeettle one)
|
from my understanding:
- you basically have three au3 files
- first, you have GWA2 which is a highlevel framework which provides highlevel functions to control the guild wars client
- second, there is a GWA2_Headers file, separated from GWA2. it contains hard-coded values which GWA2 needs to work. guild wars updates may change internal adresses etc, so that headers file needs updating as well.
- finally, a bot file which may have a single routine/purpose to farm/bot/whatever. the creator used GWA2 functions in this file to program the bots' behavior on a very high level (easy-to-read)
- normally you put all three files in the same directory, but you can check the idea of the author in the bot file:
Code:
#include "GWA2_Headers.au3"
#include "GWA2.au3"
these lines are to be found in most bots and say that the logic of the files GWA2_Headers.au3 and GWA2.au3 is imported when this bot script is started. since it doesnt state any other path like "GWAfiles/GWA2.au3" (the GWA2 file is supposed to be in the directory GWAfiles) or "../GWA2.au3" (the GWA2 file is supposed to be in the directory above the folder this script is), it asks for GWA2 and the header file to be
in the same directory as the bot script.