Results 1 to 7 of 7

Thread: [Request] Item dropper

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

    Default [Request] Item dropper

    Can anyone make a item dropper lets say im wcing but dont want the logs can i just click play on simba and it drops everything in my invo?

  2. #2
    Join Date
    Nov 2012
    Posts
    141
    Mentioned
    0 Post(s)
    Quoted
    43 Post(s)

    Default

    Code:
    program new;
    {$define SMART8}
    {$i SRL/SRL.simba}
    {$i P07Include.simba}
    //{$i SRL-OSR/SRL/SRL.simba}
    
    begin
      SetUpSRL;
      ActivateClient;
      SetUpP07Include;
      DropAll;
    end.
    That should be it really. I haven't tried it out though.
    Uncomment stuff whether you use SRL-OSR or the P07 Include.

    Edit: Tested with SRL-OSR and works fine.
    Last edited by Neodymium; 03-15-2013 at 02:37 AM.

  3. #3
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    are you the same guy from sythe that asked for this?yohojo posted the code for it

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

    Default

    ah thanks but is there any way i can keep it from droping the top row? forgot i want to use this power fishing!

    And i use a browser not the simba cient

    this is what i'm working with

    http://i.imgur.com/BZkwONE.png
    Last edited by vmike; 03-15-2013 at 03:09 AM.

  5. #5
    Join Date
    Mar 2013
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Simba Code:
    program Dropper;
    {$I SRL/SRL.Simba}
    {$I P07Include.Simba}

    begin
    SetupP07Include;
    ActivateClient;
    Wait(100);

    If (P07_InvFull) then
    begin
      P07_DropAllExcept([1,2]);
      end else
      TerminateScript;
    end.

    Change the "DropAllExcept" numbers to your liking, first row would be [1,2,3,4]

    And yay, my first script ever, coded that couple nights ago Wish me luck in the future
    Edit: Posted older test version, updated it
    Last edited by Caniz; 03-15-2013 at 03:05 AM.

  6. #6
    Join Date
    Nov 2012
    Posts
    141
    Mentioned
    0 Post(s)
    Quoted
    43 Post(s)

    Default

    Edit: ^ That works too.

    I think...
    Simba Code:
    program new;
    {$define SMART8}
    {$i SRL/SRL.simba}
    {$i P07Include.simba}
    //{$i SRL-OSR/SRL/SRL.simba}

    var
      i: Integer;

    begin
      SetUpSRL;
      ActivateClient;
      SetUpP07Include;
      for i := 5 i to 28 do
        DropItem(i);
    end.

  7. #7
    Join Date
    Jan 2012
    Posts
    45
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Thank you so much guys I got it! Thanks so much (:

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
  •