$runstotal = 30
$runs = 0
While True
Select
Case $faction = 1
If $mode = 1 Then
Select
Case $runstotal <> $runs And @HOUR <> $hour
$runs = $runs + 1
_runkurzick();
_questkurzick();
_rewardkurzick();
_travelkurzick();
Case $runstotal = $runs And @HOUR <> $hour
$runs = $runs - 30
_exchangekurzick();
Case Else
_shutdown();
EndSelect
ElseIf $mode = 2 Then
_sleep();
EndIf
Case $faction = 2
If $mode = 1 Then
Select
Case $runstotal <> $runs And @HOUR <> $hour
$runs = $runs + 1
_runluxon();
_questluxon();
_rewardluxon();
_travelluxon();
Case $runstotal = $runs And @HOUR <> $hour
$runs = $runs - 30
I edited the ones in bold but now my computer freezes lol idk at what point but it usually only gets around 10k in then feezes, but i can still move the mouse, nothing eles responds. Would this be due to the numbers i edited or is it just my computer?
BTW do i change it to 30 or do i have to write (+3) somwhere?
Thanks again.
$runs = 0
While True
Select
Case $faction = 1
If $mode = 1 Then
Select
Case $runstotal <> $runs And @HOUR <> $hour
$runs = $runs + 1
_runkurzick();
_questkurzick();
_rewardkurzick();
_travelkurzick();
Case $runstotal = $runs And @HOUR <> $hour
$runs = $runs - 30
_exchangekurzick();
Case Else
_shutdown();
EndSelect
ElseIf $mode = 2 Then
_sleep();
EndIf
Case $faction = 2
If $mode = 1 Then
Select
Case $runstotal <> $runs And @HOUR <> $hour
$runs = $runs + 1
_runluxon();
_questluxon();
_rewardluxon();
_travelluxon();
Case $runstotal = $runs And @HOUR <> $hour
$runs = $runs - 30
I edited the ones in bold but now my computer freezes lol idk at what point but it usually only gets around 10k in then feezes, but i can still move the mouse, nothing eles responds. Would this be due to the numbers i edited or is it just my computer?
BTW do i change it to 30 or do i have to write (+3) somwhere?
Thanks again.