GW Working Bots 2019!

10/28/2019 13:07 lemoutondu10#1546
ok thanks oneshout :)
10/28/2019 20:04 rmgrish#1547
is there a working mount qinkai farm?
10/28/2019 23:31 gluipertje#1548
how do i run the bot, when i download it, i cannot start anything up? do i need some kind of bot client?
10/29/2019 00:26 Sky828#1549
Quote:
Originally Posted by n0futur3 View Post
Scan through all agents via GetMaxAgents(), then check each one with DllStructGetData($agent, "PlayerNumber") for the Model ID
Thanks for the fast reply. Do you mind showing me how I would write that out?
Also if it's easier to target by enemy level or unique name that would work for me too.
10/29/2019 03:18 oneshout#1550
Quote:
Originally Posted by rmgrish View Post
is there a working mount qinkai farm?
Yes,

1/ use search function :
[Only registered and activated users can see links. Click Here To Register...]

2/ you'll find [Only registered and activated users can see links. Click Here To Register...]
3/ update bot with latest GWA2 + HEADERS
4/ Done ;)
10/29/2019 05:09 Backe0112#1551
Quote:
Originally Posted by gluipertje View Post
how do i run the bot, when i download it, i cannot start anything up? do i need some kind of bot client?
[Only registered and activated users can see links. Click Here To Register...]
Install. Open bot with that. Enjoy.
10/29/2019 06:48 oneshout#1552
Quote:
Originally Posted by Backe0112 View Post
[Only registered and activated users can see links. Click Here To Register...]
Install. Open bot with that. Enjoy.
[Only registered and activated users can see links. Click Here To Register...] can be a good alternative too ;)
10/29/2019 11:27 honigkuchenpferd2#1553
Hello,

I've updated the Mount Qinkai Luxon Farm Bot.
10/30/2019 09:22 shejesa#1554
Is it possible to farm raptors solo, with a shadow form build?
10/30/2019 12:37 n0futur3#1555
Quote:
Originally Posted by Sky828 View Post
Thanks for the fast reply. Do you mind showing me how I would write that out?
Also if it's easier to target by enemy level or unique name that would work for me too.
Something like this, not tested
Code:
Func TargetEnemyX()
    For $i = 0 To GetMaxAgents()
        Local $agent = GetAgentByID($i)
        If DllStructGetData($agent, "PlayerNumber") = EnemyXModelID Then
            ChangeTarget($agent)
        EndIf
    Next
EndFunc
10/30/2019 15:36 Sky828#1556
Quote:
Originally Posted by n0futur3 View Post
Something like this, not tested
Code:
Func TargetEnemyX()
    For $i = 0 To GetMaxAgents()
        Local $agent = GetAgentByID($i)
        If DllStructGetData($agent, "PlayerNumber") = EnemyXModelID Then
            ChangeTarget($agent)
        EndIf
    Next
EndFunc
Many thanks!
Could you also make it target the closest enemy (of the predefined model ID)?
It currently targets the enemy furthest away.
Either target the closest enemy to me, or closest to a set of coordinates would work.

You've been a big help mate. Would you recommend any guide to learn this kind of stuff?
I'll send an armbrace your way if you want to pm me your ign ;)
10/30/2019 16:36 n0futur3#1557
Quote:
Originally Posted by Sky828 View Post
Many thanks!
Could you also make it target the closest enemy (of the predefined model ID)?
It currently targets the enemy furthest away.
Either target the closest enemy to me, or closest to a set of coordinates would work.

You've been a big help mate. Would you recommend any guide to learn this kind of stuff?
I'll send an armbrace your way if you want to pm me your ign ;)
Code:
Func TargetEnemyX()
    Local $closest = 0
    For $i = 0 To GetMaxAgents()
        Local $agent = GetAgentByID($i)
        If DllStructGetData($agent, "PlayerNumber") = EnemyXModelID Then
            If $closest = 0 Then
                $closest = $agent
            Else
                If GetDistance(GetAgentByID(-2), $agent) < GetDistance(GetAgentByID(-2), $closest) Then
                    $closest = $agent
            EndIf
        EndIf
    Next
    ChangeTarget($closest)
