Simba Code:
Function CheckStuff: Boolean;
var
CTS: Integer;
Coords, Color: Array of Integer;
Hue, Sat: Extended;
begin
If(Not(LoggedIn))Then Exit;
I := 0;
Color := [1288552,{Ring}3546718{Hat}];
//Coords :=[34,344];
Hue.M:= [0.56,0.34];
Sat.M:= [0.37, 2.00];
CTS := GetColorToleranceSpeed;
ColorToleranceSpeed(2);
//SetColorspeed2Modifiers(Hue.M, Sat.M);
GameTab(tab_EQUIP);
Begin
SetColorspeed2Modifiers(, Sat.M);
if ColorWait(2000, Color[0], Coords[0], Coords[1], Coords[2], Coords[3], 18) Then
Continue;
Get this error
Simba Code:
(729:6): Semicolon (';') expected at line 728
Compiling failed.
Line 728 is
Not sure why? I have tried to place a ; in several places but nothing. Note no this is not the complete function.
Is it even possible to have an array of extended?