Murika version 1.0
  • description

    With less apology tour

  • authors

    ei8htx 12

  • downloads
    voxlap .vxl 2.06 MiB
    Download
    pyspades .txt 1015 bytes
    Download
  • tags

    Babel 🗼

  • text file
    name = 'Murika'
    version = '1.0'
    author = 'ei8htx'
    description = ('With less apology tour')
    extensions = { 
    	'babel' : True, 
    	'heavens_color' : (255, 255, 255, 255)
    }
    
    fog = (150, 240, 255)
    
    AREA = (165, 236, 320, 276,) #blue x1, both y1, green x1, both y2
    WIDTH = 20
    BLUE_RECT =  (AREA[0], AREA[1], AREA[0]+WIDTH, AREA[3]) #x1, y1, x2, y2
    GREEN_RECT = (AREA[2], AREA[1], AREA[2]+WIDTH, AREA[3])
    
    from pyspades.constants import *
    from pyspades.server import ServerConnection
    
    def get_spawn_location(connection):
    	if connection.team is connection.protocol.blue_team:
    		return connection.protocol.get_random_location(True, BLUE_RECT)
    	elif connection.team is connection.protocol.green_team:
    		return connection.protocol.get_random_location(True, GREEN_RECT)
     
    def get_entity_location(team, entity_id):
    	if entity_id == GREEN_BASE:
    		return (256+138, 256, team.protocol.map.get_z(256+138, 256))
    	if entity_id == BLUE_BASE:
    		return (256-138, 256, team.protocol.map.get_z(256-138, 256))