View Single Post
05/13/23, 12:09 AM   #3
UnDead 0rbit
AddOn Author - Click to view addons
Join Date: Aug 2020
Posts: 4
Originally Posted by Masteroshi430 View Post
Lua Code:
  1. if CanUseItem(bagId, slotIndex) then
  2.     -- UseItem is protected, so CallSecureProtected is used to make the call
  3.     local success = CallSecureProtected("UseItem", bagId, slotIndex)
  4.     return success
  5. end

Thanks for the help
  Reply With Quote