Results 1 to 2 of 2

Thread: Random world switcher

  1. #1
    Join Date
    Mar 2008
    Posts
    426
    Mentioned
    1 Post(s)
    Quoted
    116 Post(s)

    Default Random world switcher

    Code:
    ExitToLobby;
    OpenWorldScreen;
    ChangeWorld(RandomWorld(false, false));
    
    //RandomWorld(True, false);
    Tried both..

    Neither do anything!

    Why does it not log in ! RAH.

    EDIT: Sorry im really stoned.
    I just realized i could easily look through other scripts n solve my issue. Will do now.

  2. #2
    Join Date
    Apr 2012
    Location
    Land of the Rising Sun
    Posts
    207
    Mentioned
    0 Post(s)
    Quoted
    77 Post(s)

    Default

    You could use something like this, I modified it from someone else's script and works fine for me.

    Simba Code:
    Procedure WorldHop;
    begin
      if ExitToLobby then
      begin
        repeat
          wait(10);
        until LobbyScreen;
        if OpenWorldScreen then
          ChangeWorld(RandomWorld(True,False));
        repeat
          wait(10);
        until LoggedIn;
      end;
    end;
    My Scripts: DWT Iron Miner

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
  •