Results 1 to 4 of 4

Thread: Auto Teleport?

  1. #1
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Auto Teleport?

    I am making a teleporter that will teleport you to either Falador, Varrock or Lumbridge. What would i use so that the user can choose which one they want to teleport to?

  2. #2
    Join Date
    May 2007
    Location
    Ohio
    Posts
    2,296
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    strings? integers? booleans? extended? all 4 will work.. lol

    Edit: or a const...

  3. #3
    Join Date
    Aug 2007
    Posts
    429
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Yes as Timer said.

    Make a constant at the top of your script using one of those.
    Strings and Integers are probably most practical.

    Ex.
    SCAR Code:
    const
      TeleportTo = 1;  {1=Lumbridge; 2=Varrock; 3=Falador;}
      //or
      TeleportTo = 'Lumbridge';   {Lumbridge, Varrock, or Falador?}

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

    Default

    i think string is better=p example:

    SCAR Code:
    Players[0].Strings[1] := 'Varrok';//EXAMPLE

    read tuts if you dont understand that

    const are ok but look too noobish no fence timer my lova =p

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. What if they teleport you?
    By karibo in forum OSR Help
    Replies: 1
    Last Post: 10-30-2008, 02:20 PM
  2. Teleport crafter...
    By welshboy in forum RS3 Outdated / Broken Scripts
    Replies: 0
    Last Post: 09-29-2008, 03:24 PM
  3. fally teleport
    By ben600006 in forum First Scripts
    Replies: 5
    Last Post: 06-01-2008, 05:14 AM
  4. How to cast teleport
    By Mr.Klean in forum OSR Help
    Replies: 2
    Last Post: 05-15-2007, 05:14 AM

Posting Permissions

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