Author Topic: The arena changes randomly  (Read 1107 times)

Offline daleksec7

  • Heavyweight
  • Posts: 421
  • Rep: 8
  • Working hard
    • View Profile
    • Awards
The arena changes randomly
« on: April 07, 2017, 02:15:04 PM »
I was wondering if someone could help me,

I am making this arena which will have statick hazards (uneven floors, pits etc) and I want to make 3 versions of this so the pit is in the diffrent place or the static hazards are diffrent but they have the same out look, I was wondering if there was a way to make the game to randomly choose which GMF file to use each time its played

Thanks

Offline Badger

  • Permanent Artifact
  • Giga Heavyweight
  • Posts: 6298
  • Rep: 2
  • I wish to be with my people
  • Awards BOTM Winner Donated money for site hosting 2019
    • View Profile
    • Awards
Re: The arena changes randomly
« Reply #1 on: April 07, 2017, 02:36:20 PM »
should be possible. If you look in the .py for the arena, and look on line 16, you should see:
Code: [Select]
        Arenas.SuperArena.__init__(self, "Arenas/arenaname/arenagmf.gmf")
change that to:

Code: [Select]
    randomnumber = random.randint(0,3)
    if randomnumber == 0:
        Arenas.SuperArena.__init__(self, "Arenas/arenaname/arenagmf1.gmf
    elif randomnumer == 1:
        Arenas.SuperArena.__init__(self, "Arenas/arenaname/arenagmf2.gmf
    else
        Arenas.SuperArena.__init__(self, "Arenas/arenaname/arenagmf3.gmf

Obviously, changing the filenames as needed.
also lol at most toxic guy around calling others out on this sh**
Google Drive with my newer bots

Offline Badnik96

  • tired of your shit
  • *
  • Posts: 17527
  • Rep: 3
  • Awards BOTM Winner
    • View Profile
    • Awards
Re: The arena changes randomly
« Reply #2 on: April 07, 2017, 03:12:51 PM »
that's a cool idea actually, hopefully it works out

Offline Asbestosstar

  • Most Bizzare of 2017. Also2nd Best new host of 2017
  • Super Heavyweight
  • Posts: 862
  • Rep: -4
    • Asbestosstar Gaming
    • View Profile
    • Asbestosstar.com
    • Awards
  • See profile for gamer tags: Yes
  • Skype: Asbestosstar
Re: The arena changes randomly
« Reply #3 on: April 07, 2017, 04:44:38 PM »
Wow, I want to do that.