Results 1 to 17 of 17

Thread: [R] Rogeruk's Al-Kharid Cooker

  1. #1
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default [R] Rogeruk's Al-Kharid Cooker

    Rogeruk's Al-Kharid Cooker - BETA [Reflection]
    By: Rogeruk

    Cooks food at Al-Khaird Range.



    Credits & Thanks:
    • bogga (Script Request)
    • SRL Team


    Requirements
    • Dev SRL & Reflection


    ChangeLog:

    Version 1.0 BETA
    - BETA Release

    Supported Food Types:
    | Tested & Working | UnTested |
    • Crayfish
    • Shrimp
    • Sardine
    • Herring
    • Anchovies
    • Mackerel
    • Trout
    • Cod
    • Pike
    • Salmon
    • Tuna
    • Rainbow Fish
    • Lobster
    • Bass
    • Swordfish
    • Monkfish
    • Shark
    • Sea Turtle
    • Manta Ray


    Setup

    • Place characters in Al-Kharid Bank
    • Place food in first bank slot!
    • Fill out DeclarePlayers
    • Hit Play
    • Post Progress Reports


    Replace Strings[0] := ''; with the food you want. Eg. Lobster, Cod, Pike

    SCAR Code:
    With Players[0] Do
      Begin
        Name        := '';    // Characters full RS username.
        Pass        := ''; // Characters RS password.
        Nick        := '';        // 3 non-caps letters of char's RS username.
        Active      := True;
        BoxRewards := ['XP'];
        Integers[0] := 35; // LOADS TO DO <<
        Strings[0] := 'Anchovies'; //Food Type
      End;
    Last edited by Sir R. M8gic1an; 10-11-2009 at 07:56 PM.

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

  2. #2
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Progress Reports:

    bogga
    Code:
    [----------------------------------------------------]
    [ Script running for 4 Hours, 54 Minutes and 33 Seconds
    [ Banked 175 times
    [ Cooked 4656 trout
    [ Leveled up 0 times
    [ EXP Gained 325920
    [ EXP Per Hour 66388
    [----------------------------------------------------]
    
    
    [----------------------------------------------------]
    [ ~ Rogeruks Al-Kharid Cooker V 1.0 ]
    [----------------------------------------------------]
    [ Script running for 6 Hours, 30 Seconds
    [ Banked 224 times
    [ Cooked 4940 Trout
    [ Leveled up 1 times
    [ EXP Gained 345800
    [ EXP Per Hour 57552
    [----------------------------------------------------]
    Rogeruk
    Code:
     [----------------------------------------------------]
    [  ~ Rogeruks Al-Kharid Cooker V 1.0                  ]
    [----------------------------------------------------]
    [ Script running for 1 Hours, 1 Minutes and 55 Seconds
    [ Banked 39 times
    [ Cooked 1064 anchovies
    [ Leveled up 1 times
    [ EXP Gained 31920
    [ EXP Per Hour 30929
    [----------------------------------------------------]

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

  3. #3
    Join Date
    Jun 2008
    Location
    Somewhere
    Posts
    117
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default

    I'm going to try right now

    Reserved for my proggies

  4. #4
    Join Date
    Aug 2007
    Location
    SRL! ;)
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks rogeruk, great cooker (I requested it :P)

    Good Job.

    +rep

    My proggies:

    [----------------------------------------------------]
    [ ~ Rogeruks Al-Kharid Cooker V 1.0 ]
    [----------------------------------------------------]
    [ Script running for 6 Hours, 30 Seconds
    [ Banked 224 times
    [ Cooked 4940 Trout
    [ Leveled up 1 times
    [ EXP Gained 345800
    [ EXP Per Hour 57552
    [----------------------------------------------------]
    Last edited by bogga; 09-01-2009 at 04:20 AM.

  5. #5
    Join Date
    Nov 2007
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    this looks nice. I may have to try it.

    When I do, I'll post my proggies =D

    EDIT 1: After a minimal runthrough, the script works great :-) No proggy yet though. Did you guys above use more than one account?
    Last edited by d_sign; 09-01-2009 at 06:45 AM.

  6. #6
    Join Date
    Nov 2007
    Posts
    326
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Add bank pin please...I was super disheartened.

    Check out my Edgeville Smelter!

  7. #7
    Join Date
    Jul 2008
    Location
    Canada
    Posts
    1,612
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by IPwnz View Post
    Add bank pin please...I was super disheartened.
    Not hard lol, add
    SCAR Code:
    Strings[1] := '0000';
    to declareplayers and add this to his banking function:

    SCAR Code:
    If (R_ChooseActionMulti(['ank'])) Then
        Begin
          Repeat
            if R_PinScreen then InPin(Players[CurrentPlayer].Strings[2]);
            wait(200 + Random(300));
            R_FindRandoms;
          Until (R_BankScreen);

    But i am positive rogeruk, will add it to his script in a future version

  8. #8
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Smarter Child View Post
    Not hard lol, add
    SCAR Code:
    Strings[1] := '0000';
    to declareplayers and add this to his banking function:

    SCAR Code:
    If (R_ChooseActionMulti(['ank'])) Then
        Begin
          Repeat
            if R_PinScreen then InPin(Players[CurrentPlayer].Strings[2]);
            wait(200 + Random(300));
            R_FindRandoms;
          Until (R_BankScreen);

    But i am positive rogeruk, will add it to his script in a future version
    All you have to add is Players[0].Pin := ''; (and have the number correct if you have it for more than one person) and it will automatically do it in the bank thing.

  9. #9
    Join Date
    Aug 2007
    Location
    SRL! ;)
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by d_sign View Post
    this looks nice. I may have to try it.

    When I do, I'll post my proggies =D

    EDIT 1: After a minimal runthrough, the script works great :-) No proggy yet though. Did you guys above use more than one account?
    I just used it on one account, why do you wonder?
    Last edited by bogga; 09-01-2009 at 08:47 PM.

  10. #10
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sorry, BankPin will be in next version.

    Anyone tested any of the other fish?.

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

  11. #11
    Join Date
    Aug 2007
    Location
    SRL! ;)
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    New Proggies :

    [----------------------------------------------------]
    [ ~ Rogeruks Al-Kharid Cooker V 1.0 ]
    [----------------------------------------------------]
    [ Script running for 6 Hours, 47 Seconds
    [ Banked 191 times
    [ Cooked 5261 Trout
    [ Leveled up 1 times
    [ EXP Gained 368270
    [ EXP Per Hour 61243
    [----------------------------------------------------]

  12. #12
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by bogga View Post
    New Proggies :

    [----------------------------------------------------]
    [ ~ Rogeruks Al-Kharid Cooker V 1.0 ]
    [----------------------------------------------------]
    [ Script running for 6 Hours, 47 Seconds
    [ Banked 191 times
    [ Cooked 5261 Trout
    [ Leveled up 1 times
    [ EXP Gained 368270
    [ EXP Per Hour 61243
    [----------------------------------------------------]

    Very nice

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

  13. #13
    Join Date
    Nov 2007
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by bogga View Post
    I just used it on one account, why do you wonder?
    Haha, you had a quite nice proggy :-) just curious

    I ran this overnight, but due to Florida thunderstorms, we lost power. Got me 160k xp though

  14. #14
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Please post progress reports

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

  15. #15
    Join Date
    Nov 2007
    Posts
    326
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    for me at least, it finally figures out it doesn't have food, gets the raw trout, and then goes behind the range outside. Then it uses with it and it runs all the way around. That looks suspicious :P. Then it only cooks half an invent, whats up with that? This script has a bit of work to do left I think. It has a great start to it though! Still just only cooks half an invent. Weird.

    Edit: After quite a while it starts doing full invents, and I must say the banking is great. It's super super quick.
    Last edited by IPwnz; 09-02-2009 at 07:22 PM.

  16. #16
    Join Date
    Aug 2007
    Location
    SRL! ;)
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It haven't cooked only a half invent for me:P Weird o0.

    Yeah, it gets quick XP, 2 Days ago I was 71, now I'm 81 :P

  17. #17
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by IPwnz View Post
    for me at least, it finally figures out it doesn't have food, gets the raw trout, and then goes behind the range outside. Then it uses with it and it runs all the way around. That looks suspicious :P. Then it only cooks half an invent, whats up with that? This script has a bit of work to do left I think. It has a great start to it though! Still just only cooks half an invent. Weird.

    Edit: After quite a while it starts doing full invents, and I must say the banking is great. It's super super quick.
    Cant say i have that problem.

    Well i wanted the walking to be some random, not always same tile. It walks outside bank and then clicks the range.

    Atm the names need to be capital letters. Trout not trout. Ive fixed it in a new verison which i will release soon.

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

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
  •