Page 2 of 2 FirstFirst 12
Results 26 to 36 of 36

Thread: SRL-5 functions [Beginners]

  1. #26
    Join Date
    Mar 2012
    Posts
    690
    Mentioned
    2 Post(s)
    Quoted
    40 Post(s)

    Default

    You are clipping the screen by alot when theres no need to

  2. #27
    Join Date
    Apr 2012
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    From the point of view of who the thread is aimed at, i find this extreamly useful, he explains the functions very well and this is basically exactly what i was looking for when trying to create my first script.


    Thanks allot

  3. #28
    Join Date
    May 2012
    Location
    Iowa
    Posts
    316
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by ne lg View Post
    From the point of view of who the thread is aimed at, i find this extreamly useful, he explains the functions very well and this is basically exactly what i was looking for when trying to create my first script.


    Thanks allot
    Glad someone found a use for it! This pretty much turned into a flame/fight thread...

  4. #29
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    He didn't explain anything, it was all ripped right out of the documentation.
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  5. #30
    Join Date
    Feb 2011
    Location
    The Future.
    Posts
    5,600
    Mentioned
    396 Post(s)
    Quoted
    1598 Post(s)

    Default

    Except.. The documentation looks like:
    Simba Code:
    (*
    MultiMouse
    ~~~~~~~~~~

    .. code-block:: pascal

      function MultiMouse(x, y, chance, maxClicks: integer; red: boolean): boolean;

    Will simulate "spam" clicking on the point x, y.  Will do it a random amount
    between 1 and 'maxClicks'.  Will click once no matter what, then has a percent
    'chance' of clicking again after that.  Will not exceed 'maxClicks'.  if 'red'
    then will return true if the red X appears after clicking an object, else will
    return true after clicking.

    .. note::

      | Author: Coh3n
      | Last Updated: 21 July 2011 by Coh3n

    Example:

    .. code-block:: pascal

      if (waitUptext('ree', 200)) then
        MSI_MultiMouse(x, y, 35, 5, true);
    *)
    and his looks like:
    MultiMouse

    info:Will simulate “spam” clicking on the point x, y. Will do it a random amount between 1 and ‘maxClicks’. Will click once no matter what, then has a percent ‘chance’ of clicking again after that. Will not exceed ‘maxClicks’. if ‘red’ then will return true if the red X appears after clicking an object, else will return true after clicking.

    function MultiMouse(x, y, chance, maxClicks: integer; red: boolean): boolean;

    example:if (waitUptext('ree', 200)) then
    MSI_MultiMouse(x, y, 35, 5, true);
    Also his is all in one place. In the documentation, you have to go to that specific .Simba file to find what you want. This thread can't be totally useless.
    I am Ggzz..
    Hackintosher

  6. #31
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Again, see how it's ripped straight from the documentation. He didn't "explain" anything. I don't mind him trying to help out, but if he really wanted to, he could of linked to that method in the documentation and then gone into a deeper explanation of how it works.

    All of the code he posted in the OP can become outdated
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  7. #32
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Quote Originally Posted by Brandon View Post
    Except.. The documentation looks like:
    Simba Code:
    (*
    MultiMouse
    ~~~~~~~~~~

    .. code-block:: pascal

      function MultiMouse(x, y, chance, maxClicks: integer; red: boolean): boolean;

    Will simulate "spam" clicking on the point x, y.  Will do it a random amount
    between 1 and 'maxClicks'.  Will click once no matter what, then has a percent
    'chance' of clicking again after that.  Will not exceed 'maxClicks'.  if 'red'
    then will return true if the red X appears after clicking an object, else will
    return true after clicking.

    .. note::

      | Author: Coh3n
      | Last Updated: 21 July 2011 by Coh3n

    Example:

    .. code-block:: pascal

      if (waitUptext('ree', 200)) then
        MSI_MultiMouse(x, y, 35, 5, true);
    *)
    and his looks like:

    Also his is all in one place. In the documentation, you have to go to that specific .Simba file to find what you want. This thread can't be totally useless.
    You don't get the point; that "documentation" as you call it (the one inside the .simba), is not really documentation. The documentation can be found here: https://docs.villavu.com/srl-5/ . All you have to do to find the thing you want to is to go to https://docs.villavu.com/srl-5/srlref.html

    This thread is basically a duplicate of that site, just more messy and un-organized.

  8. #33
    Join Date
    May 2012
    Location
    England
    Posts
    52
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well, I for one found this thread useful anyway x3 Without this thread it would of most likely been a long time before I found out about this place. So thank you, for the redirect =D

    I imagine that link prove to be invaluable <3

    Last edited by Mufasa; 06-05-2012 at 12:31 PM.

  9. #34
    Join Date
    Jan 2008
    Location
    Ontario, Canada
    Posts
    7,805
    Mentioned
    5 Post(s)
    Quoted
    3 Post(s)

    Default

    I think that perhaps what we would all agree on is that there needs to be a better insight into where the documentation is. I've noticed that everyone who mentioned those pages were developers/staff.

    Not exactly ideal.

    Perhaps OP had the right idea, just went about it poorly. Hey, OP, want to, instead of where this is going, maybe write a guide on how to use the documentation?
    Writing an SRL Member Application | [Updated] Pascal Scripting Statements
    My GitHub

    Progress Report:
    13:46 <@BenLand100> <SourceCode> @BenLand100: what you have just said shows you 
                        have serious physchological problems
    13:46 <@BenLand100> HE GETS IT!
    13:46 <@BenLand100> HE FINALLY GETS IT!!!!1

  10. #35
    Join Date
    Feb 2012
    Location
    Somewhere, over the rainbow...
    Posts
    2,272
    Mentioned
    3 Post(s)
    Quoted
    45 Post(s)

    Default

    Quote Originally Posted by Nava2 View Post
    I think that perhaps what we would all agree on is that there needs to be a better insight into where the documentation is. I've noticed that everyone who mentioned those pages were developers/staff.

    Not exactly ideal.

    Perhaps OP had the right idea, just went about it poorly. Hey, OP, want to, instead of where this is going, maybe write a guide on how to use the documentation?
    In that case - the guide will look like this:

    Hi there, go here!
    The end.
    I think it would be better if a link was placed in the FAQ


    Also, In the latest Simba - the documentation is installed with your Simba - so it shouldn't be hard to find. It's like...right there




    EDIT: Yeh it's a pdf version - but it's still almost as good as the html link
    Last edited by Abu; 06-05-2012 at 02:29 PM.

  11. #36
    Join Date
    Jan 2008
    Location
    Ontario, Canada
    Posts
    7,805
    Mentioned
    5 Post(s)
    Quoted
    3 Post(s)

    Default

    /thread, fixed the formatting. Everyone, please be more appropriate next time something like this happens as I already said.
    Writing an SRL Member Application | [Updated] Pascal Scripting Statements
    My GitHub

    Progress Report:
    13:46 <@BenLand100> <SourceCode> @BenLand100: what you have just said shows you 
                        have serious physchological problems
    13:46 <@BenLand100> HE GETS IT!
    13:46 <@BenLand100> HE FINALLY GETS IT!!!!1

Page 2 of 2 FirstFirst 12

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
  •