Weiterlesen...Zitat von Steam
Updates to Altitude have been released. The updates will be applied automatically when your Steam client is restarted. The major changes include:
Added "Ace" System:
- Upon reaching level 60, players can click a button under Hangar Deck -> Stats to become an Ace.
- When you become an Ace you will start over at level 1 with unlocks and challenges reset.
- There are no gameplay advantages to becoming an Ace.
- You will receive a new badge and the first 5 Ace ranks will each unlock an extra slot on the plane selection screen.
- The max Ace rank is 10.
- Aces can only gain XP in multiplayer games: single player skirmishes and bot kills don't generate XP Ace XP gain is slower on high player count servers to discourage XP farming: with 10 or fewer players aces gain experience at 140% the pre-patch rate; at 14 players experience accumulates at the normal rate; beyond 14 players experience accumulates slower in proportion to the excess player count (e.g. 20 players -> 14/20 = 70% normal XP gain)
Ball Mode Improvements:
New Maps:
- Added "Ball Camera" spectate option: press C to toggle between Free/Chase/Ball spectate modes
- Added goal assist tracking
- Added "time of possesssion" to end of round award screen
- Added visual trail effect to ball
- Increased Biplane's ball shot speed (16.5 -> 17.2)
- Increased Miranda's ball shot speed (16.8 -> 17) Decreased Loopy's speed while carrying the ball (79% -> 78%)
New Console Commands:
- Added ball_planepark and tbd_planepark (thanks Mandrad)
- Added tbd_nuclear (thanks Hartz)
- Added tbd_focus (thanks Esoteric) Updated ball_cave, ball_core, ball_football, ball_grotto, ball_labyrinth, ball_lostcity, ball_mayhem2, ball_planepark, ball_snow (thanks Maimer)
Award Screen:
- dnd (do not disturb mode), type "/dnd true" into the chat window to activate, "/dnd false" to deactivate: suppresses in-game whisper messages and notifications
- listBans
- removeBan (IP or VaporID)
- addBan (IP or VaporID) (duration) (time-unit) (reason) -- for banning players that aren't currently on the server
- serverWhisper (nickname) (message) -- allows the server to send a message to a single player
- serverMessage assignTeam (team -1 is spectator, 0 is left team, 1 is right team)
Server List:
- Added "You..." stat box beneath MVP boxes for comparison Updated categories to display additional information
Helper Text:
- Server rows now refresh upon selection Added filter option "Level Appropriate" -- excludes servers that don't allow players in your level range
Miscellaneous:
- Explodet: "Press F to launch a rocket, then press F again to detonate it."
- Biplane: "Press F and D simultaneously to fire both weapons at once." Miranda: "Miranda's forward warp (hold UP) damages enemies in its path."
Server Enhancements for Third-Party Tools:
- Added "Map Editor" and "Server Launcher" links to the main menu
- Adjusted packet loss tracking for max ping kick detection
- Streamlined facebook app, added unlink option, fixed known issues
- New display option "Show Notifications" under Options -> Gameplay: toggles visibility of notification boxes in bottom right (e.g. " logged in") New child safety option "Suppress names" under Options -> Account: replaces custom player names with "Player 1", "Player 2", etc
<ul style="padding-bottom: 0px; margin-bottom: 0px;" > Servers now write significantly more information to a JSON-formatted log file for easy parsing by third-party tools, details at http://altitudegame.com/forums/showthread.php?t=2810
You can now execute console commands on servers while they're running by writing lines to the file ~Altitude/servers/command.txt
Added support for custom voteable commands (edit ~Altitude/servers/launcher_config.xml to define custom commands)
- Example: change the server running on port 27275's current map to ffa_cave echo 27275,console,changeMap ffa_cave>> ~Altitude/servers/command.txt
You can then set up custom code to monitor the log file and respond to the custom command, for example when a line like this appears in ~Altitude/servers/log.txt:
- Example: add a 'startLadder' command that requires 60% yes votes to pass:
- Open ~Altitude/servers/launcher_config.xml with a text editor
- For each server you'd like to modify, replace the line "" (or add a line just before if you're using an outdated config file) with:
You can run custom code to initiate other events, for example show a message, balance teams, start a tournament, and change to a randomly selected map:
- {"command":"startLadder","type":"customCommand","t ime":20428,"port":27275} [Note: your script should use a JSON-compliant parser to discover type=customCommand, command=startLadder, port=27275]
- echo 27275,console,serverMessage Initiating ladder game, leavers will be banned>> ~Altitude/servers/command.txt
- echo 27275,console,balanceTeams>> ~Altitude/servers/command.txt
- echo 27275,console,startTournament>> ~Altitude/servers/command.txt echo 27275,console,changeMap tbd_core>> ~Altitude/servers/command.txt