Results 1 to 15 of 15

Thread: Looting function

  1. #1
    Join Date
    Jan 2012
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    19 Post(s)

    Default Looting function

    What are the current looting functions that are working?
    Thanks in advance!

  2. #2
    Join Date
    Jan 2012
    Location
    127.0.0.1
    Posts
    702
    Mentioned
    11 Post(s)
    Quoted
    76 Post(s)

    Default

    there are not any looting functions, currently to closest thing to it is using object finding functions and check for uptext

  3. #3
    Join Date
    Jan 2012
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    19 Post(s)

    Default

    So basically FindObj?

  4. #4
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    You can also check out all of the variations of FindObj too (there are quite a few) to make it a bit more specific to your needs.
    Or better yet make your own!
    Always best (or funner/more customizeable/more efficient) to make your own functions from scratch!

  5. #5
    Join Date
    Jan 2012
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    19 Post(s)

    Default

    Thanks,
    Color+ uptext is doing wonders for me.

  6. #6
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    Quote Originally Posted by Ilya View Post
    Thanks,
    Color+ uptext is doing wonders for me.
    When you get a bit more experience might I suggest making your own function using TPA's and ATPA's?

  7. #7
    Join Date
    Jan 2012
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    19 Post(s)

    Smile

    Quote Originally Posted by footballjds View Post
    When you get a bit more experience might I suggest making your own function using TPA's and ATPA's?
    I've looked into it, but seems to me it would take a few non-stop hours to learn, and a few days to implement them into a script. I just don't have that kind of time. Maybe over xmas break, i'll learn them and apply to SRL members again =)

  8. #8
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    Quote Originally Posted by Ilya View Post
    I've looked into it, but seems to me it would take a few non-stop hours to learn, and a few days to implement them into a script. I just don't have that kind of time. Maybe over xmas break, i'll learn them and apply to SRL members again =)
    More power to you! It will take about 1 hour if you're really trying hard to grasp the concept. Please let me know of any questions you have. I may even be able to teach you them sometime on some form of chat or other. (:

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

    Default

    Quote Originally Posted by footballjds View Post
    More power to you! It will take about 1 hour if you're really trying hard to grasp the concept. Please let me know of any questions you have. I may even be able to teach you them sometime on some form of chat or other. (:
    What would be most efficient for looting a variety of different items?
    Would it be best and most fail-safed to make DTM's to make sure every item that you want to get picked up gets picked up?
    Also, i have made a private script that runs the 6 hour limit, but it won't reload after.
    I have this:
    Simba Code:
    Begin
        SRL_SIXHOURFIX := TRUE;
        SMART_FIXSPEED := TRUE;

      setupSRL();

      DeclarePlayers;
      LoginPlayer;
      ClickNorth(SRL_ANGLE_NONE);
      SetAngle(0);
    at the beginning of the main loop. What else do I need to do to make sure it re-starts?

  10. #10
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Quote Originally Posted by Ilya View Post
    What would be most efficient for looting a variety of different items?
    Would it be best and most fail-safed to make DTM's to make sure every item that you want to get picked up gets picked up?
    Also, i have made a private script that runs the 6 hour limit, but it won't reload after.
    I have this:
    Simba Code:
    Begin
        SRL_SIXHOURFIX := TRUE;
        SMART_FIXSPEED := TRUE;

      setupSRL();

      DeclarePlayers;
      LoginPlayer;
      ClickNorth(SRL_ANGLE_NONE);
      SetAngle(0);
    at the beginning of the main loop. What else do I need to do to make sure it re-starts?
    For the 6 hours thing, at beginning of every procedure/function put
    Simba Code:
    if not LoggedIn then LoginPlayer;
    This will stop it from getting stuck usually. If you still have problems, try adding it in more places

  11. #11
    Join Date
    Jan 2012
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    19 Post(s)

    Default

    Brilliant. Thank You so much!
    +1

  12. #12
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Quote Originally Posted by Ilya View Post
    Brilliant. Thank You so much!
    +1
    It's what riwu told me when I asked him

  13. #13
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    IIRC, which i commonly do, the six hour fix should be place after setupSRL, no?

  14. #14
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Quote Originally Posted by footballjds View Post
    IIRC, which i commonly do, the six hour fix should be place after setupSRL, no?
    I have it before setupSRL in my script and it runs well past 6 hours. Maybe both work.

  15. #15
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    Quote Originally Posted by BMWxi View Post
    I have it before setupSRL in my script and it runs well past 6 hours. Maybe both work.
    maybe i'm wrong :P

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
  •