im writing a script for an rsps. this script can open the bank but i want to be able to have the script enter a pin. so far i only have
Simba Code:Const
//Banking
BankPin = True; // true if you have a pin, false if not
PinNumber = '';
and i have this
Simba Code:procedure Banking;
var x, y: integer;
begin
WriteLn('Starting to bank');
if BankPin then
begin
end;
since the bank pin numbers dont move, i want to set a coordinate for each number. i also want to be able to just enter a pin number into "PinNumber = ' '; " and have the string converted so each number can be given their respective coordinates. how would i achieve this? or could someone just point me in the right direction?


Reply With Quote











