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-tes3mp/apps
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
..
bsatool Merge branch 'master' of https://github.com/OpenMW/openmw into osg 10 years ago
esmtool Rewrite NAME_T into FIXED_STRING. 9 years ago
essimporter Save scripted animation state (Fixes #1931, #2150, #3393) 9 years ago
launcher Merge branch 'appveyor' of github.com:ace13/openmw into appveyor 9 years ago
mwiniimporter Fix shadowing warnings 8 years ago
niftest Removed now unneeded script 10 years ago
opencs Resolve conflicts in pull request #75 8 years ago
openmw Implement inventory functions 8 years ago
openmw-mp Implement inventory functions 8 years ago
openmw_test_suite Add unit tests for ESM::FIXED_STRING 9 years ago
wizard apps/wizard: (trivial) fix misplaced arguments in installFile for installFiles 8 years ago
doc.hpp