I keep getting Exception in Script: Unable to find file 'SRL/SRL/Misc/Smart.simba' used from ''
I keep getting Exception in Script: Unable to find file 'SRL/SRL/Misc/Smart.simba' used from ''
Follow a setup guide, because you haven't installed Simba and SRL correctly.
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
I was getting this issue:
Realized after a lot of reading that SRL.scar doesnt existdue to updates so obviously the script is old so i renamed it to SRL.simbe That fixed that issue.Code:Exception in Script: Unable to find file 'SRL\SRL.scar' used from ''
Now another issue occurs:I read Simba doesnt use this script anymore and that theirs no point adding it into a script.Code:Exception in Script: Unable to find file 'SRL\SRL\Misc\stats.simba' used from ''
I am new to simba. I am using a script which i found in your scripts section and i cannot use the script for that error. How can i remove this part from the script to have it still run and work?
The script is called: DuffsUltimateDwarf;//by PatDuffy
Please help me fix this.
Sorry if i posted in an incorrect area, this seems to be the best place to post?. Also all my extensions are allowed and updated and i have already removed the .xml and restarted simba. SO its defiantly the script itself.
I believe i need to change/update this part of it:How do i fix this though?Code:SetAngle(True);
WOW so easy to fix.... All fixed now i juts need to make this script work better...
-Crash
Last edited by Crash Override; 05-31-2012 at 09:32 AM.
My problem isn't covered!
With ggzz's / Brandons WFK, I get an Access Violation at line 101 under the "smart" tab.
Code:Error: Exception: Access violation at line 101Code:{$DEFINE SRL_SMART} {$DEFINE SMART} {.loadlib libsmart} function IsKeyDown(C:Byte): Boolean; begin Result := SmartIsKeyDown(C); end; procedure MoveMouse(x, y: Integer); begin SmartMoveMouse(x, y); end; procedure HoldMouse(x, y: Integer; button : integer); begin if button = mouse_left then SmartHoldMousePlus(x,y,1) else if button = mouse_middle then SmartHoldMousePlus(x,y,2) else if button = mouse_right then SmartHoldMousePlus(x,y,3) else raiseexception(ercustomerror,'Unknown mouse button in SmartHoldMousePlus'); end; procedure ReleaseMouse(x, y: Integer; button : integer); begin if button = mouse_left then SmartReleaseMousePlus(x,y,1) else if button = mouse_middle then SmartReleaseMousePlus(x,y,2) else if button = mouse_right then SmartReleaseMousePlus(x,y,3) else raiseexception(ercustomerror,'Unknown mouse button in SmartReleaseMousePlus'); end; procedure KeyUp(key: Byte); begin If Key = 13 Then Key := 10; SmartReleaseKey(key); end; procedure KeyDown(key: Byte); begin If Key = 13 Then Key := 10; SmartHoldKey(key); end; procedure SendKeys(S: String; keywait{$IFNDEF SIMBAMAJOR980}, keymodwait{$ENDIF}: integer); begin SmartSendKeys(S); end; function FindAndSetTarget(TitlePrefix: String; SetAsTarget: Boolean): Boolean; var T : TSysProcArr; I : Integer; begin T := GetProcesses; for I := High(T) downto 0 do if Pos(TitlePrefix, T[I].Title) <> 0 then begin Result := True; if SetAsTarget then SetTarget(T[I]); Exit; end; end; procedure GetRealMousePos(var X, Y : Integer); var KMTarget, ITarget : Integer; begin KMTarget := GetKeyMouseTarget; ITarget := GetImageTarget; FindAndSetTarget('Public SMART', True); GetTClient.IOManager.GetMousePos(X, Y); FreeTarget(GetImageTarget); SetKeyMouseTarget(KMTarget); SetImageTarget(ITarget); // These are not universial offsets, but works somewhat for some Windows themes. X := X - 8; Y := Y - 25; end; procedure GetMousePos(var x, y: Integer); begin SmartGetMousePos(x, y); end; function IsRealMouseInBox(B : TBox): Boolean; var P : TPoint; begin GetRealMousePos(P.X, P.Y); Result := PointInBox(P, B); end; function GetColor(x, y: Integer): Integer; begin result:= SmartGetColor(x, y); end; procedure SmartSetTarget; begin SetTargetArray(SmartImageArray, 765,503); end; function FindWindow(Title: String): Boolean; begin result:= true; end; procedure ActivateClient; begin end; function FindWindowBySize(Width, Height: Integer): Boolean; begin result:= true; end; {procedure SmartSaveSettings(v: TVariantArray); var i: Integer; ts: TStringArray; begin ts := ['server', 'members', 'signed', 'sd', 'DC', IncludePath + 'SRL/SRL/misc/smartINI.ini']; for i := 0 to 4 do WriteINI('SMART', ts[i], v[i], ts[5]); end; } procedure SmartSetupEx(Server: integer; members, signed, superdetail: boolean); var prefix: string; begin prefix := ReadINI('World' + IntToStr(Server), 'Prefix', IncludePath + 'SRL/SRL/misc/worlds.ini'); if(prefix = '')then begin writeln('Invalid world number or corrupted world list. Please review your settings'); TerminateScript; end; SmartSetup('http://'+prefix+'.runescape.com/', 'plugin.js?param=o0,a' + IntToStr((Integer(not(Signed)) + 1) * Integer(not((SuperDetail and Signed)))) + ',m' + IntToStr(Integer(Members)), 765, 503, 's'); //SmartSaveSettings([Server, Members, Signed, SuperDetail, SmartGetDC]); end; {function SmartLastSettings: TStringArray; var i: Integer; ts: TStringArray; begin ts := ['server', 'members', 'signed', 'sd', 'DC', IncludePath + 'SRL/SRL/Misc/smartINI.ini']; SetLength(Result, 5); for i := 0 to 4 do Result[i] := ReadINI('SMART', ts[i], ts[5]); end; }
.
- I'm almost certain I installed Simba correctly
- My java version is fine still Java 6 (i think update 31)
- All other scripts I've tried work
- I've tried downgrading to SPS 1
I tried taking Coh3n's advice as well, but I probably done it wrong..
I made a thread asking about it here
![]()
Ouch, 101 is extremely annoying, have you uninstalled everything to do with simba and java, then reinstalled it?
Make sure you have 32bit Java installed.
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
@John: Why would I need to uninstall my Java, there's nothing wrong with it =/
Edit; Well I re-installed simba and now it's a different error.
[Error] (2478:10): Unknown identifier 'SPS_Loaded' at line 2477
Compiling failed.
Code:Function SPS_GetMyArea: string; var Minimap: T3DIntegerArray; t, map, ang, X, Y: integer; begin if not LoggedIn then Exit; if not SPS_Loaded then SPS_Load;@KyleMake sure you have 32bit Java installed.
![]()
Last edited by Mufasa; 05-31-2012 at 02:51 PM. Reason: Re-installed Simba
i have no clue what im doing so any help would be much appreciated im getting two mwssages down in the bottom of the program
______________________________________________
Compiled successfully in 687 ms.
SRL Compiled in 0 msec
Error: Out Of Range at line 2359
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]
________________________________________________
i dont know if this is a specific error with the script that im trying to run or if somethings wrong with my system can anyone give me some advice
What file is it opening when this error occurs?
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
gold bracelets this happens when i run a barbarian agility script
__________________________________________________ _
Compiled successfully in 640 ms.
SRL Compiled in 0 msec
Error: Out Of Range at line 2359
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]
[Error] C:\Simba\Scripts\barbagility.simba(57:11): Duplicate identifier 'FREEDTMS' at line 56
Compiling failed.
i have no clue what a dtm or a bitmap is but aparently i have a problem with them annother thing is when i ran an air orb charger an error message popped up saying that i didnt have MSRVCR100.dll could that be the problem
Please don't double post.
To fix the error, change all instances of FreeDTMs to something like Fr33DTMs.
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
...
You just rename it. How can you not understand that?
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
A new update of Simba is available!
Current version is 980. Latest version is 984
Opening MSI...
[Error] C:\Simba\Includes\srl/srl/misc/paintsmart.simba(560:12): Unknown identifier 'TPAFromEllipse' at line 559
Compiling failed.
how do i fix this
ah im glad i used the search button
im getting Exception in Script: in file "C:/Simba/Includes/SRL/SRL/misc/smart.simba
this means the script isn't compatible with srl?
if so i will wait but just trying to confirm
Simply a GOD beast...
My Tutorials
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
so if the scripts says
_____________________________________________
Procedure FreDTM;
Begin
FreeDTM(MapleLog);
FreeDTM(Knife);
FreeDTM(MapleLongBowu);
FreeDTM(MapleShortbowu);
FreeDTM(MapleLongu);
FreeDTM(MapleShortu);
FreeDTM(BowString);
FreeDTM(MapleLongBow);
FreeDTM(MapleShortBow);
FreeDTM(MagicLog);
FreeDTM(MagicLongbowu);
FreeDTM(MagicShortbowu);
FreeDTM(MagicLongubank);
FreeDTM(MagicLonguInv);
FreeDTM(MagicShortubank);
FreeDTM(MagicShortuInv);
FreeDTM(MagicLongbow);
FreeDTM(MagicShortbow);
end;
__________________________________
change all of those to fr33DTm?
When I try to use this script http://villavu.com/forum/showthread.php?t=74508 I get an error, the script doesn't start. &when i press the green play button I get this error.
Exception in Script: Unable to find file 'SRL/SRL/misc/SMART.simba' used from ''
I used to never get this error. Can someone please help me? I've tried the "fix" mentioned in this guide but I still can't get it to work. Can someone break it down for me?
Last edited by Fortune; 06-16-2012 at 01:56 AM.
SMART Initialized.
Loaded: Server 1, 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]
im getting this error everytime i try to run a script
Read how to fix it on the first post.
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
okay, new guy here.
I'm getting this error,
Exception in Script: Unable to find file 'srl/srl.simba' used from ''
when i downloaded/installed i went through
http://villavu.com/forum/showthread.php?t=47714 and,
http://villavu.com/forum/showthread.php?t=57883
i've gone through them both two or three times while searching other threads. the only thing that i can think of is when i tried to update each extension nothing came up. So i tried over riding them but,
SRL Updater: Local Version - "1" | Remote Version = "-1"
SRL Updater: Update File - "http://wizzup.org/static/srl/srl.tar.bz2"
SRL Updater: Downloading...
SRL Update ERROR: Didn't recieve any data from Update URL.
i just installed simba today. do i have the up to date version?
oh im running
program new;
{$DEFINE SMART}
{$i srl/srl.simba}
begin
SetupSRL;
end.
and
program new;
{$DEFINE SMART}
{$i srl/srl.simba}
begin
ClearDebug();
SetupSRL();
end.
There are currently 1 users browsing this thread. (0 members and 1 guests)