Results 1 to 6 of 6

Thread: ChangeWorld function problems

  1. #1
    Join Date
    May 2013
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Question ChangeWorld function problems

    Hello. I'm making a script and there's a part where I need to use ChangeWorld function. But when I use it, for example ChangeWorld(306), it sometimes doesn't click on the specified world, but misses it and clicks on the blank space between world 307 and 306. After that, it waits for about 5 seconds, clicks "cancel" and logs back to the current world. Sometimes it even changes to world 307 instead of 306. Same thing is happening with ChangeWorld(RandomWorld).

    I don't really feel like making my own function for changing worlds, so any help on how to fix this problem would be appreciated.

  2. #2
    Join Date
    May 2013
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Still looking

  3. #3
    Join Date
    Feb 2012
    Location
    UK
    Posts
    909
    Mentioned
    10 Post(s)
    Quoted
    191 Post(s)

    Default

    I noticed when using Ashaman's gnome script that the Worldinfo command wasn't working correctly. At first I thought it might have been because some worlds are missing, like 307, but even accounting for this by decreasing the world number doesn't solve the problem.
    Solar from RiD.

  4. #4
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

  5. #5
    Join Date
    May 2013
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks!

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

    Default

    i use
    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;
          Wait(200);
          MakeCompass('W');
      end;
    end;



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
  •