I ran across the Animating command earlier today and it looks like it would solve a few problems in my script when it misclicks by chance. I'm just not sure how to set up the box to be looking at the character model. What I tried to do was this:
Simba Code:
var
x, y: integer;
box: TBox;
begin
box:= ([MSCX-15, MSCY+40], [MSCX+15, MSCY-40]);
Simba Code:
repeat
Wait(1000);
until(Animating(box, 5000, 2000)
And when I do I get this error:Closing parenthesis expected at line 91(the line the box:= is on). I think I'm getting it because I'm just defining the box incorrectly, but I'm not entirely sure.
Any help would be greatly appreciated
Thanks,
Mezz