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

index.html

Blame
  • Forked from Développement Web Avancé / 2019_TP2
    Source project has a limited visibility.
    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