View Full Version : Can you run simba through a web browser?
tristen8878
05-24-2012, 09:51 PM
Just wondering
Yes.
Disable SMART in the script.
So find this:
{$DEFINE SMART}
and put two slashes // before it.
YoHoJo
05-24-2012, 09:55 PM
Also you will need to drag the crosshairs on simba onto the runescape client on your web browser.
Remember when doing this, Simba will take control of your mouse/keyboard so you can't use your computer during this time.
tristen8878
05-24-2012, 09:57 PM
Do I need to run it in safe mode or software
YoHoJo
05-24-2012, 10:00 PM
Safe mode.
Highest brightness.
Fixed screen settings.
All else low.
tristen8878
05-24-2012, 10:05 PM
Safe mode.
Highest brightness.
Fixed screen settings.
All else low.
Sweet thanks
uomeurlife
05-25-2012, 05:18 AM
//{$DEFINE SMART}
would it be done like that?
YoHoJo
05-25-2012, 05:21 AM
Yes
uomeurlife
05-25-2012, 05:48 AM
is there away you can assisst me becuz the way i did it doesnt work for me =/
Could you paste the Script here? There might be more to it than that.
uomeurlife
05-25-2012, 07:08 AM
program GuccisBattlestaffMaker;
//{//$DEFINE SMART}
{$i srl/srl/misc/smart.simba}
{$loadlib sps}
{$i srl/srl.simba}
{$i sps/sps.simba}
const
SRLStats_User = ''; // Your SRL Stats Username
SRLStats_Password = ''; // Your SRL Stats Password
MEMBERS = True;
NumbOfPlayers = 1;
StartPlayer = 0;
CraftingEXP = 135; // Edit this for exp gained per staff made.
var
StaffsMade, CraftEXP, Make, x, y: integer;
procedure DeclarePlayers;
var i:integer;
begin
NumberOfPlayers(NumbOfPlayers);
CurrentPlayer := StartPlayer
for i := 0 to NumbOfPlayers-1 do
Players[i].BoxRewards := ['XP'];
With Players[0] do
begin
Name := 'scribble dis'; //Username.
Pass := 'dirty100'; //Password.
Pin := '5265'; // Bank Pin.
Active := True;
end;
end;
procedure GetGoods;
begin
SetAngle(SRL_ANGLE_HIGH);
Wait(200 + Random(100));
OpenBankChest(SRL_BANK_SW);
if (BankScreen) or (PinScreen) then
begin
if (PinScreen) then
repeat
InPin(Players[0].Pin);
until (BankScreen);
if (BankScreen) then
begin
WriteLn('Bank is Open');
DepositAll;
Withdraw(0, 0, 14);
Withdraw(1, 0, 14);
Wait(300);
CloseBank;
WriteLn('Got Goods');
end;
end;
end;
procedure DepositGoods;
begin
if (InvCount = 14) then
begin
OpenBankChest(SRL_BANK_SW);
if (BankScreen) or (PinScreen) then
begin
if (PinScreen) then
repeat
InPin(Players[0].Pin);
until (BankScreen);
if (BankScreen) then
begin
WriteLn('Bank is Open');
DepositAll;
Wait(300);
CloseBank;
WriteLn('Deposited Staffs');
end;
end;
end;
end;
procedure DTMS;
begin
Make := DTMFromString('mLgAAAHicY2JgYJBnYmDQBmIjIFYC4uJgAY YFC5YzwAAjFDMwAABU/wNo');
end;
procedure FrDTM;
begin
FreeDTM(Make);
end;
procedure MakeStaffs;
begin
MouseSpeed := 40;
InvMouse(14, mouse_left);
Wait(100);
InvMouse(15, mouse_left);
Wait(300 + Random(20));
Mouse(257, 428, 0, 0, True);
Wait(18000 + Random(20));
end;
procedure StaffMade;
begin
if BankScreen then
IncEx(StaffsMade, 14);
end;
procedure Report;
begin
if (BankScreen) then
begin
CraftEXP:= (StaffsMade*CraftingExp);
Writeln('############ Guccis Staff Maker ##########');
Writeln('|= Player : ' + Players[CurrentPlayer].Name);
Writeln('|= Time Running : ' + TimeRunning);
Writeln('|= Crafting EXP gained : ' + IntToStr(CraftEXP));
Writeln('######################################### #');
end;
end;
Begin
Smart_Signed := TRUE;
Smart_Members := MEMBERS;
Smart_SuperDetail := FALSE;
Smart_Server := 30;
ActivateClient;
SetupSRL;
DTMS;
DeclarePlayers;
if not (LoggedIn) then
LoginPlayer;
Wait(4000+random(400));
SetAngle(SRL_ANGLE_HIGH);
Repeat
GetGoods;
MakeStaffs;
if (InvCount = 14) then
DepositGoods;
Report;
Until(False)
FrDTM;
End.
uomeurlife
05-25-2012, 07:10 AM
idk maybe its sumten i did wrong wen i was seting it up. because nun of the scripts i download work.. i FAIL
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.