Results 1 to 7 of 7

Thread: Stuis Teleporter

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

    Default Stuis Teleporter

    Hey guys this is my 1st ever script made, i did it after watching a few tuts and then when i started i didnt look at one so it was all from memory :P,

    Code:
    program Stuis_Teleporter;
    
    Procedure Mage_Tab;                                       //1 = magic tab
    begin;                                                    //2 = Varrock Tele           //7 = Friends Bar 7=bottom 8 = top
    Movemouse(1, 1); //Moves mouse to magic tab               //3 = Skill Tab              //6 =Friends List
    Clickmouse(1, 1, 1); //Clicks Magic Tab                   //4 = Random                 //5 =Magic Icon
    Movemouse(2, 2); // Moves it to varrock tele, Other Coords for other teles are at the bottom
    
    End;
    
    Procedure Tele;
    begin;
    Clickmouse(2, 2, 1) //Clicks Tele
    Wait(1000) // Waits before clicking again, want to offset +/- 500
    
    
    End;
    
    Procedure Antiban;
    begin;
    Movemouse(3, 3); //How to choose a random coordinate inside a given area?
    Clickmouse(3, 3, 1); // Click where the mouse lands
    Movemouse(5, 5); // Checks how much till you level in mage, still want to offset where the mouse goes by a random amount each time
    Wait(3000); // Simulates you looking at how much xp left, want to offset this by +/- 1 second
    Movemouse(4, 4); //How to choose a random coordinate inside a given area?
    Wait(2000); // Simulates you looking at how much xp left, want to offset this by +/- 1 second
    Movemouse(1, 1); //Moves mouse to magic tab
    Clickmouse(1, 1, 1); //Clicks Magic Tab
    Movemouse(2, 2); // Moves it to varrock tele, Other Coords for other teles are at the bottom
    
    
    end;
    
    Procedure Antiban_2;
    begin;
    Movemouse (6, 6); // what a normal person would do :P check their friends
    Clickmouse(6, 6, 1); // what a normal person would do :P check their friends
    Movemouse(8, 7); // If you have a large friends list, if you dont just comment these next few lines out
    Holdmouse(7, 7, 1); // Clicks it so you can move mouse down the list
    Movemouse(7, 7); // Moves it to the bottom of the list
    MoveMouse(8, 7);// Goes to the bottom of friends list then back to the top
    ReleaseMouse(8, 7, 1);
    Movemouse(1, 1); //Moves mouse to magic tab
    Clickmouse(1, 1, 1); //Clicks Magic Tab
    Movemouse(2, 2); // Moves it to varrock tele, Other Coords for other teles are at the bottom
    
    
    End;
    
    Procedure Antiban_3;
    Begin;
    //Presskey
    Movemouse(1, 1); //Moves mouse to magic tab
    Clickmouse(1, 1, 1); //Clicks Magic Tab
    Movemouse(2, 2); // Moves it to varrock tele, Other Coords for other teles are at the bottom
    
    End;
    
    
    
    begin
    Mage_Tab;
    Repeat
    Tele
    Until(False); //do you just put the number of repeats in here? e.g. 700 teles would you put 700 in here?
    
    end.
    
    
    //Questions?
    
    //Line 5, How Can I Make It Click Anywhere In The Magic Skill Box? Settargetbitmap(randompos)clickmouse? Or Something Like That Need This For Alot Of My Anitban
    //Line 25-27,39-41,47,49 Are They Needed Or Do I Just Repeat "Mage_Tab" Somewhere
    //Line 19-27 How Can I Offset These? "Wait(RandomRange(2000-4000));" ?
    //How Do I Use The Keyboard Functions To Move The Keys Around? e.g. Turn Screen 90 Degrees With A Random Offset I Dont Have Any Clue On How To Do It lol
    //How Do I Make The Antiban Go At Random Times? I Have Three Of Them, Moving Keyboard And The Friends List And XP One
    //Or Do I Just Make Them All Into One?
    //I Dont Know If Simba Supports This But On Levelup Could you Quickchat Your Mage Level And Say Like W00T Leveled Again Or Something Along Those Lines
    
    //Thanks For The Help And For Using My Script :P Very Basic But I Made It Without Any Google Or Anything Lol
    //I Did It When My Internet Wasnt Working
    
                                                           Tele
    
    
    //Camelot Tele Coords = x,y
    //Fally Tele Coords = x,y
    //Lumby Tele Coords = x,y
    Didnt get all the coords done cause my internet was fucking around with me, but what do you think of the code?

    and how do you impletement the antiban i have it in there but dont know how 2 use it

  2. #2
    Join Date
    Jan 2012
    Location
    I live in Australia.
    Posts
    137
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    To add the antiban in this script you can put it in the main loop e.g.

    Simba Code:
    Repeat
    Tele
    AntiBan
    Until(False); //do you just put the number of repeats in here? e.g. 700 teles would you put 700 in here?

    end.

    But then your going to have to change your antiban procedure so it doesn't do it after every click, to do that have a look at the code below.

    Simba Code:
    procedure AntiBan;

      begin
        case Random(50) of
        1: begin
                  (put antiban_1 here)
               end;
        2: begin
                  (put antiban_2 here)
                end;
        3: begin
                  (put antiban_3 here)
                end;

          end;
      end;

    So after every tele its going to do the antiban procedure but this time it will generate a number between 1 and 50(you can change the 50) and if the number generated is either 1, 2 or 3 it will do your antiban movements.

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

    Default

    Thanks for the help

  4. #4
    Join Date
    Jan 2012
    Location
    I live in Australia.
    Posts
    137
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    no worries also for 'How to choose a random coordinate inside a given area?' try using mousebox

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

    Default

    What is that? do you have an msn? so i can add you 2 help?

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

    Default

    Stui! Great to see a new guy come here from Sythe!
    I assume you only watched my first video tutorial???

    Good start but DUDE!
    Clickmouse/movemouse/etc will get you BANNED!
    They are instant and 100% robotic! Lightining fast and very detectable!

    Please read more tutorials/watch my video tutorials FOR RUNESCAPE scripts to see how to include SRL and use the human like mouse functions (extremely similar) instead!

    I hope you didn't run this too long!



    Anywyas once again great to see a new face and a new leaarner I love it!

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

    Default

    Thanks Yo and yer i didnt use it at all it wouldnt work :S

    but i will do and yes i did learn from your vids

Thread Information

Users Browsing this Thread

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

Posting Permissions

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