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)