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

Thread: L0ser's Simple Stunner

  1. #1
    Join Date
    Nov 2011
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default L0ser's Simple Stunner + Curser

    L0sers Stunn0r

    I decided to make this as someone requested it and I also wanted to use it as well so I made it myself.

    many of the procedures such as the antibans are taking from YoHoJo's OLDSEX script however the stunner itself only uses 2 procedures that I wrote, very simple script actually.


    Averaged 15k xp every 10 minutes therefore 90k xp an hour.

    Requirements

    • 80 Magic or 19 if cursing
    • Runes to cast Stun or Curse
    • Negative magic attack bonus(recommended -70 or less I still cast successfully with -60)
    • make sure the demon is in sight
    • Start the script in the OLDSEX room(pic related)



    Recommends


    • Wear Stealing Creation armors for bonus magic xp, Use the melee version as they have negative magic bonuses and still give the magic bonus xp regardless of what combat version the armor is.
    • Use a Mud staff
    • Use a Low Ping world
    • Babysit the script as it cannot solve randoms





    Currently the script works pretty flawless for me however it does click on the wizard and gate now and then but the script does not get interrupted by doing so.

    Added a Curser script to the collection download CURS0R.


    Feedback is also appreciated.

    Issues
    The demon colour seems to change really frequently.
    If something does not work tell me.



    Update
    V2 with Proggy!!
    and autocoloraids!!

    proggy

    /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    | --> L0sers Curs0r OLDSEX room V1 <-- |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
    | Worked for 4 Hours, 58 Minutes and 13 Seconds |
    | Stuns cast 4900 |
    | Experience gained...142100 |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
    Last edited by loser69; 01-27-2012 at 04:50 AM. Reason: changed script

  2. #2
    Join Date
    Dec 2011
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Rep + I love you

  3. #3
    Join Date
    Dec 2011
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    PS: you left your user and pass in script, I've tried to change it for you but someone has already done it, I hope they send it back to you, anyways you should probably remove it from the script.

  4. #4
    Join Date
    Nov 2011
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    shit I forgot it someone send me my pass please

  5. #5
    Join Date
    Dec 2011
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by loser69 View Post
    shit I forgot it someone send me my pass please
    Was looking at the srl stats one, you should change that too but I managed to change your rs details, sent it to you in a pm

  6. #6
    Join Date
    Nov 2011
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Yea thanks bro, haven't changed my pass for like 5 years,
    amateur mistake of me, anyway does the script work for you?

  7. #7
    Join Date
    Dec 2011
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by loser69 View Post
    Yea thanks bro, haven't changed my pass for like 5 years,
    amateur mistake of me, anyway does the script work for you?
    it's working beautifully, if an anti random could be added it would be so good, but I'll babysit, definitely worth the real scripts section.

  8. #8
    Join Date
    Dec 2011
    Location
    Sydney
    Posts
    1,284
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    How much EXP/hr is this?

  9. #9
    Join Date
    Nov 2011
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    I got 80 - 83 magic in about 5 hours, havn't made a progress report so I can't tell but possibly 80K+ or double that if you use stealing creation armors.

    Quote Originally Posted by Lolsen View Post
    it's working beautifully, if an anti random could be added it would be so good, but I'll babysit, definitely worth the real scripts section.
    I tried adding 'FindNormalRandoms' but it would slow the script down a lot as it would change to the inventory tab after every cast, however it does still work just implement it on line 159 or something
    Last edited by loser69; 01-11-2012 at 08:21 AM.

  10. #10
    Join Date
    Nov 2011
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Got 80-85 magic so far from this.

    also are you using my script?(pic related)

  11. #11
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Quote Originally Posted by loser69 View Post
    I got 80 - 83 magic in about 5 hours, havn't made a progress report so I can't tell but possibly 80K+ or double that if you use stealing creation armors.



    I tried adding 'FindNormalRandoms' but it would slow the script down a lot as it would change to the inventory tab after every cast, however it does still work just implement it on line 159 or something
    Write a case statement of about 20 to check for randoms.

  12. #12
    Join Date
    Nov 2011
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    aren't case statements for antibans?

    I already have antibans on it if so.

  13. #13
    Join Date
    Oct 2011
    Location
    UK
    Posts
    1,322
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    A few things:
    Simba Code:
    wait(2)    //Wait time is in milliseconds, there may as well not be a wait here..

    Lets say you want it to proggy every minute yoy would:
    Simba Code:
    repeat
      Antiban
      Findspell
      Castspell
      ProgressReport   //Just add this procedure into the loop
     until(false)

    However that would make it proggy every time the spell is cast, so lets use the "MarkTime" and "TimeFromMark" procedures to only call it say every 1 minute.

    Before the loop starts we want to MarkTime so add something like:

    Simba Code:
    SetUpSRL;
      DeclarePlayers;
      LogInPlayer;
      StartTime:=GetSystemTime;
      ProgressReport;
      MarkTime(Proggy)   //This is the line I added
     repeat
      Antiban
      Findspell
      Castspell
      ProgressReport
     until(false)

    Proggy is a variable so we need to declare that

    Simba Code:
    Var
      stun, x, y, StartTime, Proggy : Integer;

    We are storing in "Proggy" the time the script started, then in your progress report we add:
    Simba Code:
    procedure ProgressReport;

    var
    Sec:integer;

    begin

      SRLRandomsReport;


      If(TimeFromMark(Proggy) < 60000) then
        exit;

    What this says is "if the time since 'proggy' is less than 60000 miliseconds (1minute) then we exit the procedure,

    However then 1 minute into the script it will continuously proggy so we need to tell it when to measure the 60seconds from again so we do this:

    Simba Code:
    procedure ProgressReport;

    var
    Sec:integer;

    begin

      SRLRandomsReport;


      If(TimeFromMark(Proggy) < 60000) then
        exit;


      Sec:= (1+((Getsystemtime-StartTime)/1000));



      Writeln(' ');
      Writeln ('/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\');
      Writeln ('| -->          L0sers Stunn0r '+ Version +'             <-- |');
      Writeln ('\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/');
      Writeln('|' + PadR(' Worked for '+ (TimeRunning) , 49) + '|');
      Writeln('|' + PadR(' Stuns cast '+ IntToStr(stun) , 49) + '|');
      Writeln('|' + PadR(' Location:' + Players[CurrentPlayer].Loc, 49) + '|');
      Writeln ('\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/');

      MarkTime(Proggy) //This is the important line
    end;

    Hope this helped

  14. #14
    Join Date
    Nov 2011
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Thanks that helped me understand a lot ,but it doesn't fix the proggy because everytime it casts stun it doesn't add a +1 here "IntToStr(stun)" it just stays at 0 the whole time.

    If you have used my script you will notice it says "found demon" every time it casts stun.

    is there anyway I can implement a +1 to Stuns cast everytime it shows the "found demon" line.

  15. #15
    Join Date
    Dec 2011
    Posts
    88
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Tested this yesterday for a hour or so , changed the DTM to curse, seems to work really well, good job

  16. #16
    Join Date
    Nov 2011
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Thanks perhaps you can give me the curse DTM?

  17. #17
    Join Date
    Jan 2012
    Location
    Finland
    Posts
    133
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by loser69 View Post
    Thanks that helped me understand a lot ,but it doesn't fix the proggy because everytime it casts stun it doesn't add a +1 here "IntToStr(stun)" it just stays at 0 the whole time.

    If you have used my script you will notice it says "found demon" every time it casts stun.

    is there anyway I can implement a +1 to Stuns cast everytime it shows the "found demon" line.
    I have absolutely no experience with Pascal nor SRL so I might misunderstood the problem completely. I just checked your code and integer stun seems to be a global variable as it should. Why not just add Inc(stun) after, lets say, mouse( x, y, 5, 5, true); line?
    Bot hard or get banned trying.

  18. #18
    Join Date
    Jul 2008
    Posts
    136
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    such as l0ser script ,



    jsut kidding gj

  19. #19
    Join Date
    Nov 2011
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    hmmm can you tell me what the inc() function does?

  20. #20
    Join Date
    Jan 2010
    Posts
    1,414
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Inc() increases an integer by 1.
    IncEx(Int, Value) increases an Integer "Int" by the value you desire.

  21. #21
    Join Date
    Nov 2011
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    thanks I'l give it a go see what happens.

  22. #22
    Join Date
    Nov 2011
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Updated Proggy Now works yay!

    huge thanks to Plekter and RISK.

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

    Default

    Nice release thanks for crediting me yea A LOT of it looks like mine, but cool nice modification to change it to do something else, good job learning and contibuting!

    I prefer supereating though, I think it's more xp/hr AND profitablle, but a lot of people seem to like stunning for some reason hmmm....!

  24. #24
    Join Date
    Nov 2011
    Posts
    132
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Thanks YoHoJo, I also prefer to superheat but gathering materials takes time unless you already have them, while with stunning or cursing you can start straight away once you get the runes.

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

    Default

    Hmm yeah true, you need quite a bit of GP to buy a lot of ores/coal to superheat long enough for it to be pretty constant, this way you can do it right away, but I bet it's quite a money sucker, but hey I've seen lots of people requesting one of these, so nice.

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
  •