Jump to content

HisDarkestFear

Members
  • Content Count

    1
  • Joined

  • Last visited

Community Reputation

0 Neutral

About HisDarkestFear

  • Rank
    On the Coast
  1. Hey there, I've been working on a deathmatch server for Xbox and keep running into a specific issue: All of my spawn points are valid positions, players have spawned at each and every one successfully, but on a very rare occasion someone will spawn at 0.0, 0.0 regardless. My best guess as to why this would happen is not the position of the spawns themselves, but the grid or player/static/zombie distance preferences. What I ultimately want is to 1) fix the issue at hand, but in the process, 2) make the spawns exact and possibly include an altitude/y coordinate. I have had great difficulty finding more information on either topic online, so posting here is my last resort really. I imagine my configuration of the spawns is poor/amateur at best, so perhaps a good place to start is: Is my method of making the spawns exact correct, or can a width and height of 0 cause issues? Is it possible/what is the correct syntax for defining the altitude of a player spawn? Is it possible for static/player/zombie proximity to outright disable a spawn, leaving no valid ones and somehow causing the issue? Here is the spawn bubble configuration I am using, all of the positions are smack dab in the middle of the north east airfield: <playerspawnpoints> <fresh> <spawn_params> <min_dist_infected>1</min_dist_infected> <max_dist_infected>5</max_dist_infected> <min_dist_player>3</min_dist_player> <max_dist_player>15</max_dist_player> <min_dist_static>.25</min_dist_static> <max_dist_static>.5</max_dist_static> </spawn_params> <generator_params> <grid_density>1</grid_density> <grid_width>0</grid_width> <grid_height>0</grid_height> <min_dist_static>.15</min_dist_static> <max_dist_static>.5</max_dist_static> <min_steepness>-45</min_steepness> <max_steepness>45</max_steepness> </generator_params> <generator_posbubbles> <pos x="12170.1" z="12525.5" /> <pos x="12198.7" z="12519.6" /> <pos x="12189.5" z="12457.4" /> <pos x="12182.9" z="12428.8" /> <pos x="12154.9" z="12430.2" /> <pos x="12136.1" z="12437.7" /> <pos x="12126.3" z="12455.1" /> <pos x="12156.3" z="12526.9" /> <pos x="12138.4" z="12485.7" /> <pos x="12176.8" z="12535.1" /> <pos x="12190.8" z="12529.3" /> <pos x="12169.0" z="12512.9" /> <pos x="12194.8" z="12527.3" /> <pos x="12177.1" z="12534.8" /> <pos x="12167.3" z="12488.2" /> <pos x="12154.6" z="12474.6" /> <pos x="12171.3" z="12483.4" /> </generator_posbubbles> </fresh> </playerspawnpoints> Thank you for you time, any advice or supplementary material would be greatly appreciated.
×