|
You last visited: Today at 20:50
Advertisement
[Free] HotS-Bot
Discussion on [Free] HotS-Bot within the Heroes of the Storm forum part of the Other Online Games category.
08/17/2016, 19:52
|
#316
|
elite*gold: 50
Join Date: Feb 2009
Posts: 765
Received Thanks: 927
|
Quote:
|
Done, still doesn't work. The game window goes mad changing the size and then stop and appear the message of error.
|
Right top corner from gamewindow there are 3 buttons, click one time on the middle button that the gamewindow is windowed.
|
|
|
08/17/2016, 20:59
|
#317
|
elite*gold: 0
Join Date: Aug 2012
Posts: 6
Received Thanks: 0
|
Quote:
Originally Posted by flumio
Right top corner from gamewindow there are 3 buttons, click one time on the middle button that the gamewindow is windowed.
|
I did it but problem persist. Detect fullscreen, but i have it windowed.
|
|
|
08/17/2016, 21:42
|
#318
|
elite*gold: 50
Join Date: Feb 2009
Posts: 765
Received Thanks: 927
|
Quote:
|
I did it but problem persist. Detect fullscreen, but i have it windowed.
|
Send me your skype addy.
|
|
|
08/22/2016, 00:03
|
#319
|
elite*gold: 0
Join Date: May 2013
Posts: 2
Received Thanks: 0
|
Hi guys
Who can send me routines for more heroes plz ?
Thx you very much
|
|
|
08/22/2016, 10:18
|
#320
|
elite*gold: 0
Join Date: Apr 2016
Posts: 10
Received Thanks: 3
|
Currently testing it with aba in a vs ai match, got it setup working fine.
I would also like routines of other heroes otherwise can i just use the meelee/longrange for any champ?
Depending on how it goes I might look into making some routines, but would it be wise to use this in a quick match or would it be better to just use it in ai.
|
|
|
08/22/2016, 15:59
|
#321
|
elite*gold: 0
Join Date: Jul 2016
Posts: 24
Received Thanks: 3
|
Quote:
Originally Posted by Leschtroumpf55
Hi guys
Who can send me routines for more heroes plz ?
Thx you very much
|
Quote:
Originally Posted by MrSnorlax
Currently testing it with aba in a vs ai match, got it setup working fine.
I would also like routines of other heroes otherwise can i just use the meelee/longrange for any champ?
Depending on how it goes I might look into making some routines, but would it be wise to use this in a quick match or would it be better to just use it in ai.
|
Quick match to risky.
Routines:
Anub
namespace IntelCore.Heroes
{
public class Routine : UserManager
{
public void Properties()
{
IsHeroRange = false;
AutoAttackRange = 400;
TalentTree = new[] { "1", "1", "2", "1", "2", "3", "3" };
ShouldDoMapmechanics = true;
}
// We use it when IsEnemieVisible || IsEnemieCreepVisible
public static void Attack()
{
if (Inspire())
return;
if (PenetratingRound())
return;
if (RaynorsRaiders())
return;
if (Key1())
return;
}
// We use it when IsHealthLow
public static void Escape()
{
if (Inspire())
return;
}
// We use it all the time
public static void Heal()
{
}
public static bool PenetratingRound()
{
if (IsEnemieValid && GetDistancePlayerToEnemie < 347 && !IsCDKeyQ)
{
PressKey("Q");
MouseMoveTo(GetEnemiePos);
MouseLeftDown();
MouseLeftUp();
return true;
}
return false;
}
public static bool Inspire()
{
if ((IsEnemieVisible || IsEnemieCreepVisible) && !IsCDKeyW)
{
PressKey("W");
return true;
}
if (IsHealthLow && !IsCDKeyW)
{
PressKey("W");
return true;
}
return false;
}
public static bool Key1()
{
if (IsEnemieCreepValid && GetDistancePlayerToEnemieCreep < AutoAttackRange && !IsCDKey1)
{
PressKey("1");
MouseMoveTo(GetEnemieCreepPos);
MouseLeftDown();
MouseLeftUp();
return true;
}
return false;
}
public static bool RaynorsRaiders()
{
if (IsEnemieValid && GetDistancePlayerToEnemie < 331 && !IsCDKeyR)
{
PressKey("R");
MouseMoveTo(GetEnemiePos);
MouseLeftDown();
MouseLeftUp();
return true;
}
return false;
}
}
}
Lt. Morales
namespace IntelCore.Heroes
{
public class Routine : UserManager
{
public void Properties()
{
IsHeroRange = true;
AutoAttackRange = 295;
TalentTree = new[] { "2", "1", "1", "1", "2", "2", "3" };
ShouldDoMapmechanics = true;
}
// We use it when IsEnemieVisible || IsEnemieCreepVisible
public static void Attack()
{
if (KeyQ())
return;
if (KeyW())
return;
if (KeyE())
return;
if (KeyR())
return;
}
// We use it when IsHealthLow
public static void Escape()
{
}
// We use it all the time
public static void Heal()
{
}
public static bool KeyQ()
{
if (IsFriendlyHeroValid && GetDistancePlayerToFriendlyHero < AutoAttackRange && !IsCDKeyQ)
{
PressKey("Q");
MouseMoveTo(GetFriendlyHeroPos);
MouseLeftDown();
MouseLeftUp();
return true;
}
return false;
}
public static bool KeyW()
{
if (IsFriendlyHeroValid && GetDistancePlayerToFriendlyHero < AutoAttackRange && !IsCDKeyW)
{
PressKey("W");
MouseMoveTo(GetFriendlyHeroPos);
MouseLeftDown();
MouseLeftUp();
return true;
}
return false;
}
public static bool KeyE()
{
if (IsEnemieValid && GetDistancePlayerToEnemie < 400 && !IsCDKeyE)
{
PressKey("E");
MouseMoveTo(GetEnemiePos);
MouseLeftDown();
MouseLeftUp();
return true;
}
if (IsEnemieCreepValid && GetDistancePlayerToEnemieCreep < 400 && !IsCDKeyE)
{
PressKey("E");
MouseMoveTo(GetEnemieCreepPos);
MouseLeftDown();
MouseLeftUp();
return true;
}
return false;
}
public static bool KeyR()
{
if (IsFriendlyHeroValid && GetDistancePlayerToFriendlyHero < AutoAttackRange && !IsCDKeyR)
{
PressKey("R");
MouseMoveTo(GetFriendlyHeroPos);
MouseLeftDown();
MouseLeftUp();
return true;
}
return false;
}
}
}
Tracer
namespace IntelCore.Heroes
{
public class Routine : UserManager
{
public void Properties()
{
IsHeroRange = true;
AutoAttackRange = 295;
TalentTree = new[] { "2", "3", "3", "3", "1", "1", "2" };
ShouldDoMapmechanics = true;
ShouldDoCheckHealth = false;
}
// We use it when IsEnemieVisible || IsEnemieCreepVisible
public static void Attack()
{
if (KeyQ())
return;
if (KeyW())
return;
if (KeyE())
return;
if (KeyR())
return;
if (KeyD())
return;
}
// We use it when IsHealthLow
public static void Escape()
{
}
// We use it all the time
public static void Heal()
{
}
public static bool KeyQ()
{
if (IsEnemieValid && GetDistancePlayerToEnemie < AutoAttackRange && !IsCDKeyQ)
{
PressKey("Q");
MouseMoveTo(GetEnemiePos);
MouseLeftDown();
MouseLeftUp();
return true;
}
if (IsEnemieCreepValid && GetDistancePlayerToEnemieCreep < AutoAttackRange && !IsCDKeyQ)
{
PressKey("Q");
MouseMoveTo(GetEnemieCreepPos);
MouseLeftDown();
MouseLeftUp();
return true;
}
return false;
}
public static bool KeyW()
{
if (IsEnemieValid && GetDistancePlayerToEnemie < AutoAttackRange && !IsCDKeyW)
{
PressKey("W");
MouseMoveTo(GetEnemiePos);
MouseLeftDown();
MouseLeftUp();
return true;
}
if (IsEnemieCreepValid && GetDistancePlayerToEnemieCreep < AutoAttackRange && !IsCDKeyW)
{
PressKey("W");
MouseMoveTo(GetEnemieCreepPos);
MouseLeftDown();
MouseLeftUp();
return true;
}
return false;
}
public static bool KeyE()
{
if (IsEnemieValid && GetDistancePlayerToEnemie < AutoAttackRange && !IsCDKeyE)
{
PressKey("E");
MouseMoveTo(GetEnemiePos);
MouseLeftDown();
MouseLeftUp();
return true;
}
if (IsEnemieCreepValid && GetDistancePlayerToEnemieCreep < AutoAttackRange && !IsCDKeyE)
{
PressKey("E");
MouseMoveTo(GetEnemieCreepPos);
MouseLeftDown();
MouseLeftUp();
return true;
}
return false;
}
public static bool KeyD()
{
if (IsEnemieCreepValid && GetDistancePlayerToEnemieCreep < AutoAttackRange && !IsCDKeyD)
{
PressKey("D");
MouseMoveTo(GetEnemieCreepPos);
MouseLeftDown();
MouseLeftUp();
return true;
}
return false;
}
public static bool KeyR()
{
if (IsEnemieValid && GetDistancePlayerToEnemie < 331 && !IsCDKeyR)
{
PressKey("R");
MouseMoveTo(GetEnemiePos);
MouseLeftDown();
MouseLeftUp();
return true;
}
return false;
}
}
}
|
|
|
08/22/2016, 16:22
|
#322
|
elite*gold: 0
Join Date: May 2013
Posts: 2
Received Thanks: 0
|
Thx you Edmiller to share your work thx thx thx
|
|
|
08/22/2016, 17:54
|
#323
|
elite*gold: 0
Join Date: Apr 2016
Posts: 10
Received Thanks: 3
|
Cheers for that !
Yeah, I realised on towers of doom the general routines, the bot just follows creeps and dies to the base, not sure if that's only with a general routine?
|
|
|
08/26/2016, 13:01
|
#324
|
elite*gold: 188
Join Date: Aug 2015
Posts: 123
Received Thanks: 22
|
What about The Lost vikings? Is there any routine for them? ^^
|
|
|
08/26/2016, 20:06
|
#325
|
elite*gold: 0
Join Date: Nov 2010
Posts: 56
Received Thanks: 1
|
This doesnt work for me, when i run it nothing opens, any help?
|
|
|
08/26/2016, 20:24
|
#326
|
elite*gold: 50
Join Date: Feb 2009
Posts: 765
Received Thanks: 927
|
Quote:
|
This doesnt work for me, when i run it nothing opens, any help?
|
- OS 64bit
- Latest version of .NET Framework
Quote:
|
What about The Lost vikings? Is there any routine for them? ^^
|
Didn't test it yet, but i think spamroutine will work.
Edit:
New update available !
- Fixed a bug by save settings with ShouldCheckHealth and disable PlayerHealth, added some security checks to prevent problems.
- As requested, added HeroTool button where you can get distance for writing routines.
If you get other wishes, let me know it.
|
|
|
08/27/2016, 01:58
|
#327
|
elite*gold: 188
Join Date: Aug 2015
Posts: 123
Received Thanks: 22
|
Bot is getting better and better, keep going! ^.^
Edit: I have the same problem with @  . New version of bot doesn't open under vmware (when i double click to open, nothing happens). But ex version is still working. Also the new version works under the real os too.
Edit about vikings: Routines don't work for vikings. We need such routine that bot spams the key 4 (to collect all vikings together) and space button (to lock camera).
|
|
|
08/27/2016, 02:25
|
#328
|
elite*gold: 50
Join Date: Feb 2009
Posts: 765
Received Thanks: 927
|
Quote:
Bot is getting better and better, keep going! ^.^
Edit: New version of bot doesn't open under vmware (when i double click to open, nothing happens). Ex version is still working.
|
Current version works on normal computer ?
|
|
|
08/27/2016, 04:48
|
#329
|
elite*gold: 0
Join Date: Aug 2016
Posts: 4
Received Thanks: 0
|
Below is the error I get. It doesn't open, just says it has stopped working. I tried all your steps. I am using Windows 7 64-bit. I have the latest .NET installed. No logs are being generated.
Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01: HOTSBot.exe
Problem Signature 02: 1.0.0.0
Problem Signature 03: 57c0cdbb
Problem Signature 04: mscorlib
Problem Signature 05: 4.6.1076.0
Problem Signature 06: 56d79d90
Problem Signature 07: 157f
Problem Signature 08: fd
Problem Signature 09: System.IO.DirectoryNotFound
OS Version: 6.1.7601.2.1.0.256.1
Locale ID: 1033
Additional Information 1: 2878
Additional Information 2: 2878fb22f6978c242a6dfe3198310dc1
Additional Information 3: c332
Additional Information 4: c332be033a2715bab1f7d9ad1bff0a80
Read our privacy statement online:
If the online privacy statement is not available, please read our privacy statement offline:
C:\Windows\system32\en-US\erofflps.txt
|
|
|
08/27/2016, 07:50
|
#330
|
elite*gold: 50
Join Date: Feb 2009
Posts: 765
Received Thanks: 927
|
Quote:
Problem Event Name: CLR20r3
Problem Signature 01: HOTSBot.exe
Problem Signature 02: 1.0.0.0
Problem Signature 03: 57c0cdbb
Problem Signature 04: mscorlib
Problem Signature 05: 4.6.1076.0
Problem Signature 06: 56d79d90
Problem Signature 07: 157f
Problem Signature 08: fd
Problem Signature 09: System.IO.DirectoryNotFound
OS Version: 6.1.7601.2.1.0.256.1
Locale ID: 1033
Additional Information 1: 2878
Additional Information 2: 2878fb22f6978c242a6dfe3198310dc1
Additional Information 3: c332
Additional Information 4: c332be033a2715bab1f7d9ad1bff0a80
|
Try to install this
Quote:
|
Edit about vikings: Routines don't work for vikings. We need such routine that bot spams the key 4 (to collect all vikings together) and space button (to lock camera).
|
I creat one for the vikings.
|
|
|
 |
