Yodef

Counter Calculation

Aug 9th, 2023 (edited)
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. function onLoad(save_state)
  2.     -- Objects
  3.     counter = getObjectFromGUID("96c66b")
  4.     diceA = getObjectFromGUID("6c73b8")
  5.     diceB = getObjectFromGUID("aa87f4")
  6. end
  7.  
  8. function onUpdate()
  9.     Ares = diceA.getValue()  
  10.     Bres = diceB.getValue()
  11.     counter.setValue(Ares - Bres)
  12. end
Advertisement
Add Comment
Please, Sign In to add comment