Commands/Lua
Reference for console commands, Lua hooks and Lua commands in CS2D.
- Console Commands are entered in console, executed with key-binds, cfg-files or with Lua parse
- Lua Hooks execute Lua when events occur - some have a return value which can change the game behavior
- Lua Commands are used to retrieve game data or to perform actions in Lua scripts
CS2D Console Commands
Lua Hooks
Lua Commands
Category: entity (5)
setentityaistateCategories
Parameters
- x
- y
- ai
Info
Sets the AI state value of the entity at tile position (x|y). The AI state of each entity is automatically set to 0 on each round start.
CS2D does not actively use the AI state and you can set it to any integer value you want.
It's commonly used in AI scripts (bots) only.
e.g.: when a bomb has been planted, bots can mark a bomb spot as checked ("bomb is not here") using the AI state. This can be used to prevent that the same spot is checked again.
Note: The AI state of an entity is especially useful in AI scripts in conjunction with randomentity!
Attention: You shouldn't use this command in server or map scripts. It's meant to be used in AI scripts only. Using it somewhere else might lead to problems with bots! Of course you can ignore this warning if you don't use bots or if you use custom bot scripts which do not rely on the AI state.
Categories
Parameters
- x
- y
- ai
Info
Sets the AI state value of the entity at tile position (x|y). The AI state of each entity is automatically set to 0 on each round start.
CS2D does not actively use the AI state and you can set it to any integer value you want.
It's commonly used in AI scripts (bots) only.
e.g.: when a bomb has been planted, bots can mark a bomb spot as checked ("bomb is not here") using the AI state. This can be used to prevent that the same spot is checked again.
CS2D does not actively use the AI state and you can set it to any integer value you want.
It's commonly used in AI scripts (bots) only.
e.g.: when a bomb has been planted, bots can mark a bomb spot as checked ("bomb is not here") using the AI state. This can be used to prevent that the same spot is checked again.
Note: The AI state of an entity is especially useful in AI scripts in conjunction with randomentity!
Attention: You shouldn't use this command in server or map scripts. It's meant to be used in AI scripts only. Using it somewhere else might lead to problems with bots! Of course you can ignore this warning if you don't use bots or if you use custom bot scripts which do not rely on the AI state.