|
Similar Threads
|
4x hots key for FREE!
05/20/2015 - Heroes of the Storm Trading - 0 Replies
FAIL - HOTS IS OPENBETA!;)
|
HOTS Beta Key FREE Sammlung
04/30/2015 - Freebies - 2 Replies
Die ersten 30
MX7X88-VT4R-HXMR9Y-9FV7-BMPJY7
BYBCXW-M4CN-VDX2NT-ZEC8-E8MZEM
Z8N4MD-JG6Y-R8W9XT-VJMT-9R2MDD
ZRBNZF-ZECB-7NVR2W-ZRG7-GFP4NM
ZD6YWW-2TBZ-VH2XF4-Z6J8-RJBXBJ
87BYTG-DFJD-4G6DHD-KVB9-PEN74J
6J8RVJ-CMY2-PVCHPD-X2NK-FM6Y9K
6H9V7X-W4WG-42Y4PP-KWFV-J96HGN
|
Hots keys for free
04/05/2015 - Heroes of the Storm - 2 Replies
GWZDBR-8TWR-RGHT9T-HZPR-GPCZZN
KTZWBT-B4RX-WCG7EF-HK7K-JYVPKD
HKW8RW-6FBF-9CDEPP-V2J8-CC4R78
WDJ9NE-ED9Z-XBWWRT-XVX9-PX4JY8
Als gegenleistung wär n kilo feinster kartoffel gut!
Mfg
|
level your hots eu account for free
02/02/2015 - Heroes of the Storm - 2 Replies
level your hots eu account for free
i level your hots eu account for free.
just give me your email and pw, not more.
i do it because i get no alpha inv from blizzard and i cant waste more time.
i need to stack experience(aiming for higher ranks), till beta starts and i can self rush lvl 40 on my own acc.
i dont buy accounts, dont even ask for it.
|
Boost in Starcraft 2 HotS - For Free!
07/15/2013 - Starcraft 2 - 2 Replies
Hey. If anyone needs a boost to Platinum in Starcraft 2, i can do it.
It's for free, since i have much time and dont know what to do.
But you need to have HotS, because i dont play anymore WoL.
So yeah if you want me to boost your 1v1, 2v2, 3v3 or 4v4, just PN me or add me on Skype.
In 1v1 i can boost up to Plat, in 2v2, 3v3, 4v4 up to Dia/Master.
Regards
|
All times are GMT +1. The time now is 20:50.
|
|