Log in

View Full Version : help please im new!!!



cotton1212
05-27-2012, 05:40 PM
ok iv have tryed to put alot of scripts on but i ceep getting this at the bottom of the screen and the runescape window dosent pop up i downloaded everything checked for updates everything but this is what i get at the bottom


SRL Compiled in 16 msec
SMART Initialized.
Loaded: Server 87, Members: True, Signed: True, Super Detail: False.


and idk what im doing wrong but this happens on every script i try and once it started runescape but it took like 2 hours to get to right befor the loggin screen and it just stoped and on the black screen it said could not request runescape but most of the time it doent even open up rs


this is just on of the scripts i tryed and this is what i put in on the thing were it says like pass and loggin stuff (fake loggin) info but am i missing enything or is this a commen froblem


program new;
{$include srl/srl/misc/smart.simba}
{$I SRL/SRL.simba}
{$I srl/srl/misc/debug.simba}
{$I sps/sps.simba}
var
StartTime,WorldHopped:Integer;
//progress variables
skiller:Boolean;
XP,XPH,Sec:Integer;
procedure DeclarePlayers;
begin

Skiller := False;

HowManyPlayers := 1;
NumberOfPlayers(1);
CurrentPlayer := 1;

Players[0].Name := 'your mom'; // Username
Players[0].Pass := 'password'; // Password
Players[0].Active := True;
Players[0].Pin := '1776';
Players[0].BoxRewards := ['Xp', 'mote', 'ostume', 'oins', 'aphire', 'ssence'];
end;// declare players
procedure SetupLogin;
begin
ClearDebug;
Smart_Server := 87;
Smart_Members := True;
Smart_Signed := True;
Smart_SuperDetail := False;
SetupSRL;
end;
function IsMining:Boolean;
var
PBox: Tbox;
begin
PBox := IntToBox(231,139,290,193);
//writeLn(AveragePixelShift(PBox,250,1000));
Result := (AveragePixelShift(PBox, 250, 1000) > 800);
end;
function IsUptextAvailable:Boolean;
begin
Result := False;
MouseBox(178,174,222,184,3);
if WaitUptext('posit',750) then
Result := True;
if not IsMining and Result then
ClickMouse2(True);
end;
function RecheckUptext:Boolean;
begin
MMouse(201,177,10,10);
If IsUptext('alk h') then
Result := True else IsUptextAvailable;
end;
procedure MineGold; forward;
function DropFullInv:Boolean;
var
i,EndInvSlot:Integer;
begin
if Skiller then
EndInvSlot := 27 else EndInvSlot := 28;
if InvFull then
begin
for i := 1 to EndInvSlot do
begin
if ExistsItem(i) then
begin
MouseItem(i,0);
ChooseOption('rop');
end;
end;
end;
end;
procedure WorldHop;
begin
if ExitToLobby then
begin
repeat
wait(10);
until LobbyScreen;
if OpenWorldScreen then
ChangeWorld(RandomWorld(True,False));
Inc(WorldHopped);
repeat
wait(10);
until LoggedIn;
GameTab(tab_Inv);
end;
end;
procedure Proggy;
var
OresMined:Integer;
begin
ClearDebug;
XP := GetXPBarTotal - Players[CurrentPlayer].Integers[0];
Sec:= (1+((Getsystemtime-StartTime)/1000));
XPH := (3600*XP) / (SeC);
OresMined := XP / 65;

writeLn('===================================');
writeLn('============S1NLRCMiner============');
writeLn('Time Running: ' + TimeRunning);
writeLn('XP Earned: ' + IntToStr(XP));
writeLn('XP/h: ' + IntToStr(XPH));
writeLn('Ores Mined: ' + IntToStr(OresMined));
writeLn('World Hopped ' + IntToStr(WorldHopped) + ' times');
writelN('===================================');
writeLn('===================================');
end;
procedure MineGold;
begin
if IsUptextAvailable then
writeLn('Ore is available');
while (not InvFull) do
begin
if FindNormalRandoms then
if not LoggedIn then
TerminateScript;
DropFullInv;
if not IsMining then
begin
if RecheckUptext then
begin
writeLn('Uptext not there');
WorldHop;
end;
if LobbyScreen then
WorldHop;
Proggy;
end else
begin
Proggy;
Wait(5000 + Random(500));
if LobbyScreen then
begin
WorldHop;
IsUptextAvailable;
end;
end;
end;
if InvFull then
DropFullInv;
if LobbyScreen then
begin
IsUptextAvailable;
WorldHop;
end;
end;
begin
ClearDebug;
SetupLogin;
DeclarePlayers;
LoginPlayer;
MouseSpeed := RandomRange(22,25);
if loggedIn then
ClickNorth(SRL_ANGLE_HIGH);
ChatsOff;
StartTime:=GetSystemTime;
if (Players[CurrentPlayer].Integers[1] = 0) then
begin
if not IsXPBarOpen then ToggleXPBar(true);
Players[CurrentPlayer].Integers[0] := GetXPBarTotal;
Players[CurrentPlayer].Integers[1] := (Players[CurrentPlayer].Integers[1] + 1);
end;
repeat
MineGold
until AllPlayersInactive;
end.

