View Full Version : Bank Pin Support
Anonymau5
05-31-2012, 03:28 PM
Hey.
I've been lurking around on these forums for awhile and I've decided to give Simba a try.
I was surprised, the Superheater I used was flawless, better than a paid Nexusbot. So I'm currently trying to use it to reach 99 Magic.
But I have a problem. The script doesn't solve your bank pin and I don't want to take it off (7 days XP waste). I want to know how I can make it support it cause I've installed the SMART Crash Update and I can now run past the 6 hour limit. But it needs my bank pin when it's logging back in.
I added this line: Pin := '[My Pin]'; below the Pass := '[My Password]'; but it didn't help, it didn't solve the Pin.
I'm using this script: http://villavu.com/forum/showthread.php?t=77376
Any help?
Cheers,
-mau5
DRose
05-31-2012, 03:30 PM
You should use SMARTManager to run scripts past 6 hours cause you it can enter the user/pass/pin for you :P
Here's a link to it :) http://villavu.com/forum/showthread.php?t=76404
Runaway
05-31-2012, 03:31 PM
Hey,
Find the banking procedure in the script you're using (do a ctrl+f for "BankScreen"), and add this in before the BankScreen check:
if PinScreen then
InPin(UserPin);
Then go to the top where the constants are declared and add this:
const
//... whatever else is here
InPin = '1234';
That should do the trick :)
Sirenia
05-31-2012, 04:18 PM
Or like this if you declare ur pin in declareplayers :) if PinScreen then
InPin(Players[CurrentPlayer].Pin)
Anonymau5
05-31-2012, 04:19 PM
There was no such thing. I read through the script and found the process but it doesn't seem like it can handle PIN's. Do you know where I can squeeze it in?
Also I type 96 in the world it should log into but it doesn't. Script/Client error?
Runaway
05-31-2012, 04:23 PM
There was no such thing. I read through the script and found the process but it doesn't seem like it can handle PIN's. Do you know where I can squeeze it in?
Also I type 96 in the world it should log into but it doesn't. Script/Client error?
Add it in during the beginning of the banking process then; if it doesn't work move it somewhere else in the process. Just keep testing different spots until it works :p
The SMART_Server option is not a world select option, it's the jagex server that the SMART client connects to when it's opened.
Sirenia
05-31-2012, 04:26 PM
Do Procedure DeclarePlayers;
begin
HowManyPlayers := 1;
CurrentPlayer := 0;
NumberOfPlayers(HowManyPlayers);
with Players[0] do
begin
Name := ''; // Username
Pass := ''; // Password
Pin := ''; // Bank pin
Member := True;
Active := True;
end;
end; somewhere in the script and write DeclarePlayers; after SetupSrl
Anonymau5
05-31-2012, 04:37 PM
Thank you very much.
I'll get on with it and post my progress when I have some spare time.
Anonymau5
05-31-2012, 05:02 PM
Do Procedure DeclarePlayers;
begin
HowManyPlayers := 1;
CurrentPlayer := 0;
NumberOfPlayers(HowManyPlayers);
with Players[0] do
begin
Name := ''; // Username
Pass := ''; // Password
Pin := ''; // Bank pin
Member := True;
Active := True;
end;
end; somewhere in the script and write DeclarePlayers; after SetupSrl
Got this error. Strange cause my Simba is updated.
[Error] (78:11): Duplicate identifier 'DECLAREPLAYERS' at line 77
Compiling failed.
Sirenia
05-31-2012, 05:31 PM
Oh that means you already got a DelcarePlayers in your script, press ctrl-F while inside simba and search for the original DelcarePlayers :D
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.