Need help with dummy bots

Does someone knows a way to make dummy bots move around? I really need it, but I don’t know how to do it :frowning:

Help would be appreciated

You can use start throttle in direction(*dummyBot*, direction towards(position of(*dummyBot*), *positionToReach*), 1, to world, replace existing throttle, *reevaluation*) to simply let the bot walk to a specific position (positionToReach)

If you want the bot to randomly run around without going for a specific position you can use the start throttle action in a direction you want and then check with “ray cast hit position” and/or “distance between(nextPosition, nearest walkable position(nextPosition)) < smallNumber” if the bot can walk in the current direction and if he has to stop.

If you want the bot to walk to a specific position on the map wich is not necessarily in line of sight: Im currently working on a solution that enables the bot to pathfind a position on the map and walk around obstacles etc.