Results 1 to 4 of 4

Thread: Quick switch

  1. #1
    Join Date
    Jul 2007
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Quick switch

    I need to do some manual stuff on my bots and would like a simple "click button > program logs out, logs into next player"

    I know how to use NextPlayer... having trouble coming up with a way to tell the script to log into the next player. Any ideas?

  2. #2
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    NextPlayer(false); <-- that makes it so that it won't go back on the player it just logged out..

    NextPlayer(true); <-- will make it go on the account it was on when it gets back to that player..

    is that what you mean?

  3. #3
    Join Date
    Jul 2007
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I mean i want to log onto one player - > do stuff manually (do a quest, go to GE, buy weapons) then press a button or something and SCAR would log me out and log into next player.

    What I need help fguring out is how to tell the script to change to the next player when I want it to. follow?

  4. #4
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    if iskeydown('whateverkey') then
    Logout;
    NextPlayer(true);

    something like that....

    this is taken from scar manual
    Code:
    function IsKeyDown(C: Char): Boolean; 
    Checks if the given key is down. 
    Example:
    if(IsKeyDown('a'))then
      Writeln('You have pressed "a". Congratulations!');

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Any other way to switch worlds?
    By nobody u kno in forum RuneScape News and General
    Replies: 3
    Last Post: 07-13-2008, 10:44 PM
  2. any one here use swift switch?
    By a noob in forum News and General
    Replies: 8
    Last Post: 10-29-2006, 09:47 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
  •