Yea but just use
Use this
SCAR Code:
Procedure WithDraw;
Begin
If (ChooseOption('ithdraw 4000')) Then
Begin
Writeln('All good, we withdrawed 4000 coins');
End Else
Begin
If (ChooseOption('draw-X')) Then
Begin
Writeln('Withdraw 4000 was not present so we are withdrawing it manually');
Withdraw(0, 0, 4000); //Coins in First slot in bank
End Else
Begin
Writeln('Oh shit. Something is wrong cant find Withdraw 4000 or Withdraw-X');
TerminateScript;
End;
End;
End;
Youll have to test it tho, not sure if it will work like that, not sure about the
SCAR Code:
If (ChooseOption('ithdraw 4000')) Then