I'm fairly new to scripting, and tend to have trouble learning a lot(a bit out of my control) - anyways. I'm in need of help trying to get my script to bank, I don't know really how to do it, I've looked for tutorials, they seem to cease to exist?? apart from the little mention of it in the beginners guide, but that doesn't teach me how to apply it, so it doesn't help me really.
here's the code that I have so far, on what I think a bank process(sort of) would start to look like:
if it helps anyone in knowing, it banks at Edgeville, so the colour is for edgeville bank NPCs
Enjoy my most likely horrible standards.
Simba Code:procedure Bank();
begin
repeat
if not isLoggedin() then
break;
mainscreen.findObject(x, y, 8143188, 14, colorSetting(2, 0.38, 0.69), mainscreen.getCenterPoint(), 10, 50, 1, ['ank'], MOUSE_LEFT);
wait(randomRange(1321, 2534 ));
until bankscreen.isOpen();
if bankscreen.isOpen();
then bankScreen.clickButton(BANK_BUTTON_PRESET_1);// will this actually work?
end;

