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
steamstatsCategories
Parameters
- "steamid"
- "mode"
Info
Returns stats for a Steam account ID (provided as string):
- exists: boolean, true if stats for that Steam ID are available, false otherwise
- rank: gets the current rank of the player on the server 1 for the best (0 if unranked)
- killsperdeath: returns the kills per death ratio (equation: kills/deaths)
- score: score value (sum of map mission goal score and frags)
- frags: number of kills
- deaths: number of deaths
- secs: time spent on server in seconds (only time while being in a team is counted, time as spectator is ignored)
- mvp: number of rounds this player was the most valuable player
- assists: number of kill assists
The command returns the boolean value false if stats are not available for the specified Steam ID or if wrong parameters are specified.
Moreover you can use steamstats("0","count") to get the total count of saved Steam stats.
Note: There's also stats which is the same but works with the U.S.G.N. ID instead of the Steam ID as identifier.
Note: Different stats or no stats might be available via the stats or steamstats commands. This depends on the login behavior of the player.
Categories
Parameters
- "steamid"
- "mode"
Info
Returns stats for a Steam account ID (provided as string):
The command returns the boolean value false if stats are not available for the specified Steam ID or if wrong parameters are specified.
Moreover you can use steamstats("0","count") to get the total count of saved Steam stats.
- exists: boolean, true if stats for that Steam ID are available, false otherwise
- rank: gets the current rank of the player on the server 1 for the best (0 if unranked)
- killsperdeath: returns the kills per death ratio (equation: kills/deaths)
- score: score value (sum of map mission goal score and frags)
- frags: number of kills
- deaths: number of deaths
- secs: time spent on server in seconds (only time while being in a team is counted, time as spectator is ignored)
- mvp: number of rounds this player was the most valuable player
- assists: number of kill assists
The command returns the boolean value false if stats are not available for the specified Steam ID or if wrong parameters are specified.
Moreover you can use steamstats("0","count") to get the total count of saved Steam stats.
Note: There's also stats which is the same but works with the U.S.G.N. ID instead of the Steam ID as identifier.
Note: Different stats or no stats might be available via the stats or steamstats commands. This depends on the login behavior of the player.