EndFunc
There isn't a guide or something like that, the most is just basic programming stuff. Look at the existing bots, learn the api. The most part is just learning by doing.
10/30/2019 20:04 Sky828#1558
Quote:
Originally Posted by n0futur3 View Post
Code:
Func TargetEnemyX()
    Local $closest = 0
    For $i = 0 To GetMaxAgents()
        Local $agent = GetAgentByID($i)
        If DllStructGetData($agent, "PlayerNumber") = EnemyXModelID Then
            If $closest = 0 Then
                $closest = $agent
            Else
                If GetDistance(GetAgentByID(-2), $agent) < GetDistance(GetAgentByID(-2), $closest) Then
                    $closest = $agent
            EndIf
        EndIf
    Next
    ChangeTarget($closest)
EndFunc
There isn't a guide or something like that, the most is just basic programming stuff. Look at the existing bots, learn the api. The most part is just learning by doing.
Works like a charm thanks. One last thing to ask of you I promise.
Now the UseSkill() function doesn't work as intented. I've tried a few ways such as UseSkill(1) and UseSkill(1, -1) but I can't find any that successfully 'target' the already targeted enemy :(
11/01/2019 16:44 oneshout#1559
Shard Of Oor BDS bot by Underavelvetmoon and updated by NiliyaFlamme / Oneshout

Skin to farm : Bone Dragon Staff
[Only registered and activated users can see links. Click Here To Register...]

Update :
Quote:
- GWA2 updated for the good PerformAction on DropBundle function
- If "Use Légion stone" check, it's only for lvl 3 (don't need to spend points for 2 easy first lvl; feel free to activate it in script if you want it anyway)
Tips :
Quote:
- Bot need cupcake in inventory to light braziers
- Mod 20% dmg VS zombies help here (my character and all casters heroes got it)
Exemple Build used :

************************************************** ************


Ravens Point v2 - NM - Release by Underavelvetmoon updated by The Oldy / Oneshout

Skin to farm : Eaglecrest Axe
[Only registered and activated users can see links. Click Here To Register...]

Update :
Quote:
- GWA2 updated for the good PerformAction on DropBundle function
- Some adjustments about torch
Tips :
Quote:
- Bot need cupcake in inventory to light braziers
- You need a run skill on slot 8
Exemple Build used :

PS : It seem both bots don't like the no render function (acting strangely); prefer minimise the game instead
11/02/2019 17:49 n0futur3#1560
Quote:
Originally Posted by oneshout View Post
Shard Of Oor BDS bot by n0futur3's and updated by NiliyaFlamme / Oneshout

Skin to farm : Bone Dragon Staff
[Only registered and activated users can see links. Click Here To Register...]

Update :
Code:
- GWA2 updated for the good PerformAction on DropBundle function
- If "Use Légion stone" check, it's only for lvl 3 (don't need to spend points for 2 easy first lvl; feel free to activate it in script if you want it anyway)
Tips :
Code:
- Bot need cupcake in inventory to light braziers
- Mod 20% dmg VS zombies help here (my character and all casters heroes got it)
Exemple Build used :

************************************************** ************


Ravens Point v2 - NM - Release by Underavelvetmoon updated by The Oldy / Oneshout

Skin to farm : Eaglecrest Axe
[Only registered and activated users can see links. Click Here To Register...]

Update :
Code:
- GWA2 updated for the good PerformAction on DropBundle function
- Some adjustments about torch
Tips :
Code:
- Bot need cupcake in inventory to light braziers
- You need a run skill on slot 8
Exemple Build used :
Hey oneshout, the BDS bot is not made by me, i have a private one :)