Page 90 of 100 FirstFirst ... 40808889909192 ... LastLast
Results 2,226 to 2,250 of 2479

Thread: [SRL-6] Draynor Chop N' Bank | By Coh3n

  1. #2226
    Join Date
    Jun 2014
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Using it right now, works awesome! Thanks!

  2. #2227
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by bestplox View Post
    Hello! I would like to ask you if you could update your script? The script seems unsteady because sometimes it just shuts down. I have feeling that i can't find colors after like 10min - 1hour session, which leads us to logging out to the login screen. Thanks
    Unfortunately I do not have the time this summer. If you're having trouble finding colors I suggest making sure your graphics (especially brightness) are set correctly.

  3. #2228
    Join Date
    Jul 2007
    Location
    Paris
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Red face

    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.

  4. #2229
    Join Date
    Jun 2007
    Location
    The land of the long white cloud.
    Posts
    3,702
    Mentioned
    261 Post(s)
    Quoted
    2006 Post(s)

    Default

    Quote Originally Posted by Xlr View Post
    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 !

    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

  5. #2230
    Join Date
    Jul 2007
    Location
    Paris
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    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 !

  6. #2231
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by Xlr View Post
    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 !
    You can disable those? Or do you mean just close it?

  7. #2232
    Join Date
    Jul 2014
    Location
    Sweden
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Looking awesome! Gonna use it to finish of my last 20 levels of woodcutting

  8. #2233
    Join Date
    Aug 2012
    Posts
    52
    Mentioned
    1 Post(s)
    Quoted
    28 Post(s)

    Default

    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 >.<

  9. #2234
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by Nicodemus View Post
    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 >.<
    Does the mouse over text actually show up? I know when you move your mouse over the tree it only shows in certain areas. If it does show up, make sure you have the Direct X plugin (d3d9.dll) in your Simba/Plugins folder.

  10. #2235
    Join Date
    Aug 2012
    Posts
    52
    Mentioned
    1 Post(s)
    Quoted
    28 Post(s)

    Default

    Quote Originally Posted by Coh3n View Post
    Does the mouse over text actually show up? I know when you move your mouse over the tree it only shows in certain areas. If it does show up, make sure you have the Direct X plugin (d3d9.dll) in your Simba/Plugins folder.
    hi!
    i dont got the problem anymore cuz im gonna use an other laptop and it supports OpenGL with no problems

    Thank you for your help anyway! :3

  11. #2236
    Join Date
    Aug 2012
    Posts
    52
    Mentioned
    1 Post(s)
    Quoted
    28 Post(s)

    Default

    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

  12. #2237
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    @Nicodemus; Make sure your SRL is updated, and that you have mouse-over text enabled in your settings.

  13. #2238
    Join Date
    May 2013
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    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.

  14. #2239
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by Ionutz900 View Post
    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.
    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.

  15. #2240
    Join Date
    May 2013
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    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

  16. #2241
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by Ionutz900 View Post
    Players.Setup(['Player''s Nickname/Login Name/Display Name'], 'PlayerFileName');
    with this line from anoter script players.setup(['charnamehere'], 'playerfilehere');
    That's what I was trying to explain to you.

    Quote Originally Posted by Ionutz900 View Post
    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
    I'm confused, is everything working now?

  17. #2242
    Join Date
    Aug 2012
    Posts
    52
    Mentioned
    1 Post(s)
    Quoted
    28 Post(s)

    Default

    Quote Originally Posted by Coh3n View Post
    @Nicodemus; Make sure your SRL is updated, and that you have mouse-over text enabled in your settings.
    srl is updated and mouse over text is enabled :/

  18. #2243
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by Nicodemus View Post
    srl is updated and mouse over text is enabled :/
    When the script moves the mouse to the tree, does the mouse over text appear? Or is the mouse over a part of the tree that isn't clickable?

  19. #2244
    Join Date
    May 2013
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    Yes Cohen it does work very well thank you, i forgot about a few graphic settings

  20. #2245
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by Ionutz900 View Post
    Yes Cohen it does work very well thank you, i forgot about a few graphic settings
    Awesome!

  21. #2246
    Join Date
    Jun 2014
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    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

  22. #2247
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by jolley222 View Post
    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
    Your graphics aren't set properly.

  23. #2248
    Join Date
    Jun 2014
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Could you help? I'm a big newbie when it comes to simba for botting.

  24. #2249
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by jolley222 View Post
    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.

  25. #2250
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    @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

Page 90 of 100 FirstFirst ... 40808889909192 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •