Gates of Hell version 1.6
  • description

    Two gates and an underground maze. Also a one big cavern.

  • authors

    Cajun Style 3

  • downloads
    voxlap .vxl 3.91 MiB
    Download
    pyspades .txt 625 bytes
    Download
  • tags

    Water damage 🌊

  • text file
    name = 'Gates of Hell'
    version = '1.6.1'
    author = 'Cajun Style'
    description = ('Two gates and an underground maze. Also a one big cavern.')
    extensions = { 'water_damage' : 5}
    fog = (240, 24, 32)
    
    # script
    from pyspades.constants import *
    import random
    
    def get_spawn_location(connection):
        z = 29
        y = random.randrange(42,443)
        if connection.team is connection.protocol.blue_team:
            x = random.randrange(1,89)
            return (x, y, z)
        if connection.team is connection.protocol.green_team:
            x = random.randrange(423,511)
            return (x, y, z)