Help with the commands on algos

Let say I want to code an action that activates if the turn number is a certain number like 5 or 49

How do you do that?

if (game_state.turn_number == 5) or (game_state.turn_number == 49):
   # do whatever you want to do

I think that’s what it is?

1 Like

nvm I found out my mistake