Page 1 of 2 12 LastLast
Results 1 to 25 of 26

Thread: SoulSplit Fighter

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

    Default SoulSplit Fighter

    Hi there, my second SoulSplit script. Auto fighter.

    Does not eat
    Does not loot
    A lot of the time it clicks once already in combat
    Does not fight monsters higher level than you
    Works best with the SoulSplit client
    Have Auto Retaliate on
    Hit f3 a few times to make it stop

    Setup.
    Use the colour picker tool to choose a colour on your monster, try find an unpopulated area if you can, hit play. You may need to change the dimensions.

    I think that is all. I will be improving this as I go along, I hope... Including charm looting, eating, possibly potions, and anything people would like just ask and I will try.
    Bored of playing rs, and bored of botting it, why am i here?

  2. #2
    Join Date
    Mar 2012
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This didnt work for me.

    I just modified it so i could actually use it...

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

    Default

    Quote Originally Posted by stealth1337 View Post
    This didnt work for me.

    I just modified it so i could actually use it...
    Maybe post better/more detailed feedback on exactly what happened/went wrong and then he can work on fixing it up.

  4. #4
    Join Date
    Mar 2012
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by YoHoJo View Post
    Maybe post better/more detailed feedback on exactly what happened/went wrong and then he can work on fixing it up.
    It just didnt work I had to change around the code to make it more proof because it would keep clicking another npc while in combat.

    Anyways best of luck,

    stealth.

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

    Default

    I did mention that is clicks when you already have a target. I am working on this, I am struggling with pixel shift, but i assure you I will get it.

    What did you modify, maybe i could change it around in the main script if i feel it more worthy.
    Bored of playing rs, and bored of botting it, why am i here?

  6. #6
    Join Date
    Dec 2007
    Posts
    2,112
    Mentioned
    71 Post(s)
    Quoted
    580 Post(s)

    Default

    Wrong section :P, looked into your script, Try using Constant values to start off with instead of getting the user to search the script for where the color goes

  7. #7
    Join Date
    Mar 2012
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This is what I came up with after awhile, also pretty much the only thing i changed was the way it attacked the yaks and make sure your not in combat

    i used
    Code:
    if srl_infight = false then

    Code:
    program Yakkiller;
    {$i SRL/SRL.simba}
    var
    x,y:Integer;
    
    const
    Monster = 2699326;
    Monster1 = 2568773;
    Monster2 = 3489360;
    GoldCharm = 4746624;
    
    Procedure AttackYak;
    begin
    if srl_infight = false then
       if(FindColorSpiralTolerance(x, y, Monster, MSX1, MSY1, MSX2, MSY2, 4)) then
    begin   Mouse(x, y, 3, 3, True);
    wait(500)
    end;
    end;
    
    Procedure Pickupdrop;
    begin
        if srl_infight = false then
      if(FindColorSpiralTolerance(x, y, GoldCharm, MSX1, MSY1, MSX2, MSY2, 5))then
      begin    Mouse(x, y, 5, 5, true); //If found will Left-Click on the x, y coordinates with a randomness between 5 pixelend
      end;
    end;
    
    procedure main;
    begin
    repeat
      AttackYak;
      Pickupdrop;
    until(false)
    end;
    begin
      ClearDebug;
      SetUpSrl;
      ActivateClient;
      main;
    end.

    Thanks

    Stealth,

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

    Default

    Quote Originally Posted by pur3b100d View Post
    Wrong section :P, looked into your script, Try using Constant values to start off with instead of getting the user to search the script for where the color goes
    What are you talking about wrong section?
    Bored of playing rs, and bored of botting it, why am i here?

  9. #9
    Join Date
    Jun 2012
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by stealth1337 View Post
    This is what I came up with after awhile, also pretty much the only thing i changed was the way it attacked the yaks and make sure your not in combat

    i used
    Code:
    if srl_infight = false then

    Code:
    program Yakkiller;
    {$i SRL/SRL.simba}
    var
    x,y:Integer;
    
    const
    Monster = 2699326;
    Monster1 = 2568773;
    Monster2 = 3489360;
    GoldCharm = 4746624;
    
    Procedure AttackYak;
    begin
    if srl_infight = false then
       if(FindColorSpiralTolerance(x, y, Monster, MSX1, MSY1, MSX2, MSY2, 4)) then
    begin   Mouse(x, y, 3, 3, True);
    wait(500)
    end;
    end;
    
    Procedure Pickupdrop;
    begin
        if srl_infight = false then
      if(FindColorSpiralTolerance(x, y, GoldCharm, MSX1, MSY1, MSX2, MSY2, 5))then
      begin    Mouse(x, y, 5, 5, true); //If found will Left-Click on the x, y coordinates with a randomness between 5 pixelend
      end;
    end;
    
    procedure main;
    begin
    repeat
      AttackYak;
      Pickupdrop;
    until(false)
    end;
    begin
      ClearDebug;
      SetUpSrl;
      ActivateClient;
      main;
    end.

    Thanks

    Stealth,
    wait, so infight works? This could make my day if so.

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

    Default

    it works, roughly 50% of the time i would say.
    Bored of playing rs, and bored of botting it, why am i here?

  11. #11
    Join Date
    May 2012
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Ive also made a soulsplit fighting script and infight or SRL_infight does not work at all as soulsplit graphics are different to runescape graphics. If someone can rewrite infight to work with soulsplit graphics it should work

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

    Default

    Quote Originally Posted by bambe View Post
    Ive also made a soulsplit fighting script and infight or SRL_infight does not work at all as soulsplit graphics are different to runescape graphics. If someone can rewrite infight to work with soulsplit graphics it should work
    maybe you are using soulsplit on high detail, do it on low and it should work a bit more.

    No one is going to edit infight for you. You will have to do this yourself.

    I will be editing this script throughout the week, possibly release a flawless fighting at the end of the week, i hope! If anyone has a modified fonts for soulsplit they would be willing to give to me would help a lot. thankyou.
    Bored of playing rs, and bored of botting it, why am i here?

  13. #13
    Join Date
    Dec 2011
    Posts
    183
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by stuartroad View Post
    maybe you are using soulsplit on high detail, do it on low and it should work a bit more.

    No one is going to edit infight for you. You will have to do this yourself.

    I will be editing this script throughout the week, possibly release a flawless fighting at the end of the week, i hope! If anyone has a modified fonts for soulsplit they would be willing to give to me would help a lot. thankyou.
    go to UpCharsEx in the fonts in simba folder, the old uptext is the same as soulsplit, otherwise you could also just make a dtm of the text to check.

  14. #14
    Join Date
    May 2012
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    i made a new infight using pixelshift and it works fine, im just trying to find a way to stop attacking NPCs already in a fight

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

    Default

    some sort of hp bar check should do the trick
    Bored of playing rs, and bored of botting it, why am i here?

  16. #16
    Join Date
    Mar 2012
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by bambe View Post
    i made a new infight using pixelshift and it works fine, im just trying to find a way to stop attacking NPCs already in a fight
    Hahahaha, read my pm, we both have the opposite problem

    Stealth,

  17. #17
    Join Date
    Dec 2011
    Posts
    183
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by stealth1337 View Post
    Hahahaha, read my pm, we both have the opposite problem

    Stealth,
    well i think it may be possible that if it finds the colour of the monster, it puts a box around and returns if it finds an hp bar or not.

  18. #18
    Join Date
    Oct 2012
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    I can't find a working soul split fighting bot anywhere, this is the closest to it hope you fix it then release it xD

  19. #19
    Join Date
    Apr 2012
    Posts
    15
    Mentioned
    1 Post(s)
    Quoted
    4 Post(s)

    Default

    This one works right?

  20. #20
    Join Date
    Feb 2013
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Exception in Script: Unable to find file 'srl\srl.simba' used from 'C:\Documents and Settings\Administrator.MIKK-13148EFE27\My Documents\Allalaadimised\Soulsplit auto fighter.simba'
    why i always get this when i try to run script ?

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

    Default

    Quote Originally Posted by bottinf View Post
    Exception in Script: Unable to find file 'srl\srl.simba' used from 'C:\Documents and Settings\Administrator.MIKK-13148EFE27\My Documents\Allalaadimised\Soulsplit auto fighter.simba'
    why i always get this when i try to run script ?
    Follow instructions on how to properly set up Simba...

  22. #22
    Join Date
    Feb 2012
    Posts
    49
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    Thanks, lol built something off this, anyone have a good loc to use this?

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

    Default

    Quote Originally Posted by purerange86 View Post
    Thanks, lol built something off this, anyone have a good loc to use this?
    well it's a year old..

  24. #24
    Join Date
    Feb 2012
    Posts
    49
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    still has got good framework though.

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

    Default

    Quote Originally Posted by purerange86 View Post
    still has got good framework though.
    No the framework is not good -.- it just looks for a single color with no fail-safes and has a static loop and does not check if other monsters are in combat lol

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •