Quote:
Originally Posted by kiszetorosmokus
What the problem? "compiling error 1047"
|
I have yet to solve this issue sorry, I assume it is a dividing error, however I dont understand how most people can compile it, while others can not. I will try to fix this for the next update though.
Quote:
Originally Posted by kanatas12
XRIDDI uor bot have problem with hollows(4) dont start to shoot start normaly but dont shoot nothing and when i change to normal hollows is start to play please fix it in next update
|
The bot is designed purely to be used with hollow (30dmg) cannonballs, if you want to use any other, implement the fix alex has posted below.
Quote:
Originally Posted by Prinsferdi
Hmm, gues I`ve done everything right - bot is moving and working - but didn`t press the button for fire!
- First I`ve changed my keys how they are in the script -> not shooting
- Then I`ve changed my keys in the Script how I have it in the game -> not shotting at all :(
Any solutions?
|
This issue may be caused by Manually defining your Rep Button. If you have not manually defined your rep button but it still doesnt work, that is interesting, and i will look into that issue for you :)
Quote:
Originally Posted by Alex_II
A friend of mine had the same problem.
I solved it by changing the Attack procedure
I changed it from:
Code:
procedure Attack;
begin
BonusMapCheck;
If (InBonusMap = true) then
begin
AmmoCheck;
if (CorrectAmmo = true) then
begin
if (FindColor(x,y,FireCol,wx1,wy1,wx2,wy2)=true) then
begin
SendKeys(FireKey);
Firing:=true;
end;
end;
end;
end;
To:
Code:
procedure Attack;
begin
BonusMapCheck;
If (InBonusMap = true) then
begin
if (FindColor(x,y,FireCol,wx1,wy1,wx2,wy2)=true) then
begin
SendKeys(FireKey);
Firing:=true;
end;
end;
end;
This removes the procudure which will look for the right ammunition (so the bot won't stop if it runs out of hollows)
|
Thankyou very much Alex.
@Everyone Please keep in mind that if you use this code, the bot will no longer check what ammo you are using, or change your ammo to hollows - so make sure not to have Elite ammo equipped :)