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

Thread: My first script -- auto caster.

  1. #1
    Join Date
    Oct 2007
    Posts
    302
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default My first script -- auto caster.

    Boxcrop's first script

    Zamorak monk auto curser!

    Version 0.5
    ----------------------

    What does this script do?
    • Finds zamorak monk
    • Uses the defined magic skill on them
    • If the monk is not found after 5 times it will log out
    • Reports on casted so far, and total experiance



    What does this script do?
    • Finds zamorak monk
    • Uses the defined magic skill on them
    • If the monk is not found after 5 times it will log out
    • Reports on casted so far, and total experiance


    Set up
    • Leave account at Varrock castle logged out.
    • Put the required information into the script
    • Come back later with mage experiance.



    Set up
    • Anti ban
    • Randsom event handler
    • Multible players
    • SRL stats

    Updated the login problem, had both arrays as value = 0, so it was replacing it's original value, if that makes sense.
    Previously known as boxcrop.


  2. #2
    Join Date
    Apr 2007
    Location
    UK
    Posts
    2,295
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    procedure FindMonk;
    // Find the damn monk

    begin
         if (FindObj(x,y,monstername,ZMonkColour1,10))
          or (FindObj(x,y,monstername,ZMonkColour2,10))
          or (FindObj(x,y,monstername,ZMonkColour3,10)) then
          begin
            Curse();
            Writeln('Found monk');
            MMouse( x,y,5,2);
            Mouse(x,y,1,1,true);
            Casted:= Casted +1;
          end else
            // If not found
            if (Not(FindObj(x,y,monstername,ZMonkColour1,10)))
                or (Not(FindObj(x,y,monstername,ZMonkColour2,10)))
                or (Not(FindObj(x,y,monstername,ZMonkColour3,10))) then
            begin
            i:= 0;
            repeat
            i:= i +1;

             Case random (3) Of
                 0: Makecompass ('s')
                 1: Makecompass ('n')
                 2: Makecompass ('w')
                 3: Makecompass ('e')
              end;
                   // proud of this! :)
             until(i = 15)
                writeln('Monk was not found.');
                Logout;
    end;


    end;

    Whats with all the white space?. You could use a label instead of doing that loop.

    SCAR Code:
    procedure FindMonk;
    // Find the damn monk
    begin
      if (FindObj(x,y,monstername,ZMonkColour1,10))
      or (FindObj(x,y,monstername,ZMonkColour2,10))
      or (FindObj(x,y,monstername,ZMonkColour3,10)) then
      begin
        Curse();
        Writeln('Found monk');
        MMouse( x,y,5,2);
        Mouse(x,y,1,1,true);
        Casted:= Casted +1;
      end else
      if (Not(FindObj(x,y,monstername,ZMonkColour1,10)))
      or (Not(FindObj(x,y,monstername,ZMonkColour2,10)))
      or (Not(FindObj(x,y,monstername,ZMonkColour3,10))) then
      begin
        i:= 0;
        repeat
          i:= i +1;
          Case random (4) Of
            0: Makecompass ('s')
            1: Makecompass ('n')
            2: Makecompass ('w')
            3: Makecompass ('e')
          end;
          // proud of this! :)
        until(i = 15)
        writeln('Monk was not found.');
        Logout;
      end;
    end;

    Corrected, also i fixed your random for compass change. you had Case random (3) Of, which means it returns 0,1,2 but you have 3 in your case.. Use Case random (4) Of

    Rogeruk's Al-Kharid Tanner V1.1 [Released]
    Rogeruk's Barbarian Crafter [Coming Soon]
    Rogeruk's Guild Fisher [Coming Soon]
    !! - Taking Requests - !!

  3. #3
    Join Date
    Nov 2007
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    God Script, im a n00b to and this helps alot for lvling up pure mage pkers

  4. #4
    Join Date
    Oct 2007
    Posts
    302
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lanky smells like a leach, did you even TRY the script.
    Previously known as boxcrop.


  5. #5
    Join Date
    May 2007
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    my one dont work mi one wont let me enter the username in plz help

  6. #6
    Join Date
    Oct 2007
    Location
    http://ushort.us/oqmd65
    Posts
    2,605
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by bhavikh77 View Post
    my one dont work mi one wont let me enter the username in plz help
    First off dont spam cause all you need to do is go to declare players and enter username and password. DON'T SPAM.
    I do visit every 2-6 months

  7. #7
    Join Date
    May 2007
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    im no spamin mi one wont enter the bloody user name n pass n i have them entered in the scipt if u want i can take a video all im askin for is some help im running vista maybe this may be the problem

  8. #8
    Join Date
    Aug 2007
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    could you help me out? i entered all the information than i ran the script, it logged me in and than did nothing? what am i doing wrong?

  9. #9
    Join Date
    May 2007
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    r u next to the monk in varrock castle

  10. #10
    Join Date
    Aug 2007
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yeah, of course

  11. #11
    Join Date
    May 2007
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    try it this way logg in first then run the script thats the only way i can seem to get it to work

  12. #12
    Join Date
    Aug 2007
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    it still didn't work?

  13. #13
    Join Date
    May 2007
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    --------------------------------------------
    Auto curser -- boxcrop version 0.5
    --------------------------------------------
    Time ran for:20 Minutes and 8 Seconds
    curses casted:366
    Total experiane gained:10614
    --------------------------------------------
    Successfully executed

    had to stop beacuse the thief came and my username n password and nick name dont does any1 have a solution for this coz its not just for this script its for all the scripts i enter my user name in the scripts or the form n when i run it i click on login clicks on udername then password then username n trys to login with out anthing written
    part from that this script is wicked!!!!1

  14. #14
    Join Date
    Jul 2007
    Location
    Lexington, NC
    Posts
    43
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice script worked and successfully compiled ill save this for later use

  15. #15
    Join Date
    Nov 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    worked 5 minuts 3 sec then quit

  16. #16
    Join Date
    Aug 2006
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lookig nice for you first

  17. #17
    Join Date
    May 2007
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    --------------------------------------------
    Auto curser -- boxcrop version 0.5
    --------------------------------------------
    Time ran for:20 Minutes and 22 Seconds
    curses casted:362
    Total experiane gained:10498
    --------------------------------------------
    hears another progy im in love with this script thank u boxcrop

  18. #18
    Join Date
    Mar 2007
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    sweet ima have 2 try this one out

  19. #19
    Join Date
    Nov 2007
    Location
    North Carolina
    Posts
    136
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I made one similar to this, looks good, thanks!
    Do you dare to fight My Brute?

  20. #20
    Join Date
    Jan 2007
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Great first script

  21. #21
    Join Date
    Dec 2007
    Location
    I'm the short man in all those arcade games you play
    Posts
    169
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice first script.

  22. #22
    Join Date
    Dec 2007
    Location
    I'm the short man in all those arcade games you play
    Posts
    169
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice first script.

  23. #23
    Join Date
    Dec 2007
    Location
    I'm the short man in all those arcade games you play
    Posts
    169
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice first script.

  24. #24
    Join Date
    Dec 2007
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey, my first post!

    Well, nice script for a first, I'm new to SRL, I'm sure this will help lots. XD

  25. #25
    Join Date
    Dec 2007
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice idea i think ill give it a try soon

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)

Similar Threads

  1. auto spell caster (curse stun vulnerability enfeeble)
    By Waddo in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 04-14-2008, 07:27 AM
  2. Replies: 5
    Last Post: 11-23-2007, 08:45 PM
  3. need a good script , auto miner auto banker plz!!
    By samuel in forum RS3 Outdated / Broken Scripts
    Replies: 27
    Last Post: 11-19-2007, 08:46 AM
  4. Auto curse caster
    By pl0xmypl0x in forum RS3 Outdated / Broken Scripts
    Replies: 7
    Last Post: 10-26-2007, 06:25 AM
  5. Auto Curse Caster - Anti ban/randoms
    By addy stabber in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 04-22-2007, 10:11 PM

Posting Permissions

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