Hi there, I'm unable to get this script to work, I've tried using different methods to no avail. One of my attempts I was able to get it to continue to clicking (it's purpose) but it wasn't able to tell me when the inventory was full. As I am new to this, I even tried havinglisted 27 times, and that did not work either. I also even removed the backpack is full and tried to have it fastclick the bank and that did not work. I am stuck. I would greatly appreciate any and all help! Thank you.Code:fastClick(MOUSE_LEFT); wait(randomRange(1500, 2500));
and yes, I know there is virtually no antiban aspect. This script was supposed to be simple and pretty much only click. --
------ Succesfully initialized via spawning a new clientCode:script {$DEFINE SMART} {$I SRL-6/SRL.simba} {$I SPS/lib/SPS-RS3.Simba} procedure declarePlayers(); begin setLength(players, 1); with players[0] do begin loginName := 'x'; password := 'x'; isActive := true; isMember := true; end currentPlayer := 0; end; procedure makeMoney(); begin mouse(603, 361, 25, 45, MOUSE_MOVE); repeat fastClick(MOUSE_LEFT); wait(randomRange(1500, 2500)); until tabBackPack.isFull(); end; procedure attemptToBank() begin bankScreen.open(BANK_BOOTH); wait(randomRange(500, 1000)); bankScreen.clickButton(BANK_BUTTON_PRESET_1); wait(randomRange(1000, 3000)); end; begin clearDebug(); smartEnableDrawing := true; setupSRL(); declarePlayers(); if not isLoggedIn() then begin players[currentPlayer].login(); exitSquealOfFortune(); mainScreen.setAngle(MS_ANGLE_HIGH); minimap.setAngle(MM_DIRECTION_NORTH); end; makeMoney(); attemptToBank(); end.
---- initSmart()
------ smartSetupDrawing(): Succesfully setup SMART drawing
---- Waiting up to 5 minutes for RS to load...
------ __setInputBoxes(): Set username and password boxes
---- Client is ready.
---- Setup SRL in 38 Seconds
-- setupSRL(): True
-- TPlayer.login()
---- TPlayer.loginToLobby()
------ [[[my login name]] ()
------ Entering username...
------ Entering password...
-------- TRSLobby._skipEmailScreen(): Closed validate email screen
-------- Saving screenshot: IP_address.png
------ Found lobby screen
---- TPlayer.loginToLobby(): True
------ TRSLobbyWorlds.selectRandomWorld(): Random world is 69
---- TRSLobby.getCurrentTab(): Current tab is 0
---- TRSLobby.getCurrentTab(): Current tab is 0
---- TRSLobby.getCurrentTab(): Current tab is 0
---- TRSLobby.getCurrentTab(): Current tab is 1
---- TRSLobby.openTab(): Result = True
---- TRSLobby.getCurrentTab(): Current tab is 1
---- TRSLobbyWorlds.selectWorld()
------ TRSLobby.getCurrentTab(): Current tab is 1
-------- TRSLobbyWorlds.getCurrentWorld(): Current world is 31
------ TRSLobby.getCurrentTab(): Current tab is 1
------ Scrolled to and found world 69
------ Selected world 69
---- TRSLobbyWorlds.selectWorld(): True
------ TRSLobby.findPlayButton(): result = True
---- WARNING: Unknown login string: ""
---- HINT: Please report this issue in the SRL bugs section of the forum
------ Saving screenshot: unknown_login_count.png
---- Login response: One minute as passed...
------ All players inactive...
-- TPlayer.login(): False
-- ERROR: bankScreen.clickButton(): Unable to click button since bankscreen isn't open
-- Succesfully freed SMART[76284]
Successfully executed.
I don't always get a warning, either


Reply With Quote











