Results 1 to 16 of 16

Thread: Shawn's Auto Teleporter

  1. #1
    Join Date
    Dec 2007
    Location
    Randolph MA
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Shawn's Auto Teleporter

    This is a script that will teleport you plain and simple

    Instructions: Get all of your equipment in your inv. log out and start the script

    SCAR Code:
    program Shawns_Auto_Teleporter;
    {.include SRL/SRL.scar}
     var
     MageLevel :integer;
     Casted :integer;
     TotalCasted :integer;

     const
    Location = 'Varrock';
    //Camelot, Lumbridge, Varrock, or Falador. I may add more later if I get an acct with high mage :P

    procedure declarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;

      Players[0].Name := '';
      Players[0].Pass := '';
      Players[0].Nick := '';
      Players[0].Active := True;

      {Players[1].Name := '';
      Players[1].Pass := '';
      Players[1].Nick := '';
      Players[1].Active := True;

      Players[2].Name := '';
      Players[2].Pass := '';
      Players[2].Nick := '';
      Players[2].Active := True;
      }

      end;

    Have fun and enjoy!

    Use with SCAR Divi 3.15 and SRL 28 OR Higher

    If there are any bugs please tell me
    AND POST PROGGYS!

  2. #2
    Join Date
    Dec 2007
    Location
    Wizzup?'s boat
    Posts
    1,013
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    erm... where is it?
    Project: Welcome To Rainbow

  3. #3
    Join Date
    Dec 2007
    Location
    Randolph MA
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  4. #4
    Join Date
    Dec 2007
    Location
    Wizzup?'s boat
    Posts
    1,013
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    {.include SRL/SRL/Skill/Magic.scar}
    Use the "cast" function in that
    these are:
    SCAR Code:
    Cast('varrock teleport');
    Cast('lumbridge teleport');
    Cast('falador teleport');
    Cast('camelot teleport');

    SCAR Code:
    procedure SetUp;
    begin
     Gametab(13);
    end;

    maybe use this to compress your scripting;

    SCAR Code:
    procedure DoTele;
    begin
      case(LowerCase(Location))of
        'camelot' : Camelot;
        'falador' : Fally;
        'varrock' : Varrock;
        'lumbridge' : Lumby;
      end;
    end;

    also, you may like
    SCAR Code:
    FindNormalRandoms;
    in there somewhere
    Project: Welcome To Rainbow

  5. #5
    Join Date
    Dec 2007
    Location
    Randolph MA
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  6. #6
    Join Date
    Dec 2007
    Location
    Randolph MA
    Posts
    57
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  7. #7
    Join Date
    Dec 2008
    Location
    Flow-Ridaa
    Posts
    43
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice script dude.
    cant wait to try it out
    Current Project:
    Reflection Rune Mysteries quester.
    [10%]

    [INSERT HAWT SIG HERE]

  8. #8
    Join Date
    Dec 2007
    Location
    Wizzup?'s boat
    Posts
    1,013
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    double post ftl

    SCAR Code:
    procedure DoTeleport;
    begin
      if(not LoggedIn)then exit;
      case(LowerCase(Location))of
        'falador' : Cast('falador teleport');
        'lumbridge' : Cast('lumbridge teleport');
        'varrock' : Cast('varrock teleport');
        'camelot' : Cast('camelot teleport');
        else
          Writeln('Bad location name');
      end;
      Inc(TotalCasted);
      Wait(RandomRange(800, 1600));
    end;

    Simplified further (sorry i didn't think of this earlier)
    Just making the script look neater

    I like to see that you took my advice on that, not many forumers do

    also, in const add this
    SCAR Code:
    AmountToDo = 100;
    and in main loop change
    SCAR Code:
    until(not loggedin);
    into
    SCAR Code:
    until(not loggedin)or(TotalCasted >= AmountToDo);
    Project: Welcome To Rainbow

  9. #9
    Join Date
    Dec 2006
    Location
    Program TEXAS home of AUTOERS
    Posts
    7,934
    Mentioned
    26 Post(s)
    Quoted
    237 Post(s)

    Default

    good job, looks kinda like mine, did you take a example or take a look at mine. its good / simple.
    keep it up

  10. #10
    Join Date
    Apr 2007
    Posts
    217
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    How is the Randomness on here good or bad?

    Or is it similar to yours ~~Joker~~?

  11. #11
    Join Date
    Apr 2007
    Posts
    217
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  12. #12
    Join Date
    Aug 2007
    Location
    in your brain
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ()()()()()()()()()()()()()()()()()()()()()()()()
    () _________________________________________ ()
    ()@ Shawn1533's Auto Teleporter @()
    ()@ Ran for: 17 Seconds @()
    ()@ Got to Level: 0 @()
    ()@ Casted 1 times@()
    ()@ @()
    ()@ Please post!~ @()
    ()@__________________________________________@()
    ()()()()()()()()()()()()()()()()()()()()()()()()

    only teles once for me :/

  13. #13
    Join Date
    Aug 2008
    Location
    Baarn, Netherlands
    Posts
    74
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ()()()()()()()()()()()()()()()()()()()()()()()()
    () _________________________________________ ()
    ()@ Shawn1533's Auto Teleporter @()
    ()@ Ran for: 2 Seconds @()
    ()@ Got to Level: 0 @()
    ()@ Casted 1 times@()
    ()@ @()
    ()@ Please post!~ @()
    ()@__________________________________________@()
    ()()()()()()()()()()()()()()()()()()()()()()()()
    Successfully executed


    only teles once for me to:/

  14. #14
    Join Date
    Feb 2009
    Location
    In my uni room with my bong shooting people on css and programming
    Posts
    144
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    either dead or i dunno, i had a quick look through, i thin he may have the procedure calls mixed up or somthing but i only looked over it quickly

  15. #15
    Join Date
    Sep 2007
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  16. #16
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Quote Originally Posted by krazyk56 View Post
    I one tele'd also. :-\
    Yeah, because the author has not been around .. use benjaa's fixes if you want it to work, or find a different script to spam on/leech


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Auto Teleporter
    By twixster in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 08-28-2007, 03:00 AM
  2. Auto Teleporter?
    By trigoon in forum RS3 Outdated / Broken Scripts
    Replies: 7
    Last Post: 03-24-2007, 08:21 PM
  3. Auto Teleporter Help
    By Buckleyindahouse in forum OSR Help
    Replies: 8
    Last Post: 02-17-2007, 08:56 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
  •