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: all (86)
- addbind
- addhook
- ai_aim
- ai_attack
- ai_build
- ai_buy
- ai_debug
- ai_drop
- ai_findtarget
- ai_freeline
- ai_goto
- ai_iattack
- ai_move
- ai_radio
- ai_reload
- ai_respawn
- ai_rotate
- ai_say
- ai_sayteam
- ai_selectweapon
- ai_spray
- ai_use
- checksumfile
- checksumstring
- closehostage
- closeitems
- closeobjects
- closeplayers
- entity
- entitylist
- fow_in
- freehook
- freeimage
- freetimer
- funcs
- game
- hascloseplayers
- hostage
- image
- imagealpha
- imageblend
- imagecolor
- imageframe
- imagehitzone
- imageparam
- imagepos
- imagescale
- inentityzone
- item
- itemtype
- map
- menu
- msg
- msg2
- object
- objectat
- objecttype
- parse
- player
- playerammo
- playerweapons
- projectile
- projectilelist
- randomentity
- randomhostage
- removeallbinds
- removebind
- reqcld
- reqhttp
- setentityaistate
- sethookstate
- stats
- steamstats
- tile
- tileproperty
- timer
- tween_alpha
- tween_animate
- tween_color
- tween_frame
- tween_move
- tween_rotate
- tween_rotateconstantly
- tween_scale
- vars
reqhttpCategories
Parameters
- "url"
- "path"
- mode
Info
reqhttp is short for "request HTTP". HTTP is used to request data from web pages / web services.
"url" = The domain name or IP e.g. "cs2d.com"
"path" = The relative path of the thing you want to request, normally starting with a backslash. E.g. "/index.php"
mode = Controls how you want to receive the result. 0 for a plain string, 1 for a byte array (Lua table with numbers).
The requested data will be received with a delay. This is because it is sent over the network. You have to use the httpdata-hook to handle the incoming data!
The command will return a unique ID for the request. The same ID will be passed to the httpdata-hook so you can match request and response.
Attention: Many/big HTTP requests can influence the performance of the server in a negative way and can lead to ping spikes for connected players. Use with care!
Categories
Parameters
- "url"
- "path"
- mode
Info
reqhttp is short for "request HTTP". HTTP is used to request data from web pages / web services.
"url" = The domain name or IP e.g. "cs2d.com"
"path" = The relative path of the thing you want to request, normally starting with a backslash. E.g. "/index.php"
mode = Controls how you want to receive the result. 0 for a plain string, 1 for a byte array (Lua table with numbers).
The requested data will be received with a delay. This is because it is sent over the network. You have to use the httpdata-hook to handle the incoming data!
The command will return a unique ID for the request. The same ID will be passed to the httpdata-hook so you can match request and response.
"url" = The domain name or IP e.g. "cs2d.com"
"path" = The relative path of the thing you want to request, normally starting with a backslash. E.g. "/index.php"
mode = Controls how you want to receive the result. 0 for a plain string, 1 for a byte array (Lua table with numbers).
The requested data will be received with a delay. This is because it is sent over the network. You have to use the httpdata-hook to handle the incoming data!
The command will return a unique ID for the request. The same ID will be passed to the httpdata-hook so you can match request and response.
Attention: Many/big HTTP requests can influence the performance of the server in a negative way and can lead to ping spikes for connected players. Use with care!