Deadly Serious
01-05-2012, 03:41 AM
I have 3 different walk paths that I want to implement into my script but I keep getting this error:
[Error] (677:5): Syntax error at line 676
Compiling failed.
Does anyone know how to fix this?
procedure WalkToAlter;
var
Path: TStringArray;
I: Integer;
Begin;
if not loggedin then exit;
FindNormalRandoms;
Antiban;
Case Random(6) Of
0: Path:= ['']; //this 0
for I := 0 to 0 do //I believe it's going wrong from the 0
ObjDTM_Walk(Path[i], 0, 100, 80, True);
Wait(1000+Random(500));
Path:= [''];
for I := 0 to 0 do
ObjDTM_Walk(Path[i], 0, 100, 80, True);
Wait(1000+Random(500));
[Error] (677:5): Syntax error at line 676
Compiling failed.
Does anyone know how to fix this?
procedure WalkToAlter;
var
Path: TStringArray;
I: Integer;
Begin;
if not loggedin then exit;
FindNormalRandoms;
Antiban;
Case Random(6) Of
0: Path:= ['']; //this 0
for I := 0 to 0 do //I believe it's going wrong from the 0
ObjDTM_Walk(Path[i], 0, 100, 80, True);
Wait(1000+Random(500));
Path:= [''];
for I := 0 to 0 do
ObjDTM_Walk(Path[i], 0, 100, 80, True);
Wait(1000+Random(500));