home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 2000 May / CD-Gamer_2000-05_09_cd.bin / Patches / UnrealT / Readme.txt next >
Text File  |  2000-02-02  |  4KB  |  77 lines

  1. Unreal Tournament update 405B is now available.  It is completely network compatible with versions 400 and 402 and includes the fixes from patch 402 as well as
  2. the changes noted below. 
  3.  
  4. - Steve Polge
  5.  
  6. Bug fixes:
  7. - destroy the "winch", not the "wench" in AS-rook description :)
  8. - fixed problem with landing bob damping on slow systems with high time dilations
  9. - fixed problem where client health gets set to zero (health was still correct on the server)
  10. - fixed spectators drowning in water outside of galleon
  11. - fixed problem with one of the 402 server optimizations causing pickups to be shown when they should be hidden if high packet loss
  12. - fixed fog rendering in software
  13. - fixed assertion line 714 network crash on slow connections
  14. - fixed PlayerReplicationInfos losing owner on client - symptom was teammate health not correctly shown on team huds
  15. - fixed bad poly on Ripper weapon model
  16. - fixed flag not dropped if killed by team cannon in CTF games
  17. - fixed server browser changing highlighted server bug
  18. - fixed gold players showing up in CTF
  19. - added BossSkins.int
  20. - fixed clients hearing ambient sound on dropped weapons in some cases
  21. - fixed picking up additional shieldbelt screwed up armor total if also had other armor types
  22. - fixed teamtriggers
  23. - fixed deathsounds and hit sounds from other players not being heard in net games
  24. - fixed demo playback crash
  25.  
  26. New features:
  27. - much louder warhead explosion
  28. - don't allow Turbo mode with assault
  29. - bigger blood cloud when gibbed
  30. - Menu and text formatting changes to support Japanese text
  31. - Added "AddIni" command for umods to add lines to ini files
  32. - Changed occurances of class'DeathMatchMessage' to DMMessageClass.
  33. Allows mod authors to use their own DMMessageClass in all situations.
  34. - Made ngWorldSecret a private variable.
  35. So you can't read it from GetPropertyText anymore.
  36. - Added CRT's query packet send improvements.
  37. Should improve grabbing server lists from master server.
  38. - Added ProcessKeyEvent to HUD.
  39. Allows mod authors to work with key input directly.
  40. - Moved hardcoded SPRITE_PROJECTION_FORWARD from UnSprite.cpp to Actor
  41. property SpriteProjForward.
  42. - Set Actor's default SpriteProjForward to 32.0
  43. - Checked in RegisterHUDMutator functions in Mutator.
  44. Allows mod authors to make mutators that self register as HUD mutators.
  45. - Integrated Enhanced Actor Rendering Interface.
  46. Allows programmers to render actors in just about any way they can think of.
  47. - Enabled RCI. (Except ClearScreen and RecomputeLighting)
  48. Allows programmers more control over what's rendered from a player's point
  49. of view. Search for Render Control Interface in headers for information.
  50. - F4 brings the server browser up.
  51.  
  52. Performance improvements:
  53. - downloads from server are now rate controlled
  54. - reduced how long carcasses hang around on servers
  55. - Improved bit packing for network packets (server performance improvement)
  56. - Ability to turn fractal texture animation off:
  57. "Added the NoFractalAnim switch. When true, fractal textures are never
  58. updated and the texture's bRealTime is set to false. This takes effect at a
  59. package's loading/init time, so you'll have to restart a level to see it
  60. take effect.
  61. - Admins can control downloading of packages from their server by editing the [IpDrv.TcpNetDriver]
  62. section of unrealtournament.ini:
  63.  
  64. [IpDrv.TcpNetDriver]
  65. AllowDownloads=True
  66. MaxDownloadSize=0
  67.  
  68. AllowDownloads disables all autodownloads.
  69. MaxDownloadSize=0 means allow autodownload of any sized file. Otherwise
  70. the value is in BYTES. We recommend that rather than disabling all
  71. downloads, you set the MaxDownload size to an appropriate value. For
  72. example, MaxDownloadSize=100000 will allow mutators and other small packages to
  73. be downloaded, but will not allow large files such as maps to be
  74. downloaded. Turning off all downloads may make it hard for clients to get
  75. on your server if you are using a lot of custom maps, mutators or other custom
  76. packages. 
  77.