View Single Post
09-12-15, 05:56 AM   #3
myrroddin
A Pyroguard Emberseer
 
myrroddin's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 1,240
That gif is hard to follow with the bouncing. It is just better to post with the code tags or Lua button.

Anyway, the error is simple: loc1 is presumably undefined, or if it is, your assignment of it is incorrect. Depending on what you want (can't see the rest of your code):
Code:
loc1 = 11
-- or
loc1 = loc1 + 11
  Reply With Quote