[Free] HotS-Bot

03/18/2017 03:48 flumio#841
Quote:
Ive been trying to lvl up abathur and it was goin great, but since probius patch came bot wont hat anyone anymore not even creeps, it has kicked me several times now for inactivity, anyone having the same issues?

Bot log says "trying to find friendly hero"
"no friendly hero found ,try to research"
Send me the Log-File.
03/18/2017 07:38 Dinodonte#842
this is the log of the last session i did with abathur(i left it for couple of hours)
03/19/2017 14:16 Plaush#843
Hello. I would like to know what to enter in the Login screen. Do I have to pay 15 Euros or Just donate any amount.
03/19/2017 19:41 flumio#844
Quote:
this is the log of the last session i did with abathur(i left it for couple of hours)
Thanks for the Log, in the next days i will take a look into it.
03/20/2017 14:05 tig3rcl@w#845
how does the community here create new user profiles?

I would like to level up Lucio, but I need a profile for it first
03/20/2017 20:03 RogerioJr#846
Hello thanks for the great tool, I start 2 days ago and is very good! Anyway, I am not have the amount to pay for a key right now, so, we have a way to know when the "free" key is available?

Thaanks
03/20/2017 22:54 asdf69#847
---------------------------

---------------------------
Key has no open slots!
---------------------------
OK
---------------------------


when this error will change ? i try since 3 days ....
03/21/2017 02:37 Ursinae#848
Is it possible the same IP used the key multiple times? Worked great for a couple days.
03/21/2017 17:16 flumio#849
Quote:
Hello thanks for the great tool, I start 2 days ago and is very good! Anyway, I am not have the amount to pay for a key right now, so, we have a way to know when the "free" key is available?
You need to try till a slot becomes available.

Quote:
---------------------------

---------------------------
Key has no open slots!
---------------------------
OK
---------------------------


when this error will change ? i try since 3 days ....
Its not a error, you are unlucky and an other one are lucky.

Quote:
Is it possible the same IP used the key multiple times? Worked great for a couple days.
You can use more then one slot by the free key, if the slots are not in use.
@[Only registered and activated users can see links. Click Here To Register...]
I dont forget you but right now im busy, i will do it soon. Sorry
03/22/2017 12:50 HardcoreNoDisco#850
Still working?
03/22/2017 13:22 Prof. Cat#851
Game got patch mate @[Only registered and activated users can see links. Click Here To Register...].
03/22/2017 19:32 flumio#852
New update available!
03/24/2017 01:12 Ursinae#853
Thank you! This is a great tool.
03/24/2017 16:55 nexxy91#854
I can't seem to get EnemiesHeroes.Health < 80 to work under any conditions, if i do :
var EnemieHeroes.Health;
EnemieHeroes.Health < 80;
It says i need a ; in it. Well, it has it, still does not work. I tried if(EnemieHeroes.Health < 80) I get compile errors. I've now tried so many times i'm frustrated to the end. Also, whatever conditions i try Valeera does not use Vanish. Any help?
03/24/2017 17:20 flumio#855
Quote:
I can't seem to get EnemiesHeroes.Health < 80 to work under any conditions, if i do :
var EnemieHeroes.Health;
EnemieHeroes.Health < 80;
It says i need a ; in it. Well, it has it, still does not work. I tried if(EnemieHeroes.Health < 80) I get compile errors. I've now tried so many times i'm frustrated to the end. Also, whatever conditions i try Valeera does not use Vanish. Any help?
Quote:
var EnemieHeroes.Health;
Wrong syntax.
This needs to be look like this
Code:
var EnemieHeros = EnemieHeroes.FirstOrDefault(o => o.IsValid && o.Health < 80);
Then you need to be check if there are any Enemie saved and valid.
Code:
var EnemieHeros = EnemieHeroes.FirstOrDefault(o => o.IsValid && o.Health < 80);
if (IsValid(EnemieHeros))
{
    doing blablablablablallala;
}