1
Scripts, plugins, utilities, goodies / Re: Sierra right click interface
« on: April 22, 2015, 12:43:54 PM »
Better late as never, its up and running again.
var rotation = 5;
self.Rotatable = true;
self.Rotate = rotation;
on "LeftClick"
{
rotation = rotation + 10;
self.Rotate = rotation;
.
.
other code which works :-)
.
.
Sleep(10);
}