Page 1 of 2 12 LastLast
Results 1 to 25 of 27

Thread: JJ's Pie Shell Maker

  1. #1
    Join Date
    Dec 2011
    Location
    The Netherlands
    Posts
    1,631
    Mentioned
    47 Post(s)
    Quoted
    254 Post(s)

    Default JJ's Pie Shell Maker

    Hi.

    What does this script do?
    • It will start off by doing 14 loops of withdrawing 9 Jug of Water and 9 Pot of Flour, using those on eachother to make pastry dough.
    • After that, it will do 9 loops of withdrawing 14 Pastry dough and 14 Pie dish, using those on eachother to make a Pie shell.
    • As you can see it will do 14x9 = 126 and 9x14 = 126 items. Make sure you have the same amount of supplies for everything, you don't need pastry dough as it will make those itself. But be sure to setup your bank like this:


    (Jug of water, Pot of flour, Pie dish, Pastry dough, Pie shell)
    • I'm not sure how much this script makes, I think it makes you around 150k gp/h


    You can download a version below. Version 2 works with SMART and more advanced banking patterns. Version 1 works with the normal RS Client and less advanced patterns. I advise you to use version 2. The script does currently not support anti randoms and anti ban. Except for random patterns/withdrawing. I will be adding this to version 3.

    Give me some feedback
    Last edited by J J; 03-06-2012 at 08:39 AM.

    Script source code available here: Github

  2. #2
    Join Date
    Jan 2012
    Location
    Calgary, AB, Canada
    Posts
    1,819
    Mentioned
    5 Post(s)
    Quoted
    120 Post(s)

    Default

    Haven't tested but looks well done. Good job
    Current Project: Retired

  3. #3
    Join Date
    Dec 2011
    Location
    The Netherlands
    Posts
    1,631
    Mentioned
    47 Post(s)
    Quoted
    254 Post(s)

    Default

    Quote Originally Posted by Gucci View Post
    Haven't tested but looks well done. Good job
    Thanks.

    New version with more random things, better clicking.
    Just fill it in and click run, it will do the rest! Might want to turn angle up 100%, will add that in next version.

    Added the scripts as attachments.
    Last edited by J J; 03-06-2012 at 08:39 AM.

    Script source code available here: Github

  4. #4
    Join Date
    Jan 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yea the 14 loops then 9 loops will probably get you banned try switching it up if your gonna use this, or do 1 loop then 1 loop over and over by switching (until a=14) at the end of BankI to (until a=1) then same in BankII (until b=9) to (until b=1).....
    plus why is it only withdrawing 9 and 9 in BankI?
    Should switch the method to
    case Random(11) of
    0..6: begin;
    Withdraw(0, 0, 14);
    Withdraw(1, 0, 14);
    end;

    7..10: begin;
    Withdraw(1, 0, 14);
    Withdraw(0, 0, 14);
    end;
    end;

    also bitmaps are not necessary in this will only have a better potential to set off jagexs system of accurate click detection
    Last edited by turboo; 03-13-2012 at 05:40 PM.

  5. #5
    Join Date
    Dec 2011
    Location
    The Netherlands
    Posts
    1,631
    Mentioned
    47 Post(s)
    Quoted
    254 Post(s)

    Default

    Quote Originally Posted by turboo View Post
    yea the 14 loops then 9 loops will probably get you banned try switching it up if your gonna use this, or do 1 loop then 1 loop over and over by switching (until a=14) at the end of BankI to (until a=1) then same in BankII (until b=9) to (until b=1).....
    plus why is it only withdrawing 9 and 9 in BankI?
    Should switch the method to
    case Random(11) of
    0..6: begin;
    Withdraw(0, 0, 14);
    Withdraw(1, 0, 14);
    end;

    7..10: begin;
    Withdraw(1, 0, 14);
    Withdraw(0, 0, 14);
    end;
    end;

    also bitmaps are not necessary in this will only have a better potential to set off jagexs system of accurate click detection
    Jagex can't simply ban you because you use some sort of pattern for your tasks. That's like saying you can't do ten inventory's of unfinished potions and then ten inventory's of secondary's + unfinished potions. A legit player could easily do these 9/14 loops. Those loops are there to make sure that everything works out.

    The bankingI only withdraw 9 of each because you will produce a third product. Max inventory space being 28 you can have three items 9 times because that makes 27. That being said, the first part makes 9 pastry dough and the second part makes 14 pie shells. To even it out the lowest possible number of loops is 14x pastry dough loop and 9x pie shell loop because the numbers aren't that good for mathemetics.

    I think it's fine the way it is, will probably add random event solving within 1-2 weeks depending on my exams.

    Script source code available here: Github

  6. #6
    Join Date
    Mar 2012
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Looks good ill give a try right now will post feedback

  7. #7
    Join Date
    Mar 2012
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Making the pastry dough from the water and the flour is a bit of a waste of time. It would be quicker to just skip to the second step, would it not?

  8. #8
    Join Date
    Dec 2011
    Location
    The Netherlands
    Posts
    1,631
    Mentioned
    47 Post(s)
    Quoted
    254 Post(s)

    Default

    Quote Originally Posted by wickedjesus View Post
    Looks good ill give a try right now will post feedback
    Never posted feedback, but thanks

    Quote Originally Posted by lolkkkhaha View Post
    Making the pastry dough from the water and the flour is a bit of a waste of time. It would be quicker to just skip to the second step, would it not?
    If you find it a waste of time you can just delete that part from the loop. That's the great thing about open-source.

    Script source code available here: Github

  9. #9
    Join Date
    Jan 2012
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    it works

  10. #10
    Join Date
    Jan 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    do u even get randoms making pie shells?

  11. #11
    Join Date
    Dec 2011
    Location
    The Netherlands
    Posts
    1,631
    Mentioned
    47 Post(s)
    Quoted
    254 Post(s)

    Default

    Quote Originally Posted by siyao View Post
    it works
    Good

    Quote Originally Posted by turboo View Post
    do u even get randoms making pie shells?
    Yeah if you are simply using the script you will eventually get random events, but they are quite rare. You can easily edit some parts of this script to make it work for the Soul Wars chest if you would use this on a p2p account. But it's mainly targeted on people that are f2p.

    Script source code available here: Github

  12. #12
    Join Date
    Mar 2012
    Posts
    136
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Just saying, currently useless as no one buys pie shells at the minute
    That's just prices
    105gp
    130gp
    326gp
    and the total product sells for...............
    10GP!?!? :L

  13. #13
    Join Date
    Dec 2011
    Location
    The Netherlands
    Posts
    1,631
    Mentioned
    47 Post(s)
    Quoted
    254 Post(s)

    Default

    Quote Originally Posted by kirbyn View Post
    Just saying, currently useless as no one buys pie shells at the minute
    That's just prices
    105gp
    130gp
    326gp
    and the total product sells for...............
    10GP!?!? :L
    Looks like it's ~900 gp to me and not even close to 10 gp.
    http://services.runescape.com/m=item...em.ws?obj=2315

    You can also use them for other stuff like making pie's and you can profit with those, gotta figure it out yourself.

    Script source code available here: Github

  14. #14
    Join Date
    Mar 2012
    Posts
    136
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    105+130+326= 561

    Total product together sells for 10 GP, NO ONE buys Pie Crusts.

  15. #15
    Join Date
    Dec 2011
    Location
    The Netherlands
    Posts
    1,631
    Mentioned
    47 Post(s)
    Quoted
    254 Post(s)

    Default

    Quote Originally Posted by kirbyn View Post
    105+130+326= 561

    Total product together sells for 10 GP, NO ONE buys Pie Crusts.
    Well I just put in an offer for a pie shell and it didn't buy for medium price (885). It bought at 1.000 gp so this would make 1000-561=439 profit per pie shell and this script makes quite a lot per hour

    Script source code available here: Github

  16. #16
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    I copied the randomized withdrawing procedure you have here for a script I made, just letting you know. I think the idea is really nice.

  17. #17
    Join Date
    Oct 2011
    Posts
    207
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    Anyway use bucket of water instead of pot of water.

    1)
    bucket of water: 77
    pot of flour: 139
    pie dish: 298
    --> so total: 514

    and pie shell sells in ge at: 879
    --> so profit would be 879-514=365gp per pie

    2)
    Pastry dough - 372
    pie dish: 298
    total: 670

    -> profit: 879-670=209

    ,but second method is much faster, so I bet you can make at least 120*14=1680 shells per hours, this would be nice profit of 351,120gp/hr

    and best thing is that you can do it in f2p and it does not have high requiments

    so awesome sript ,will def try it...
    Last edited by djborec; 05-13-2012 at 06:54 PM.

  18. #18
    Join Date
    Jan 2012
    Posts
    125
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    only problem with this is that pie dish have a 100 limit for 4 hours......

    i must admit its a nice little script though

  19. #19
    Join Date
    Oct 2011
    Posts
    207
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    Quote Originally Posted by Mr Stoj View Post
    only problem with this is that pie dish have a 100 limit for 4 hours......

    i must admit its a nice little script though
    yeah found it out thats stupid from jagex

  20. #20
    Join Date
    Jan 2012
    Posts
    125
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by djborec View Post
    yeah found it out thats stupid from jagex
    its the only thing that keeps the price high

  21. #21
    Join Date
    Sep 2006
    Location
    include srl/srl.scar ( aussie)
    Posts
    2,875
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Pie dishes are now under 200gp, increasing the profit quite a lot!
    Possibly because I dumped ~30k pie dishes the other day

  22. #22
    Join Date
    Jun 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Worked in the beginning. Now it just takes the item out, goes to another banker and deposits them and loops and loops.

  23. #23
    Join Date
    Dec 2011
    Location
    The Netherlands
    Posts
    1,631
    Mentioned
    47 Post(s)
    Quoted
    254 Post(s)

    Default

    Quote Originally Posted by Fanta View Post
    Worked in the beginning. Now it just takes the item out, goes to another banker and deposits them and loops and loops.
    I'm currently in the process of updating all my older scripts / broken scripts. I'm pretty sure this has broken because of the banker update but I'll check it out.

    To all others, thanks for your posts, I did actualy read them :P

    Script source code available here: Github

  24. #24
    Join Date
    Feb 2012
    Posts
    202
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    um currently its withdrawing the jug of water and pot of flour but it isn't mixing them into pastry?

    is it out dated?

  25. #25
    Join Date
    Feb 2012
    Posts
    202
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    um currently its withdrawing the jug of water and pot of flour but it isn't mixing them into pastry then its depositing the jug of water and flour it just withdrew

    is it out dated?

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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