Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. PythonItemModule.cpp
  2.  
  3. // Caută:
  4.  
  5. PyObject * itemSelectItem(PyObject * poSelf, PyObject * poArgs)
  6.  
  7. // După acea funcţie, adaugă
  8.  
  9. PyObject * itemGetCurrentItemVnum(PyObject * poSelf, PyObject * poArgs)
  10. {
  11. CItemData * pItemData = CItemManager::Instance().GetSelectedItemDataPointer();
  12. if (!pItemData)
  13. return Py_BuildException("no selected item data");
  14.  
  15. return Py_BuildValue("i", pItemData->GetIndex());
  16. }
  17.  
  18.  
  19. // caută
  20.  
  21. { "IsRareAttrScroll", itemIsRareAttrScroll, METH_VARARGS },
  22.  
  23.  
  24. // adaugă după:
  25.  
  26. { "GetVnum", itemGetCurrentItemVnum, METH_VARARGS },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement