im making my own power wc now![]()
but i used to run a script that doesnt run back when it ran from a fight
if (FindFight) then
begin
RunAwayDirection('N');
Wait(4000 + Random(2000));
runback;
end;
it just ran north and continued the script loking for trees with out running back
so i changed to script like this
if (FindFight) then
begin
RunAwayDirection('N');
Wait(4000 + Random(2000));
RunAwayDirection('S');
end; .....and it worked but thats not it
it suppose to run back normal with this
if (FindFight) then
begin
RunAwayDirection('N');
Wait(4000 + Random(2000));
runback;
end; ....right ? so didnt it runback?
confused new scripter



and it worked but thats not it
Reply With Quote
h):








