Results 1 to 17 of 17

Thread: Cystal Cleanser

  1. #1
    Join Date
    Feb 2012
    Posts
    89
    Mentioned
    2 Post(s)
    Quoted
    13 Post(s)

    Default Cystal Cleanser

    Hello, i have been cleansing crystals for a few days now and then i thought why not ask for a script when i did they suggested i make it myself. I did and it was pretty fun!

    All this script does is click on the corrupted seren stone, so it is bassicly an auto click but none the less i made it myself

    How it works,

    Stand here, and click run.

    http://imgur.com/PeNRDQl

    some features that i might add in the future if i need this script again.

    -Drinking Perfect juju prayer potion
    -Buying crystals from the shop

    i don't recommend leaving it, you should babysit it


    Simba Code:
    program cleanser;
    {$DEFINE SMART}
    {$I SRL-6/SRL.simba}


    procedure clickCorruptedStone();
    var
      x, y: integer;
    begin
      if mainscreen.findObject(x, y, 10369635, 50, ['orrupted Seren Stone']) then
      begin
        writeLn('We used a crystal!');
        wait(130000);
      end;
    end;

    begin
      setupSRL();
     repeat
      clearDebug();
      clickCorruptedStone();
    until (not (isLoggedIn()));
    end.

    I want to thank The Mayor for this tutorial and i want to thank the posters of the help section!

    I am sorry if this does not qualify as a real script, if so you may delete this thread.

  2. #2
    Join Date
    Feb 2015
    Posts
    422
    Mentioned
    41 Post(s)
    Quoted
    226 Post(s)

    Default

    Quote Originally Posted by Majnoon View Post
    Hello, i have been cleansing crystals for a few days now and then i thought why not ask for a script when i did they suggested i make it myself. I did and it was pretty fun!

    All this script does is click on the corrupted seren stone, so it is bassicly an auto click but none the less i made it myself

    How it works,

    Stand here, and click run.

    http://imgur.com/PeNRDQl

    some features that i might add in the future if i need this script again.

    -Drinking Perfect juju prayer potion
    -Buying crystals from the shop

    i don't recommend leaving it, you should babysit it


    Simba Code:
    program cleanser;
    {$DEFINE SMART}
    {$I SRL-6/SRL.simba}


    procedure clickCorruptedStone();
    var
      x, y: integer;
    begin
      if mainscreen.findObject(x, y, 10369635, 50, ['orrupted Seren Stone']) then
      begin
        writeLn('We used a crystal!');
        wait(130000);
      end;
    end;

    begin
      setupSRL();
     repeat
      clearDebug();
      clickCorruptedStone();
    until (not (isLoggedIn()));
    end.

    I want to thank The Mayor for this tutorial and i want to thank the posters of the help section!

    I am sorry if this does not qualify as a real script, if so you may delete this thread.

    first of all gratz on making it work, second of all, I dont suggest making your waits static, as in, it will repeat every 2 min 10 secs exactly. Instead you can do something like

    Simba Code:
    wait(130000 + gaussRangeInt(1000, 3000));

    which would wait the 2 min and 10 seconds but adds 1-3 seconds afterwards (you can modify that range to whatever suits you) so it seems more human like.

    also, instead of having the main loop repeat until it isn't logged in, you can use

    Simba Code:
    until not (tabBackpack.isItemInSlot(1)); // Or whichever slot your crystals are in

    that way it wont loop to infinity, but would loop until you run out of crystals in slot 1.

  3. #3
    Join Date
    Mar 2013
    Location
    Argentina
    Posts
    758
    Mentioned
    27 Post(s)
    Quoted
    365 Post(s)

    Default

    congrats on making the script as i suggested! its nice to see people start trying
    Formerly known as Undorak7

  4. #4
    Join Date
    Dec 2010
    Posts
    483
    Mentioned
    30 Post(s)
    Quoted
    328 Post(s)

    Default

    Quote Originally Posted by fady View Post
    first of all gratz on making it work, second of all, I dont suggest making your waits static, as in, it will repeat every 2 min 10 secs exactly. Instead you can do something like

    Simba Code:
    wait(130000 + gaussRangeInt(1000, 3000));

    which would wait the 2 min and 10 seconds but adds 1-3 seconds afterwards (you can modify that range to whatever suits you) so it seems more human like.

    also, instead of having the main loop repeat until it isn't logged in, you can use

    Simba Code:
    until not (tabBackpack.isItemInSlot(1)); // Or whichever slot your crystals are in

    that way it wont loop to infinity, but would loop until you run out of crystals in slot 1.
    I typically shy away from using gaussian randomness for wait times. The "human-like" aspect of a gauss range (being basically a bell-curve) will still result in MOST of the time waiting about the same amount of time. For random wait periods, just use randomRange or even better use my TrueRandom plugin and generate truly random values!

  5. #5
    Join Date
    May 2012
    Location
    Arizona
    Posts
    52
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    Congrats on the release! I was lurking through your help posts yesterday ;-) good stuff
    Last edited by Ashart1025; 03-06-2015 at 05:33 PM.
    I came to cheat
    I stayed to learn

  6. #6
    Join Date
    Feb 2012
    Posts
    89
    Mentioned
    2 Post(s)
    Quoted
    13 Post(s)

    Default

    Thank you guys!

    Did not expect i would get any positive reactions, i love this community!

    As for the randomness of the clicking, il start trying to see what i can do!

  7. #7
    Join Date
    Nov 2014
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by the bank View Post
    I typically shy away from using gaussian randomness for wait times. The "human-like" aspect of a gauss range (being basically a bell-curve) will still result in MOST of the time waiting about the same amount of time. For random wait periods, just use randomRange or even better use my TrueRandom plugin and generate truly random values!

    Wouldn't gauss range be more human like than true random?
    Human's would usually do it around the same amount of time but be sometimes slower or faster. True random would be all over the board.

  8. #8
    Join Date
    Dec 2010
    Posts
    483
    Mentioned
    30 Post(s)
    Quoted
    328 Post(s)

    Default

    Quote Originally Posted by Grimy View Post
    Wouldn't gauss range be more human like than true random?
    Human's would usually do it around the same amount of time but be sometimes slower or faster. True random would be all over the board.
    Gauss random **MIGHT** be more human-like in certain circumstances. The main chance is it will fall in the center of the range the most often. So unless you get a large amount of outlier results, it is not the best option to use gaussRange for wait times.

    Look at yourself playing the game. Do you really gaussian distribute your clicks? Personally, I just click somewhere on the model im looking at (half the time I dont even see where I click because my brain is already figuring out the next place). I personally have used true random in every script I've ever used, and no ban yet.

  9. #9
    Join Date
    Feb 2015
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Can we get a proggy of this please?

  10. #10
    Join Date
    Mar 2012
    Location
    NY.
    Posts
    130
    Mentioned
    5 Post(s)
    Quoted
    67 Post(s)

    Default

    edit:i should read .-.

    @Majnoon if you dont plan to add those features in ill probably do it sometime today or tomorrow
    im a retard

  11. #11
    Join Date
    Feb 2012
    Posts
    89
    Mentioned
    2 Post(s)
    Quoted
    13 Post(s)

    Default

    Quote Originally Posted by GRIM View Post
    edit:i should read .-.

    @Majnoon if you dont plan to add those features in ill probably do it sometime today or tomorrow
    been working alot lately do not really have the motivation or time at the moment, u go ahead!

  12. #12
    Join Date
    Mar 2012
    Location
    NY.
    Posts
    130
    Mentioned
    5 Post(s)
    Quoted
    67 Post(s)

    Default

    @Majnoon
    finished mine and i made one that just hoards up on crystals if you wanna use that to get stocked up on them =)
    have fun https://villavu.com/forum/showthread.php?t=112346
    im a retard

  13. #13
    Join Date
    Feb 2012
    Posts
    89
    Mentioned
    2 Post(s)
    Quoted
    13 Post(s)

    Default

    Quote Originally Posted by GRIM View Post
    @Majnoon
    finished mine and i made one that just hoards up on crystals if you wanna use that to get stocked up on them =)
    have fun https://villavu.com/forum/showthread.php?t=112346

    great good job!

  14. #14
    Join Date
    Jan 2015
    Location
    Straya
    Posts
    87
    Mentioned
    1 Post(s)
    Quoted
    34 Post(s)

    Default

    Holy crap thank you. Simple and effective.

  15. #15
    Join Date
    Jan 2015
    Location
    Straya
    Posts
    87
    Mentioned
    1 Post(s)
    Quoted
    34 Post(s)

    Default

    Thank you fady also for your input

  16. #16
    Join Date
    Aug 2010
    Posts
    31
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Awesome, should be pretty undetectable due to the nature of the script (very afk)! Thanks!

  17. #17
    Join Date
    Feb 2012
    Posts
    31
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Talk about grave digging but this got me from 7X-99 prayer during dxp! Great work (I also used the edits and suggestions in this thread)
    I tried real life once, the graphics where great but the storyline was terrible.

    What do these tags do?

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
  •