YoHoJo
05-27-2012, 05:44 PM
When posting a script, put it in simba tags so it's nicer to read.

Um so if SMART comes up, but loads slow, there is a slider on the right side of SMART, drag that thingy up and down a little bit and RS will load faster.

Read the FAQ thread under 'Script won't log in' to see the proper graphics settings you must have set on Runescape for scripts to work.

Besides that I need more/better details about exactly what's going on.

cotton1212
05-27-2012, 05:49 PM
what type of details do u need i can get you eny thing SRL Compiled in 16 msec
SMART Initialized.
Loaded: Server 87, Members: True, Signed: True, Super Detail: False.


on the thing above what does that mean is there enyway to fix and and does everyone get that

cotton1212
05-27-2012, 06:09 PM
please help

YoHoJo
05-27-2012, 06:09 PM
I'm still lost, the debug box should say those messages, that is good.
Now what happens next? Does runescape pop up?

If not, wait a minute or so, sometimes on the very first run it takes many minutes for SMART/Runescape to pop up, if it takes like over 5 minutes and no runescape, try uninstalling Java, and install JDK (NOT JRE) VERSION 6. Sometimes that solves it.

Google a download link for it.

cotton1212
05-27-2012, 06:11 PM
it dosent do enything but ill wait the 5 minuets but on the script did i fill out the info right on the origonal post?

YoHoJo
05-27-2012, 06:15 PM
Hmm yeah I've seen this one before recently it's a bit rare.
So, follow the link in my sig for the 'SMART LAG FPS FIX' and use revo uninstaller to uninstall all java etc etc, BUT instead of installing JRE 6, install JDK 6 (google for a download link, should be easy to find).

I believe that's how I/Brandon fixed it for someone else a few days ago.

cotton1212
05-27-2012, 06:19 PM
ya i just tryed for a link could you provide me with one?

YoHoJo
05-27-2012, 06:24 PM
Preeeeety sure this is it:
http://www.oracle.com/technetwork/java/javase/downloads/jdk-6u32-downloads-1594644.html

If not, can someone hook this guy up with link to JDK VERSION 6 NOT 7.

Sorry about all these setup troubles, but I assure you once it's all set up it's easy to once after you get the hang of it, and definitely worth it!

cotton1212
05-27-2012, 06:41 PM
ya i did all that downlaoded re downloaded now im getting this



Compiled successfully in 718 ms.
SRL Compiled in 0 msec
SMART Initialized.
Loaded: Server 11, Members: False, Signed: False, Super Detail: False.
Error: Exception: Access violation at line 101
The following DTMs were not freed: [SRL - Lamp bitmap, 1]
The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap]

cotton1212
05-27-2012, 07:00 PM
wait i have every extiotion turned could that be causing it ?

YoHoJo
05-27-2012, 07:04 PM
CON FLABBIT! you are a very unlucky ducky.
101 is normally because it thinks Java is bot installed :(
I'm on mobile and can't reach a computer until later tonight, I could TeamViewer and try to help you then.

cotton1212
05-27-2012, 07:09 PM
ok if u cant help me till tonight its fine but please try to tonight but is there enything i can do right now to get it knowing java is there?

cotton1212
05-27-2012, 07:11 PM
and after i redownloaded java agin after that it whent back to the thing befor not there java isnt there so i guess it knows java is there but it isnt loading runescape?
i downloaded jdk redownloaded java and still wont open rs if i am filling out the password and loggin wrong will it not open runescape?

YoHoJo
05-27-2012, 07:15 PM
Filling out password and stuff in script doesn't effect the client/smart at all. You can fill it in or leave it blank, either way when you press play smart should load.

My only guesses and advice are to super thoroughly remove Java. So much so that when you try to go to Runescape on your browser it says you need to Dowload additional plugins.

Then install JRE 6. And then it should just work!

cotton1212
05-27-2012, 07:34 PM
do i need to move the jdk to simba file?