Lugo Bots

An exciting multi-agent AI game

From basic code to multi-agent RL models, your strategy is the key to victory!

  • Easy to code, easy to debug, easy to submit.
  • No installs, Docker is the only requirement to run the game.
  • Exciting to watch, cheering like a sport.
class Bot:
    
#on_disputing is called when no one has the ball possession def on_disputing(self, order_set: lugo.OrderSet, snapshot: lugo.GameSnapshot) -> lugo.OrderSet: pass #on_defending is called when an opponent player has the ball possession def on_defending(self, order_set: lugo.OrderSet, snapshot: lugo.GameSnapshot) -> lugo.OrderSet: pass #on_holding is called when this bot has the ball possession def on_holding(self, order_set: lugo.OrderSet, snapshot: lugo.GameSnapshot) -> lugo.OrderSet: pass #on_supporting is called when a teammate player has the ball possession def on_supporting(self, order_set: lugo.OrderSet, snapshot: lugo.GameSnapshot) -> lugo.OrderSet: pass #This method is called on every turn, and the player state is passed at the last parameter. def as_goalkeeper(self, order_set: lugo.OrderSet, snapshot: lugo.GameSnapshot, state: PLAYER_STATE) -> lugo.OrderSet: pass
export interface Bot {
{

    /**
    * OnDisputing is called when no one has the ball possession
    */
    onDisputing: (orderSet: OrderSet, snapshot: GameSnapshot) => OrderSet | null

    /**
    * OnDefending is called when an opponent player has the ball possession
    */
    onDefending: (orderSet: OrderSet, snapshot: GameSnapshot) => OrderSet | null

    /**
    * OnHolding is called when this bot has the ball possession
    */
    onHolding: (orderSet: OrderSet, snapshot: GameSnapshot) => OrderSet | null


    /**
    * OnSupporting is called when a teammate player has the ball possession
    */
    onSupporting: (orderSet: OrderSet, snapshot: GameSnapshot) => OrderSet | null

    /**
    * AsGoalkeeper is only called when this bot is the goalkeeper (number 1). This method is called on every turn,
    * and the player state is passed at the last parameter.
    */
    asGoalkeeper: (orderSet: OrderSet, snapshot: GameSnapshot, state: PLAYER_STATE) => OrderSet | null


}
type Bot interface {
    
    // OnDisputing is called when no one has the ball possession
    OnDisputing(ctx context.Context, sender TurnOrdersSender, snapshot *proto.GameSnap

shot) error

    // OnDefending is called when an opponent player has the ball possession
    OnDefending(ctx context.Context, sender TurnOrdersSender, snapshot *proto.GameSnap

shot) error

    // OnHolding is called when this bot has the ball possession
    OnHolding(ctx context.Context, sender TurnOrdersSender, snapshot *proto.GameSnap
        
shot) error

    // OnSupporting is called when a teammate player has the ball possession
    OnSupporting(ctx context.Context, sender TurnOrdersSender, snapshot *proto.GameSnap

shot) error
    // AsGoalkeeper is only called when this bot is the goalkeeper (number 1). This method is called on every turn,
    // and the player state is passed at the last parameter.
    AsGoalkeeper(ctx context.Context, sender TurnOrdersSender, snapshot *proto.GameSnap
        
shot, state PlayerState) error

}

Step 2

Push a Docker image

Step 3

Wait for bot to be approved

Last 10 matches

Done

2024-04-25T19:27:51+00:00

Done

2024-04-25T19:09:10+00:00

Done

2024-04-25T18:15:42+00:00

Done

2024-04-25T17:06:35+00:00

Done

2024-04-25T15:06:48+00:00

Done

2024-04-25T13:06:51+00:00

Done

2024-04-25T11:08:09+00:00

Done

2024-04-25T09:10:54+00:00

Done

2024-04-25T07:10:15+00:00

Done

2024-04-25T05:06:55+00:00

Top 10 bots

1 (113.5 Points)

150 W

62 L

8 D

2 (112.0 Points)

69 W

5 L

5 D

3 (83.5 Points)

41 W

16 L

1 D

4 (80.0 Points)

65 W

43 L

14 D

5 (54.0 Points)

81 W

53 L

3 D

6 (46.0 Points)

74 W

87 L

14 D

7 (37.5 Points)

44 W

25 L

12 D

8 (31.0 Points)

23 W

15 L

5 D

9 (28.5 Points)

83 W

101 L

42 D

10 (26.0 Points)

8 W

4 L

5 D

11 (24.0 Points)

28 W

14 L

7 D

12 (20.0 Points)

23 W

34 L

6 D

13 (19.5 Points)

25 W

15 L

5 D

13 (19.5 Points)

20 W

27 L

5 D

15 (13.5 Points)

5 W

15 L

5 D