Using it right now, works awesome! Thanks!
Using it right now, works awesome! Thanks!
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
Hey Coh3n, firstly, you did an amazing work, thank you so much !!!
Secondly (huhu sorry, nothing is beautiful very long in this world), I got a liiiittle problem, to relocate where I'm (when relogin), as the tree symbol on the minimap is actually far from the tree (the fishing one is the nearest), when I relogin away from bank, my character is going south away from the trees ! D:
In that way, I couldn't have a 3hours+ session.
What dev did you use for your last day woodcutting session ?
Thanks for reading, have a great day !
Edit : Ps : Hey, why am not an old-timer, as I joined in 2007 O: )
Last edited by Xlr; 06-18-2014 at 10:54 AM.
Congrats on first post in 7 years! It runs south because it doesn't think it's at the willows yet. This is because the location recognition is reliant on the minimap symbols which have been outdated since the RS update a few months ago. You could create a new function which recognises a unique colour on the symbol or something? IDK what the fishing symbol looks like, but maybe you could make a quick fix by replacing this function:
Simba Code:function Find_PlayerLocation: String;
var
dist: Integer;
p: TPoint;
begin
if (minimap.findSymbol(p, MM_SYMBOL_FISHING, minimap.getBounds())) then
begin
dist := Distance(p, minimap.getCenterPoint());
DCnB_Debug('Find_PlayerLocation', 'Symbol Distance = ' + IntToStr(dist), DEBUG_DETAILS);
if (dist > 50) then
Result := 'Bank'
else
Result := 'Willows';
end else
Result := 'Bank';
DCnB_Debug('Find_PlayerLocation', 'Location = ' + Result, DEBUG_PLAYER);
end;
with something like:
Simba Code:function Find_PlayerLocation: String;
var
dist, x, y: Integer;
p: TPoint;
begin //colour //tol
if findColorSpiralTolerance(x, y, 1234567, minimap.getBounds(), 10, colorSetting(1, 0.00, 0.00)) then
begin
p := point(x, y);
dist := Distance(p, minimap.getCenterPoint());
DCnB_Debug('Find_PlayerLocation', 'Symbol Distance = ' + IntToStr(dist), DEBUG_DETAILS);
if (dist > 50) then
Result := 'Bank'
else
Result := 'Willows';
end else
Result := 'Bank';
DCn
Hahaha thanks, allmost as old as you are, but am a ghost secretly !
Thank you so much, as am a C/C++ programmer and not pascal, I was a bit bored of finding the way how to make it work correctly, now gonna be fixed !
Your work guys is amazing, keep it up !
French thanks !!
Ps : for all those who get a problem after the relogging, there was also another thing to check, remember to disable the annoying poll voting popup !
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
Looking awesome! Gonna use it to finish of my last 20 levels of woodcutting
hi i'm new i got a problem with the mouseovertext, i cant click on any tree, is it because i dont use SMART? i use direct x cuz i got problems using OpenGL.
mouseovertext.PNG
sorry if this is a newby question >.<
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
it doesnt work 100% for me, it always says:
[0:00:43]: ---- Current mouse-over text: ""
[0:00:43]: ---- Current mouse-over text: ""
[0:00:43]: ---- Current mouse-over text: ""
[0:00:43]: ---- Current mouse-over text: ""
[0:00:43]: -- isMouseOverText(): False
[0:00:43]: ERROR: Chop_Tree: Failed to find mouseOverText
[0:00:44]: -- isMouseOverText()
[0:00:44]: ---- Current mouse-over text: ""
[0:00:44]: ---- Current mouse-over text: ""
[0:00:44]: ---- Current mouse-over text: ""
[0:00:44]: ---- Current mouse-over text: ""
[0:00:44]: ---- Current mouse-over tex[0:00:44]: -- isMouseOverText(): False
[0:00:44]: ERROR: Chop_Tree: Failed to find mouseOverText
[0:00:44]: -- isMouseOverText()
[0:00:44]: ---- Current mouse-over text: ""
[0:00:44]: ---- Current mouse-over text: ""
[0:00:44]: ---- Current mouse-over text: ""
[0:00:44]: ---- Current mouse-over text: ""
[0:00:45]: ---- Current mouse-over text: ""
[0:00:45]: ---- Current mouse-over text: ""
[0:00:45]: ---- Current mouse-over text: ""
[0:00:45]: ---- Current mouse-over text: ""
[0:00:45]: ---- Current mouse-over text: ""
[0:00:45]: ---- Current mouse-over text: ""
[0:00:45]: -- isMouseOverText(): False
[0:00:45]: ERROR: Chop_Tree: Failed to find mouseOverText
[0:00:45]: -- isMouseOverText()
[0:00:45]: ---- Current mouse-over text: ""
[0:00:45]: ---- Current mouse-over text: ""
[0:00:45]: ---- Current mouse-over text: ""
[0:00:45]: ---- Current mouse-over text: ""
[0:00:45]: ---- Current mouse-over text: ""
[0:00:45]: ---- Current mouse-over text: ""
[0:00:45]: ---- Current mouse-over text: ""
[0:00:45]: ---- Current mouse-over text: ""
[0:00:46]: ---- Current mouse-over text: ""
[0:00:46]: ---- Current mouse-over text: ""
[0:00:46]: -- isMouseOverText(): False
[0:00:46]: ERROR: Chop_Tree: Failed to find mouseOverText
[0:00:46]: -- isMouseOverText()
[0:00:46]: ---- Current mouse-over text: ""
[0:00:46]: ---- Current mouse-over text: ""
[0:00:46]: ---- Current mouse-over text: ""
[0:00:46]: ---- Current mouse-over text: ""
[0:00:46]: ---- Current mouse-over text: ""
[0:00:46]: ---- Current mouse-over text: ""
[0:00:46]: ---- Current mouse-over text: ""
[0:00:46]: ---- Current mouse-over text: ""
[0:00:46]: ---- Current mouse-over text: ""
[0:00:46]: -- isMouseOverText(): False
[0:00:46]: ERROR: Chop_Tree: Failed to find mouseOverText
he only takes one tree and doesnt bank when full
@Nicodemus; Make sure your SRL is updated, and that you have mouse-over text enabled in your settings.
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
Hello thanks for the script it looks like you spent alot of time on it ...but for some reason for me it does not work i haven't played RS for a time ... and i see here programing has changed and i don't know how to use Srl-6 ...and my old scripts does not work on this new simba ...amyway if someone would be willing to help me ...this appear in the debugs line
[00:00:18]: ---- Setup SRL in 15491ms.
[00:00:18]: -- setupSRL(): True
[00:00:18]: -- TPlayerArray.setup()
[00:00:18]: ---- WARNING: Invalid player name: ***/Display Name
[00:00:18]: -- TPlayerArray.setup(): Success
[00:00:18]: Exception in Script: Runtime error: "Access violation" at line 133, column 29
The following bitmaps were not freed: [Minimap Mask, SMART Debug Image]
File[C:\Simba\Includes\SRL-6/logs/SRL log (22-07-14 at 07.02.32 PM).txt] has not been freed in the script, freeing it now.
Last edited by masterBB; 07-25-2014 at 04:58 PM.
You haven't set up your players properly. I suggest looking at this tutorial.
You also didn't replace your username properly. The "Player's Nickname" and "Display Name" shouldn't be included in that string. You can enter your nickname OR login name OR display name.
Last edited by masterBB; 07-25-2014 at 04:59 PM.
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
They are set up properly other scripts worked with that Player Manager file anyway
I replaced this line
Players.Setup(['Player''s Nickname/Login Name/Display Name'], 'PlayerFileName');
with this line from anoter script players.setup(['charnamehere'], 'playerfilehere');
Has loged in but it doesn;t do anything just stands there with the red dot(cursor) in the same place, like all other scripts that i have tried and i set the grapichs like they said in the tutorial MIN OpenGL Full Brightness
I don't think is from the tollerence so i dont have any more ideas
Edit: That player setup still does not work for me ... with the other one works and it does cut trees now and bank i forgot about all the interface and all other staff ...my bad
Last edited by Marius90; 07-22-2014 at 07:43 PM. Reason: Silly me
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
Yes Cohen it does work very well thank you, i forgot about a few graphic settings
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
I'm sure this is a great script, i'm dying to use it.. But once i get on to SMART it does nothing but sit there. I don't know if i set up the script right
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
Could you help? I'm a big newbie when it comes to simba for botting.
There are instructions on how to set your graphics properly in the RS3 setup guide.
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
@Ionutz900 I removed your runescape name from your post and coh3n his quote. Be careful not to post it on a bottings site![]()
Working on: Tithe Farmer
There are currently 1 users browsing this thread. (0 members and 1 guests)