Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. Custom trigger
  2. function()
  3. local itemlink=GetInventoryItemLink('player',15)
  4. if itemlink then
  5. local _,_,enchantID=strsplit(':',itemlink)
  6. if enchantID=='' then return true end
  7. end
  8. end
  9.  
  10.  
  11. Custom Untrigger
  12. function()
  13. local itemlink=GetInventoryItemLink('player',15)
  14. if itemlink then
  15. local _,_,enchantID=strsplit(':',itemlink)
  16. if enchantID~='' then return true end
  17. end
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement