Skip to content
Snippets Groups Projects
Select Git revision
  • cd5f344197c474b63dfffb4c2c495c8407c23788
  • master default protected
2 results

bot_generic.lua

Blame
  • bot_generic.lua 290 B
    require(GetScriptDirectory().."/lua_modules/bot_actions")
    
    local botActionsObject = BotActions:new(nil)
    
    print("QWERTZUIOP")
    print(GetBot():IsHero())
    
    function Think()
    	local cBot = GetBot();
    	--DebugDrawCircle(cBot:GetLocation(),100,255,0,0);
    	botActionsObject:Think(cBot)
    end