Page 20 of 24 FirstFirst ... 101819202122 ... LastLast
Results 476 to 500 of 594

Thread: AshamanRoguesCooker

  1. #476
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by Rincewind View Post
    Whenever I try and switch my graphics to OpenGL, my client crashes. How can I fix this?
    You need the directx plugin and need to add the smartplugins line with it before setupsrl in the script so you can run it in dx mode. I have no idea why it's crashing for you in ogl, but sounds like it's your computer specific problem w/ jagex's game.


    I've been messing with the script and the next version will allow you to use whatever graphics setting you want (assuming you have the plugins)

  2. #477
    Join Date
    May 2012
    Location
    Gielnor
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    50 Post(s)

    Default

    i've been having a problem where the script clicks to bank, but then right when the bank opens it closes it.

  3. #478
    Join Date
    Mar 2013
    Posts
    222
    Mentioned
    3 Post(s)
    Quoted
    143 Post(s)

    Default

    Quote Originally Posted by nigerson View Post
    i've been having a problem where the script clicks to bank, but then right when the bank opens it closes it.
    I had this problem too. My smart was loaded with directx from a previous script and I forgot to add the plugin line for this script. I just closed my smart and added the plugin line and it started working fine.

    Hey Asham I replaced

    Code:
    GetMousePos(X,Y);
    MultiClick(Point(X,Y),50,2);
    With

    Code:
         Case Random(20) Of
            0..18: SendKeys(' ', 60 + Random(60), 60 + Random(60));
            19: begin
             MouseBox([293,332,505,348]);
             FastClick(Mouse_Left);
            end;
          End;
    and edited out the Mousebox a few lines before

    Perhaps you can incorporate this to your future updates? (It just presses space to start cooking, with the occasional click)

    Also there are times when my minimap is glitchy and shows a lot of black. I know clarity has a mapcheck in his barrows scripts that log in/out if the map is glitchy. I think this might be a worthwhile failsafe to consider?

  4. #479
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Oh right I forgot about the space bar dealio. Yeah I'll add It across the scripts... Well really it probs going into include... Stay tuned!

  5. #480
    Join Date
    Apr 2012
    Location
    Seattle
    Posts
    791
    Mentioned
    1 Post(s)
    Quoted
    159 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    I've been messing with the script and the next version will allow you to use whatever graphics setting you want (assuming you have the plugins)
    Thank you!

  6. #481
    Join Date
    May 2012
    Location
    Gielnor
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    50 Post(s)

    Default

    Quote Originally Posted by RlagkRud View Post
    I had this problem too. My smart was loaded with directx from a previous script and I forgot to add the plugin line for this script. I just closed my smart and added the plugin line and it started working fine.

    Hey Asham I replaced

    Code:
    GetMousePos(X,Y);
    MultiClick(Point(X,Y),50,2);
    With

    Code:
         Case Random(20) Of
            0..18: SendKeys(' ', 60 + Random(60), 60 + Random(60));
            19: begin
             MouseBox([293,332,505,348]);
             FastClick(Mouse_Left);
            end;
          End;
    and edited out the Mousebox a few lines before

    Perhaps you can incorporate this to your future updates? (It just presses space to start cooking, with the occasional click)

    Also there are times when my minimap is glitchy and shows a lot of black. I know clarity has a mapcheck in his barrows scripts that log in/out if the map is glitchy. I think this might be a worthwhile failsafe to consider?
    I don't use directX, cause everything seems to load fine for me with opengl.

  7. #482
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Doesn't seem to be terribly stable, somehow manages to fail after ~2 hours--I'll babysit it and see if I can't nail down what the problem is.

    For now I've just added
    Simba Code:
    if not isLoggedIn then
     players[currentPlayer].Login;
    everywhere, lol.

    Works great though ^^
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

  8. #483
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Yeah I've been having to re-work it with certain changes to the include recently. Should have a stable version with another location as an option soon

  9. #484
    Join Date
    Mar 2014
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by nigerson View Post
    i've been having a problem where the script clicks to bank, but then right when the bank opens it closes it.
    I was having this issue and seeing as my computer is outdated and I know very little about scripting in SRL as of now all I did was go to the Banking Procedure and find this..
    Code:
      For I:=0 To 3 Do
        If BankScreen.Withdraw(10, WITHDRAW_AMOUNT_ALL, ['']) Then
          Break;
    
      Wait(Random(100));
      BankScreen.Close;
      Wait(Random(100));
      TabBackpack.MouseSlot(1,Mouse_Move);
      OnMe.Reset;
      OnMe.Start;
    I simply Changed the
    Code:
    Wait(Random(100));
    to
    Code:
    Wait(Random(300));
    All this does is make it wait longer, and it seemed to fix the problem for me..

  10. #485
    Join Date
    May 2012
    Location
    Gielnor
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    50 Post(s)

    Default

    Quote Originally Posted by saulensj View Post
    I was having this issue and seeing as my computer is outdated and I know very little about scripting in SRL as of now all I did was go to the Banking Procedure and find this..
    Code:
      For I:=0 To 3 Do
        If BankScreen.Withdraw(10, WITHDRAW_AMOUNT_ALL, ['']) Then
          Break;
    
      Wait(Random(100));
      BankScreen.Close;
      Wait(Random(100));
      TabBackpack.MouseSlot(1,Mouse_Move);
      OnMe.Reset;
      OnMe.Start;
    I simply Changed the
    Code:
    Wait(Random(100));
    to
    Code:
    Wait(Random(300));
    All this does is make it wait longer, and it seemed to fix the problem for me..
    I figured that out too, but when it withdraws my fish it uses it on the banker instead of the fire

  11. #486
    Join Date
    Mar 2014
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    i would remove the script from your computer and download it again see if it still does it then.

  12. #487
    Join Date
    Apr 2013
    Posts
    40
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    Everything works fine up till the client is logged in and my char. just stands there and does nothing. I the script was working like 2 days ago but not anymore.

  13. #488
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by Xgremreaper View Post
    Everything works fine up till the client is logged in and my char. just stands there and does nothing. I the script was working like 2 days ago but not anymore.
    Bankscreen include needs to be updated. gonna have to wait for that

  14. #489
    Join Date
    Mar 2014
    Posts
    74
    Mentioned
    1 Post(s)
    Quoted
    41 Post(s)

    Default

    Support urns?

  15. #490
    Join Date
    Oct 2013
    Posts
    56
    Mentioned
    0 Post(s)
    Quoted
    28 Post(s)

    Default

    Got 99 with this script, its amazing, I lost my proggy I have no idea where it went =( Im sorry. But anyways would recommend this for anyone, his fm script is also outstanding, thanks to you i got my first two 99's =D

    Well done!!

  16. #491
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by Moneymake View Post
    Got 99 with this script, its amazing, I lost my proggy I have no idea where it went =( Im sorry. But anyways would recommend this for anyone, his fm script is also outstanding, thanks to you i got my first two 99's =D

    Well done!!

    Thanks man. And announcement for everyone - work has finally slowed down so I totes plan on doing some major scripting this week what what

  17. #492
    Join Date
    Oct 2010
    Posts
    93
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Thanks Ashaman just got my second botted 99 cooking with this script. Did sharks and then rocktails from 94 to 99 got it in about 2 days cheers the script worked flawlessly.

  18. #493
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by kingob View Post
    Thanks Ashaman just got my second botted 99 cooking with this script. Did sharks and then rocktails from 94 to 99 got it in about 2 days cheers the script worked flawlessly.
    Awesome man great to hear!

  19. #494
    Join Date
    Nov 2011
    Location
    root@fsociety:~#
    Posts
    106
    Mentioned
    1 Post(s)
    Quoted
    44 Post(s)

    Default

    Got 99 with it a few days ago. Thanks. ^^ (a few more 99s incoming via your other scripts). :")
    Home sweet home.

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

    Default

    Finally I can get my shark cooked right

  21. #496
    Join Date
    Mar 2013
    Location
    Shaolin
    Posts
    863
    Mentioned
    24 Post(s)
    Quoted
    519 Post(s)

    Default

    Hey man this not sure if I set it up but it seems to find the banker perfectly and then not be able to find the fire.
    You have permission to steal anything I've ever made...

  22. #497
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by Wu-Tang Clan View Post
    Hey man this not sure if I set it up but it seems to find the banker perfectly and then not be able to find the fire.
    And the fire is in view? Were you wearing fire colored clothing or anything? I haven't run this script in months so I wouldn't be surprised if it got screwy

  23. #498
    Join Date
    Mar 2013
    Location
    Shaolin
    Posts
    863
    Mentioned
    24 Post(s)
    Quoted
    519 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    And the fire is in view? Were you wearing fire colored clothing or anything? I haven't run this script in months so I wouldn't be surprised if it got screwy
    For banking, I would recommend making a full inventory of raw cookables your preset 1 loadout. That way all you need to do is press preset 1 when you open the bank and it will deposit everything in your inventory AND take out a full inventory of cookables.
    You have permission to steal anything I've ever made...

  24. #499
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    Quote Originally Posted by Wu-Tang Clan View Post
    For banking, I would recommend making a full inventory of raw cookables your preset 1 loadout. That way all you need to do is press preset 1 when you open the bank and it will deposit everything in your inventory AND take out a full inventory of cookables.
    haha oh yeah I also need to add the presets for this script - thanks for the reminder!

  25. #500
    Join Date
    Jul 2014
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    How do i get this script to run past 6 hours? it stops after 6 hours and doesnt restart itself. ive seen peoples' proggies go up more than 6 hours? how are they able to do it

Page 20 of 24 FirstFirst ... 101819202122 ... 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
  •