Page 4 of 6 FirstFirst ... 23456 LastLast
Results 76 to 100 of 147

Thread: Runespan - Death Esswraith (Node Support)

  1. #76
    Join Date
    Mar 2012
    Posts
    426
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by wackojacko View Post
    stopped working properly for me, I just stand on an island it says waiting for node or esswraith to spawn etc, but theres one up i can leach from and it either logs off or jumps to another island then logs off.
    Maybe the colors have changed in there. I will have to take a look at it later tonight when I get some free time. Thanks for the heads up.

  2. #77
    Join Date
    Jan 2012
    Posts
    34
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Thanks for this script, ran it last week and got me 65-73 rc, taking a break now so i dont get banned(almost maxed pure, so dont wanna mess it up at this stage!)

  3. #78
    Join Date
    Apr 2012
    Posts
    113
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    will be using this wonderful script for runespan double point weekend

  4. #79
    Join Date
    Apr 2012
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Time Ran : 00:54:35
    Gained Xp : 10696507
    Exp/hr : -44971

    Deaths ohmm bugg??

  5. #80
    Join Date
    Feb 2012
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey this is the first time I'm using your scripts and I'm using the bloodwraith one. It seems to misclick a lot if someone has a clan vex up, and it takes a really long time to click on the bloodwraith when it spawns. A lot of the times, it doesn't even click on the bloodwraith. I am at the small island where the only monster there is a bloodwraith.

    Am I doing something wrong? lol. Thank you for the script though
    Last edited by Oleander; 05-12-2012 at 11:01 PM.

  6. #81
    Join Date
    Mar 2012
    Posts
    426
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by Oleander View Post
    Hey this is the first time I'm using your scripts and I'm using the bloodwraith one. It seems to misclick a lot if someone has a clan vex up, and it takes a really long time to click on the bloodwraith when it spawns. A lot of the times, it doesn't even click on the bloodwraith. I am at the small island where the only monster there is a bloodwraith.

    Am I doing something wrong? lol. Thank you for the script though
    As long as your settings are fixed, minimum, with brightness all the way up then you aren't doing anything wrong.

    I haven't been in Runespan in a while. I will try to get in there and see if the script is having issues. Thanks for the feedback.

  7. #82
    Join Date
    Feb 2012
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Everything is at the minimum. And you're welcome for the feedback Btw: should I do this on a crowded island/world? Or is it more optimal to do it on an emptier one

    One more feedback: It's been mentioned before but if it sees a node on another island that is better exp, it will click on that and not the ones on the island you are currently on. Also, when it does click on the bloodwraith, it often clicks to a random location once it clicks the bloodwraith, cancelling the siphon. It repeats over and over
    Last edited by Oleander; 05-13-2012 at 12:30 AM.

  8. #83
    Join Date
    Apr 2012
    Location
    Danmark
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Super awesome script thx a lot...

    Time Ran : 04:03:52
    Gained Xp : 204158
    Exp/hr : 50230
    Random Hero is here to F*** U UP!

  9. #84
    Join Date
    Feb 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice script but your antiban function is a bit fucked up. It just happend to often on this kind of afking activity. I just used 10min to make it more humanlike and added it to the progie bar.

    Replace your Antiban procedure with this:
    Simba Code:
    Procedure AntiBan;
    Begin
      Case Random(20000) Of
        100..199: begin
          SleepAndMoveMouse(RandomRange(500,750));
          Antiban_C := Antiban_C + 1;
          last_antiban := 'Sleep and Move Mouse';
        end;
        200..250: begin
          HoverSkill('Runecrafting',False);
          Wait(1500);
          Wait(Random(12000));
          Antiban_C := Antiban_C + 1;
          last_antiban := 'Hover Skill "runecrafting"';
        end;

        251..390: begin
          RandomRClick;
          Antiban_C := Antiban_C + 1;
          last_antiban := 'Random Right Click"';
        end;

        391..450: begin
          HoverSkill('random',False);
          Wait(3400);
          Wait(Random(12000));
          GameTab(25);
          Antiban_C := Antiban_C + 1;
          last_antiban := 'Hover random skill.';
        end;

      End;
      Wait(1000);
    End;

    Declare the variables:
    Code:
    Add Antiban_C as a Integer in var's
    Add last_antiban as String in var's
    If you want to have the antiban counter and last action in the progie bar then add this:
    Simba Code:
    Writeln('Antiban : '+IntToStr(antiban_C));
    Writeln('Last ABA: '+last_antiban);

    ^hope it helped you if your a antiban freak

  10. #85
    Join Date
    Mar 2012
    Posts
    426
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by Oleaa View Post
    Nice script but your antiban function is a bit fucked up. It just happend to often on this kind of afking activity. I just used 10min to make it more humanlike and added it to the progie bar.

    Replace your Antiban procedure with this:
    Simba Code:
    Procedure AntiBan;
    Begin
      Case Random(20000) Of
        100..199: begin
          SleepAndMoveMouse(RandomRange(500,750));
          Antiban_C := Antiban_C + 1;
          last_antiban := 'Sleep and Move Mouse';
        end;
        200..250: begin
          HoverSkill('Runecrafting',False);
          Wait(1500);
          Wait(Random(12000));
          Antiban_C := Antiban_C + 1;
          last_antiban := 'Hover Skill "runecrafting"';
        end;

        251..390: begin
          RandomRClick;
          Antiban_C := Antiban_C + 1;
          last_antiban := 'Random Right Click"';
        end;

        391..450: begin
          HoverSkill('random',False);
          Wait(3400);
          Wait(Random(12000));
          GameTab(25);
          Antiban_C := Antiban_C + 1;
          last_antiban := 'Hover random skill.';
        end;

      End;
      Wait(1000);
    End;

    Declare the variables:
    Code:
    Add Antiban_C as a Integer in var's
    Add last_antiban as String in var's
    If you want to have the antiban counter and last action in the progie bar then add this:
    Simba Code:
    Writeln('Antiban : '+IntToStr(antiban_C));
    Writeln('Last ABA: '+last_antiban);

    ^hope it helped you if your a antiban freak
    I personally am not an antiban freak but that is a nice one! The antibans in this script are overly basic and I was hoping people would fool around with them. If I get the time, this evening, I will probably just put this in the scripts if you don't mind. Thanks!

  11. #86
    Join Date
    Feb 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by alevere4 View Post
    I personally am not an antiban freak but that is a nice one! The antibans in this script are overly basic and I was hoping people would fool around with them. If I get the time, this evening, I will probably just put this in the scripts if you don't mind. Thanks!
    That would be great! Everything to avoid ppl get banned

  12. #87
    Join Date
    Dec 2011
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks alot for this script man, i'v got 67-90 rc in like 1.5 week. (maybe botted to much)
    could you make a smiliar script like this one but just add souls? that would be amazing.
    thanks alot man! (:

  13. #88
    Join Date
    May 2012
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    im asssuming the proggy screenshots are made of the simba screen and not the actual rs window? since i dont have a proggy in my rs window

  14. #89
    Join Date
    May 2012
    Location
    Brazil
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Excellent script.

    Here's what I got in only 5 hours of botting (Running death essw.):

    Time Ran : 05:19:18
    Gained Xp : 309672
    Exp/hr : 58190

    Great job!

  15. #90
    Join Date
    Dec 2011
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Time Ran : 04:00:58
    Gained Xp : 248337
    Exp/hr : 61835

  16. #91
    Join Date
    Mar 2012
    Posts
    426
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by mannen123 View Post
    Thanks alot for this script man, i'v got 67-90 rc in like 1.5 week. (maybe botted to much)
    could you make a smiliar script like this one but just add souls? that would be amazing.
    thanks alot man! (:
    I am actually planning on heading into Runespan and getting a Soul esswraith script made and the nodes for the higher leveled users. I should have it in the main post by tomorrow evening, so check back!

    Quote Originally Posted by the denman View Post
    im asssuming the proggy screenshots are made of the simba screen and not the actual rs window? since i dont have a proggy in my rs window
    Correct. There is no on screen progress report for these scripts just in the Simba debug box. I can probably put in a quick on screen report tomorrow though.

    Quote Originally Posted by Marc000z View Post
    Excellent script.

    Here's what I got in only 5 hours of botting (Running death essw.):

    Time Ran : 05:19:18
    Gained Xp : 309672
    Exp/hr : 58190

    Great job!
    Quote Originally Posted by Kumar View Post
    Time Ran : 04:00:58
    Gained Xp : 248337
    Exp/hr : 61835
    Love to see the progress reports guys! Keep them coming

    *Edit* - I implemented Oleaa's antiban, so everyone be sure to give him that +rep for helping out! I did not put the last antiban into the progres report, so if you are interested in the look at his post for instructions.
    Last edited by iBlank; 05-15-2012 at 07:31 AM.

  17. #92
    Join Date
    May 2012
    Location
    A Russian village
    Posts
    158
    Mentioned
    13 Post(s)
    Quoted
    37 Post(s)

    Default

    Using death here's a small proggy

    Time Ran : 00:15:33
    Gained Xp : 15014
    Exp/hr : 57931

    Brilliant script! I'm running this at 70 runecrafting

  18. #93
    Join Date
    May 2012
    Location
    Brazil
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Going to give Blood esswraith a test run now. Will have a proggy by tomorrow.

  19. #94
    Join Date
    May 2012
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Time Ran : 04:29:04
    Gained Xp : 229388
    Exp/hr : 51151

    working like a charm level 76 now almost ready to give the blood one a try

  20. #95
    Join Date
    Nov 2011
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i got this error - http://tinypic.com/r/5nqhbr/6

    what should i do?
    i ain't face, exept this time.

  21. #96
    Join Date
    May 2012
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Anyone have any reccomendations for what island to run this on? I'm at 69 RC. Members.

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

    Default

    Do you have to go to a island tha has a death node on it im not shore where to start it
    plz help a brother out

    Thanks Anthony19

  23. #98
    Join Date
    Mar 2012
    Posts
    426
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by Gurkis View Post
    i got this error - http://tinypic.com/r/5nqhbr/6

    what should i do?
    Hmm. I'm not sure what that is from. Try the scripting help section maybe.

    Quote Originally Posted by Eccentric View Post
    Anyone have any reccomendations for what island to run this on? I'm at 69 RC. Members.
    Just find an island that is somewhat small with the appropriate esswraith. Don't know any locations off the top of my head!

    Quote Originally Posted by anthony19 View Post
    Do you have to go to a island tha has a death node on it im not shore where to start it
    plz help a brother out

    Thanks Anthony19
    Yes, you need to start it on an island with a death or blood esswraith.

  24. #99
    Join Date
    Dec 2011
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    What happend to the soul esswraith?
    was rly looking forward to it ..

  25. #100
    Join Date
    Mar 2012
    Posts
    426
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by mannen123 View Post
    What happend to the soul esswraith?
    was rly looking forward to it ..
    I have been slacking! Work has been wearing me out haha. I PROMISE to have a Soul Esswraith script in the main post before I go to bed today (May 17th).
    - My Scripts (Beginning to Update to SRL 6) -

Page 4 of 6 FirstFirst ... 23456 LastLast

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
  •