I am trying to setup a new script using the new Smart adding method, but i keep getting this error:
SCAR Code:
Line 8: [Error] (19562:11): Duplicate identifier 'MOVEMOUSE' in script C:\Users\Rodrigues\Desktop\Scar 3.21 Alpha\includes\SRL/SRL/Misc/SMART.scar
in this script:
SCAR Code:
program New;
{.include srl/srl.scar}
{.include SRL/SRL/Misc/SMART.scar}
const
SmartWorld= 00; //Smart World?
Members= True; //Members world or no
SignedC= False; //Use signed client?
begin
Smart_Server:= (SmartWorld);
Smart_Members:= (Members);
Smart_Signed:= (SignedC);
Smart_SuperDetail:= false;
SetUpSRL;
end.
It redirects me to the function MoveMouse in the Smart folder, can anybody help me with this error?
~DeSnob