Needs:brain
From my previous tutorial about simulate console,you can make instant pick hero with code:
Code:
push text
push 0x00 
call addressEngine
ret
Note:from previous tut text meaning the string you want to put for ex:exec config.cfg
And addressEngine is the address you have found from previous tut
Let�s begin:
Code:
Code:
#include <windows.h>
#include <stdio.h>
#include <iostream>
#include <conio.h>
#include <string>
#include <fstream>
#include <float.h>
using namespace std;
 
DWORD WINAPI LoopFunction( LPVOID lpParam )
{
 
  const DWORD AddressEngine = 0x0000000 // here are the addressEngine
  char Text[40] = �dota_select_hero npc_dota_hero_techies�// based on size 
 
    while(1) 
{
/// or &AddressEngine below
_asm
{
push Text
push 0x00 
call AddressEngine
ret  
        }
    }
//some CPU relief you can change it to 50 so it can faster the
 Loop.
    Sleep(200);
    return 0;
}
 
BOOL WINAPI DllMain (HINSTANCE hModule, DWORD dwAttached, LPVOID lpvReserved)
{
    if (dwAttached == DLL_PROCESS_ATTACH) {
        CreateThread(NULL,0,&LoopFunction,NULL,0,NULL);
    }
    return 1;
}
  • After you build it inject your dll into Dota process

All heroes names below, that you can change it for ex:npc_dota_hero_nameofhero
Code:
Strength Heroes
Alchemist Axe Bristleback Centaur Warrunner Chaos Knight Dawnbreaker Doom Dragon Knight Earth Spirit Earthshaker Elder Titan Huskar Kunkka Legion Commander Lifestealer Mars Night Stalker Ogre Magi Omniknight Primal Beast Pudge Slardar Spirit Breaker Sven Tidehunter Tiny Treant Protector Tusk Underlord Undying Wraith King

Agility Heroes
Anti-Mage Arc Warden Bloodseeker Bounty Hunter Clinkz Drow Ranger Ember Spirit Faceless Void Gyrocopter Hoodwink Juggernaut Luna Medusa Meepo Monkey King Morphling Naga Siren Phantom Assassin Phantom Lancer Razor Riki Shadow Fiend Slark Sniper Spectre Templar Assassin Terrorblade Troll Warlord Ursa Viper Weaver

Intelligence Heroes
Ancient Apparition Crystal Maiden Death Prophet Disruptor Enchantress Grimstroke Jakiro Keeper of the Light Leshrac Lich Lina Lion Muerta Nature's Prophet Necrophos Oracle Outworld Destroyer Puck Pugna Queen of Pain Rubick Shadow Demon Shadow Shaman Silencer Skywrath Mage Storm Spirit Tinker Warlock Witch Doctor Zeus

Universal Heroes
Abaddon Bane Batrider Beastmaster Brewmaster Broodmother Chen Clockwerk Dark Seer Dark Willow Dazzle Enigma Invoker Io Lone Druid Lycan Magnus Marci Mirana Nyx Assassin Pangolier Phoenix Sand King Snapfire Techies Timbersaw Vengeful Spirit Venomancer Visage Void Spirit Windranger Winter Wyvern
appreciation:TheOnlyOne404