Hi i did my own ftwait procedure which i did because i needed in my script.
but it doesnt seem to work. what did i do wrong? can anyone help?
SCAR Code:function myftwait: integer;
var
t, i: Integer;
begin
for t := 1 to Time do
begin
Wait(1000);
for i := 1 to 2 do
begin
case i of
1: Result := FindTalk;
2: Result := HandleFight;
end;
end;
end;
end;
the goal of that is to wait 1 second and do findtalk and handle fight. it does findtalk and handle fight evry sec


Reply With Quote



