Results 1 to 8 of 8

Thread: in fight help!

  1. #1
    Join Date
    Mar 2012
    Location
    Australia
    Posts
    625
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default in fight help!

    Hi, this is a script for soulsplit, auto fighter, I have problems, sometimes in fight does not work, I was thinking pixel shift but i have struggled with it a lot in past scripts and I don't really want to wrack my brain trying again, can anyone suggest other ways in which I can find if it is in combat?

    Also I would like help with looting, particullary charms, I believe the uptext for looting is the same for this and normal rs so it may work? Problem is I don't know when is a good time to search for that colour, what is a good colour to choose, and how possibly exclude already looted bits.

    The colour i was thinking of choosing for this is the colour of noted items, or possibly herbs because these seem to drop fairly often.

    Thanks for your help! Remember this is for a private server!




    Simba Code:
    program SoulsplitAutoFighter;
    {$i srl\srl.simba}

                ////////////////////Soul Split Fighter////////////////////////
                // 1. Go to the area with the monster you want to kill.     //
                // 2. Try get a less populated area!                        //
                // 3. Use the colour picker tool, select the colour.        //
                // 4. Press start                                           //
                // 5. Hit f3 a few times for script to stop                 //
                //             Works best with SoulSplit Client             //
                // DOES NOT EAT, DOES NOT LOOT YET, WILL SOMETIMES ATTACK   //
                // WHEN YOU ARE ALREADY ATTACKING, ENSURE AUTO RETAL IS ON! //
                //////////////////////////////////////////////////////////////

    // Things to come:
    // Looting charms, Eating, Pots, Improved in fight etc.
    // All in time.

    procedure FindandAttack;
    var  x, y: integer;
    begin
    if FindColor(x, y, 6268823, 15, 15, 730, 482) then //Last two numbers are dimensions
    WriteLn('Found Color');
    begin
    if srl_infight = false then
    Mouse(x, y, 0, 0, True);
    WriteLn('Fighting');
    Wait(RandomRange(1300, 1600));
    end;
    end;
    begin  ClearDebug;

    SetUpSRL;

    repeat
    FindandAttack;
    until (IsKeyDown (114)); //Press f3 to stop
    end.
    Bored of playing rs, and bored of botting it, why am i here?

  2. #2
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    Fixed standards and some logic.
    Flight has a great tutorial for pixelshift (http://villavu.com/forum/showthread....ragepixelshift)
    Just go to the scripting tutorial section/use the search function and u will find a lot of useful tutorials.
    Simba Code:
    program SoulsplitAutoFighter;
    {$i srl\srl.simba}

                ////////////////////Soul Split Fighter////////////////////////
                // 1. Go to the area with the monster you want to kill.     //
                // 2. Try get a less populated area!                        //
                // 3. Use the colour picker tool, select the colour.        //
                // 4. Press start                                           //
                // 5. Hit f3 a few times for script to stop                 //
                //             Works best with SoulSplit Client             //
                // DOES NOT EAT, DOES NOT LOOT YET, WILL SOMETIMES ATTACK   //
                // WHEN YOU ARE ALREADY ATTACKING, ENSURE AUTO RETAL IS ON! //
                //////////////////////////////////////////////////////////////

    // Things to come:
    // Looting charms, Eating, Pots, Improved in fight etc.
    // All in time.

    procedure FindandAttack;
    var
      x, y: integer;
    begin
      if FindColor(x, y, 6268823, 15, 15, 730, 482) then //Last two numbers are dimensions
      begin
        WriteLn('Found Color'); //put everything within the begin and end!
        Mouse(x, y, 0, 0, True);  //u may want to change to right click and choose option in case mob moves
        WriteLn('Fighting');
        while IsMoving do
          wait(10);
        Wait(RandomRange(600, 1200));
        while srl_infight do
          Wait(RandomRange(50, 150));
      end;
    end;

    begin
      ClearDebug;
      SetUpSRL;
      repeat
        FindandAttack;
      until (IsKeyDown (114)); //Press f3 to stop
    end.

  3. #3
    Join Date
    Mar 2012
    Location
    Australia
    Posts
    625
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    up text doesnt work,
    pixel shift is bad for some of these monsters because they flap about all crazy like.
    Bored of playing rs, and bored of botting it, why am i here?

  4. #4
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    Is SoulSplit's hp bar the same as RS? If it is it should work. Do u have camera set to high angle?
    U can limit pixelshift search radius to only around ur character, so its detecting movements of ur character rather than mobs.

  5. #5
    Join Date
    Mar 2012
    Location
    Australia
    Posts
    625
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    Quote Originally Posted by riwu View Post
    Is SoulSplit's hp bar the same as RS? If it is it should work. Do u have camera set to high angle?
    U can limit pixelshift search radius to only around ur character, so its detecting movements of ur character rather than mobs.
    Yes i realize that, i only check pixels around the character box obviously, but sometimes they walk into where you are and because its a private server you both blend together rather than only you showing up.
    Bored of playing rs, and bored of botting it, why am i here?

  6. #6
    Join Date
    Jan 2008
    Location
    C:\
    Posts
    1,483
    Mentioned
    2 Post(s)
    Quoted
    2 Post(s)

    Default

    Is there an XP bar on this private server?

  7. #7
    Join Date
    Mar 2012
    Location
    Australia
    Posts
    625
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    yeh there is an xp bar, but it is different to current runescape one. and no floating xp either
    Bored of playing rs, and bored of botting it, why am i here?

  8. #8
    Join Date
    Jul 2008
    Location
    NSW, Australia
    Posts
    881
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

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
  •