Results 1 to 6 of 6

Thread: Whats the symbol name for a teleport?

  1. #1
    Join Date
    Jun 2007
    Location
    NSW, Australia.
    Posts
    541
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Whats the symbol name for a teleport?

    Using FindSymbol,

    Thanks
    Quote Originally Posted by RAM View Post
    I sam sofa king wee todd did ! ~RAM
    My SRL Army Blog.


  2. #2
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    {*******************************************************************************
    Valid Arguments are:
      - bank              - mining site, mining spot         - transportation
      - magic shop        - water source, water              - furnace
      - anvil             - rare trees, tree                 - fishing spot, fish
      - cookery, cook     - quest                            - mill
      - weave             - pottery, pot                     - spinning wheel, spin
      - guide             - shop, store                      - shield
      - altar             - arrow                            - bar
      - dungeon           - churn                            - house
      - Axe Shop          - Cookery Shop                     - Windmill
      - minigame          - fur trader                       - Archery Shop
      - staff Shop        - clothes shop                     - farming spot
      - apothecary        - Sword shop                       - platebody shop
      - scimitar shop     - gem stall                        - silk stall
      - plateskirt shop   - agility                          - training dummy
      - food shop         - fishing shop/fish store          - Jewelery
      - Crafing shop      - portal (to player owned houses)  - Makeover Mage
      - Mace Shop         - Hair Dresser                     - Mining Shop
      - silver stall      - spice stall                      - farming shop
      - slayer master     - herbalist                        - candle shop
      - Saw Mill          - Kebab shop                       - Short cut
      - hunter store      - hunter training                  - Sandpit
    *******************************************************************************}

    Portal?
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

  3. #3
    Join Date
    Apr 2007
    Location
    Perth, Australia
    Posts
    3,926
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    FindSymbol(x, y, 'Transportation')

  4. #4
    Join Date
    Jun 2007
    Location
    NSW, Australia.
    Posts
    541
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Cheers. Didn't know it was transportation, lol. And I knew it wasn't portal.
    Quote Originally Posted by RAM View Post
    I sam sofa king wee todd did ! ~RAM
    My SRL Army Blog.


  5. #5
    Join Date
    Oct 2007
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm sure this is pretty lame compared to what most people can do here, but I'm still a n00b with Scar.

    SCAR Code:
    program Teleport;
    {.include SRL/SRL.scar}

        procedure TeleportToLumby;
        begin
        MoveMouse(0, 0);
        Wait(1000+random(200));
        MoveMouse(861, 303);
        Wait(2000+random(200));
        ClickMouse(861, 303,true);
        Writeln('Opening Teleport');
        Wait(1000+random(200));
        MoveMouse(692, 358);
        Wait(2000+random(200));
        ClickMouse(692, 358,true);
        Wait(15000+random(200));
        Writeln('Teleporting');
        end;
    begin
    TeleportToLumby;
    end.

    It works on my 1024x768 screen to open the magic folder and teleport to Lumbridge. You may have to play with the "x, y"s if you have a different screen resolution.

  6. #6
    Join Date
    Mar 2007
    Location
    Netherlands->Amersfoort.
    Posts
    1,615
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Dragg the cross hair .
    but if i where you i would read some tuts on how to use srl, cause that makes scripting a lot easier .

    SCAR Code:
    program new;
    {.include srl/srl.scar}
    {.include srl/srl/skill/magic.scar}

    procedure TeleportToLumby;
    begin
      GameTab(7);                       {}
      Writeln('Opening Teleport');    {}  //cast spell allready open the magic tab.
      Cast('home teleport');
      Writeln('Teleporting');
    end;

    begin
      SetUpSrl;
      TeleportToLumby;
    end.

    srl can do alot of useful stuff

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. 〠 <- Whats that symbol?
    By ZaSz in forum The Bashing Club / BBQ Pit
    Replies: 21
    Last Post: 06-04-2008, 10:58 PM
  3. fally teleport
    By ben600006 in forum First Scripts
    Replies: 5
    Last Post: 06-01-2008, 05:14 AM
  4. clicking the quest symbol then the bank symbol
    By RudeBoiAlex in forum OSR Help
    Replies: 7
    Last Post: 03-22-2007, 11:14 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
  •