Ok i got a problem. I want a variable that at the beginning of the script equals "0" then after every loop "1" is added to it (so by the 3rd loop the variable will equal 3) this is the script i have doing it. the variable name is TimeRound. Waht am i doing wrong? Any help would be appreciated.
SCAR Code:procedure WhatTimeRound;
begin
Timeround = 0;
end;
SCAR Code:Procedure AddTimeRound;
begin
Timeround + 1;
end;








Reply With Quote



Dankness's way is way more efficent, use that.
