You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw-tes3coop/components
Koncord c27351c19e Implement inventory functions
AddItem, RemoveItem, GetItemName, GetItemCount, GetItemHealth, GetInventorySize SendInventory
Example:
```lua
tes3mp.AddItem(pid, "glass dagger", 1, 50)
tes3mp.AddItem(pid, "glass dagger", 1, -1)
tes3mp.SendInventory(pid)
tes3mp.RemoveItem(pid, "glass dagger", 1)
tes3mp.SendInventory(pid)
local invSize = tes3mp.GetInventorySize(pid) - 1
for i = 0, invSize do
    print(("%s %d %d"):format(tes3mp.GetItemName(pid, i), tes3mp.GetItemCount(pid, i), tes3mp.GetItemHealth(pid, i)))
end
```
8 years ago
..
bsa Mark thread safe methods in BsaFile 9 years ago
compiler Fix typo in script opcode (Fixes #3583) 8 years ago
config Launcher: ensure to clear previous settings when reloading settings 9 years ago
contentselector Fix cppcheck warnings 9 years ago
esm Don't let Weakness to Magicka affect paralysis 8 years ago
esmterrain Add terrain parallax mapping 9 years ago
fallback Relocate escape-related code to new files escape.hpp and escape.cpp. 9 years ago
files Fix uninitialized escape_hash_filter 8 years ago
fontloader Fix shadowing warnings 8 years ago
interpreter Fix shadowing warnings 8 years ago
loadinglistener LoadingScreen: add support for important labels 9 years ago
misc Add virtual destructors 8 years ago
myguiplatform Remove Camera's children before removing the Camera 9 years ago
nif Make NIFFilePtr const 9 years ago
nifbullet Don't attempt to create a collision shape for an empty TriShape 9 years ago
nifosg Fix shadowing warnings 8 years ago
openmw-mp Implement inventory functions 8 years ago
process OSX build fix 10 years ago
resource Add missing use plugin macro for static build 8 years ago
sceneutil Make actors with non-portable lights in inventory glow (Closes #2042, #3338) 8 years ago
sdlutil disable opengles for Android by default 9 years ago
settings Fix typo 8 years ago
shader Fix shadowing warnings 8 years ago
terrain Fix shadowing warnings 8 years ago
to_utf8 Fix typo in a comment 9 years ago
translation Fix cppcheck issues 10 years ago
version Move OpenMW version information to a textfile instead of compiling it in 10 years ago
vfs Fix clang analyzer warnings 9 years ago
widgets Don't attempt to create quest log buttons if textures are unavailable (Fixes #3063) 9 years ago
CMakeLists.txt Implement inventory functions 8 years ago
doc.hpp second set of additional doxygen comments 14 years ago