i was told that to find out if i was animating all i had to do was this:
SCAR Code:
if(IsAnimating)then
Result:= True;
So i made a very simple script to see if i could actually use this, if i got an error, i couldnt, if i didnt, i could.
and i got an error:
Code:
Unknown identifier 'IsAnimating' in script
Here is the script:
SCAR Code:
program AnimateTest;
{.include SRL\SRL.scar}
{.Include SRL/SRL/Reflection/Reflection.Scar}
Function AmIAnimating:Boolean;
Begin
if(IsAnimating)then
Result:= True;
end;
Begin
ClearDebug;
ActivateClient;
SetupSRL;
If AmIAnimating then
Writeln('im animating w00t');
else
Writeln('im not animating');
End.
So, my question is, am i doing something wrong [most likely an include] or is it just not a function?
ALSO, what include file could i find 'GetAnimation' in, as i would like to see what that is.