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
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!