Skip to content
Snippets Groups Projects
Select Git revision
  • a79ef408bb2153c9d34b5f2268e1e2ec5ec1487b
  • master default protected
  • 1.1.1
  • 1.1
  • 1.0
5 results

one_armed_bandit.c

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