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: item (5)
playerweaponsCategories
Parameters
- id
Info
Returns a Lua table with all equippable weapon/item TYPES a player carries. The types will be returned in the table values as integer type IDs (not strings).
Type IDs (the numbers are what will be in the table values):
Sample 1: List items of player 1
local itemlist=playerweapons(1)
for _,id in pairs(itemlist) do
print(itemtype(id,"name"))
end
Note: Some items like money items, health items and ammo are automatically used when collected. They only modify related values (e.g. player money) and never appear in the list of carried items.
Attention: The command returns item TYPE IDs only - NOT item instance IDs! If you want to retrieve the ammo values of a specific carried weapon you have to use playerammo!
Attention: The returned table only contains items which can be equipped (in hands) and which are visible in the weapon selection! Special items like the flag, gas mask or armors are NOT included in this list. If you want to check the existence of these items you have to use the player Lua command with the corresponding parameter!
Categories
Parameters
- id
Info
Returns a Lua table with all equippable weapon/item TYPES a player carries. The types will be returned in the table values as integer type IDs (not strings).
Type IDs (the numbers are what will be in the table values):
Sample 1: List items of player 1
Type IDs (the numbers are what will be in the table values):
Sample 1: List items of player 1
local itemlist=playerweapons(1)
for _,id in pairs(itemlist) do
print(itemtype(id,"name"))
end
for _,id in pairs(itemlist) do
print(itemtype(id,"name"))
end
Note: Some items like money items, health items and ammo are automatically used when collected. They only modify related values (e.g. player money) and never appear in the list of carried items.
Attention: The command returns item TYPE IDs only - NOT item instance IDs! If you want to retrieve the ammo values of a specific carried weapon you have to use playerammo!
Attention: The returned table only contains items which can be equipped (in hands) and which are visible in the weapon selection! Special items like the flag, gas mask or armors are NOT included in this list. If you want to check the existence of these items you have to use the player Lua command with the corresponding parameter!