Issue: world option -2, random out of favorite worlds

  1. issueid=430 04-20-2015 09:21 AM
    SRL Member
    world option -2, random out of favorite worlds

    Might be usefull for some to have their bots login to 1/3 favorite servers.
    Isn't hard to code yourself though.
Issue Details
Issue Number 430
Issue Type Feature
Project SRL Bugs and Suggestions
Status Rejected
Votes for this feature 0
Votes against this feature 0
Assigned Users (none)
Tags (none)




  1. 04-27-2015 06:55 PM
    The Academic
    But favorite worlds are already supported?

    If world := 2; and world 2 is on your favorites, it will click the world 2 button without going to the lobby.
  2. 04-27-2015 07:24 PM
    SRL Member
    Yes I know, I currently have it pick random of my 3 fav worlds. Doesnt matter much and it is far from needed to be added.
  3. 04-28-2015 03:06 PM
    The Academic
    Quote Originally Posted by lovebotter
    Yes I know, I currently have it pick random of my 3 fav worlds. Doesnt matter much and it is far from needed to be added.

    Oh now I see what you were asking; a random world out of the 3 favourites. This isn't needed as you can randomly assign the world inside your script

    Simba Code:
    case random(3) of
      0: world := 1;
      1: world := 2;
      2: world := 3;
    end;

    etc...

    Thanks for the suggestion though.
  4. 04-28-2015 03:14 PM
    SRL Member
    That was exactly what I was using :)
+ Reply