I'm trying to make a Tip Sender i really don't know why this isn't working please help me it keeps spamming the the Text1
Need some quick help please
Simba Code:repeat
MarkTime(TipTime);
repeat
if (TimeFromMark(TipTime) >= 2000) then
begin
TypeSendCustom(Text1);
Exit;
end;
if (TimeFromMark(TipTime) >= 4000) then
begin
TypeSendCustom(Text2);
wait(1000)
end;
if (TimeFromMark(TipTime) >= 6000) then
begin
TypeSendCustom(Text3);
wait(1000)
end;
if (TimeFromMark(TipTime) >= 8000) then
begin
TypeSendCustom(Text4);
wait(1000)
Exit;
end;
if (TimeFromMark(TipTime) >= 10000) then
begin
TypeSendCustom(Text5);
wait(1000)
Exit;
end;
until(TimeFromMark(TipTime) >= 10500)
until(false)


Reply With Quote











