I am very good at scripting, but i ran into a problem. So heres the situation: Im cutting normal trees near a symbol, I want to click the symbol every 4 logs to prevent me from wandering off, but in the proecedure "FindFurnaceSymbolProcedure;", it looks for the furnace symbol and if it doesnt find it, it will log out. I am not near the furnace symbol while im cutting though and i only want the FindFurnaceSymbolProcedure to happen at the beggining of the loop after everything else happens so i can find the furnace then, now while im cutting.
SCAR Code:
repeat
FindFurnaceSymbolProcedure; //I only want to use this procedure once the loop starts over
repeat
ChoppingTrees;
if(invcount = 4)then
FindSymbol; //I changed name of this, i have procedure to find the symbol in script that i want to click every 4 logs
ChoppingTrees;
if(invcount = 8)then
FindSymbol;
ChoppingTrees;
if(invcount = 12)then
FindSymbol;
ChoppingTrees;
if(invcount = 16)then
FindSymbol;
ChoppingTrees;
if(invcount = 20)then
FindSymbol;
ChoppingTrees;
if(invcount = 24)then
FindSymbol;
ChoppingTrees;
if(invcount = 28)then
OnceFullInventory; //This will walk back and sell/bank the stuff only the inv is full
until(LoggedIn) and (Loads >= LoadsWanted)
begin
Logout;
Nextplayer(True);
end;
until(false);
end;
end.