I search for solutions in this order: Past Code, Unreal Source, Wiki, BUF, groups.yahoo, google, screaming at monitor. – RegularX

Legacy:Chain Of Events When A Player Logs In

From Unreal Wiki, The Unreal Engine Documentation Site

Revision as of 02:45, 19 July 2006 by 64-110-208-211.regn.hsdb.sasknet.sk.ca (Talk)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

rough layout

[edit] Serverside UnrealScript Events

  • GameInfo.PreLogin() – propagated to AccessControl; may reject player
  • Mutator.OverrideDownload() – called on the base mutator for each package the player needs to download, propagates down the mutator linked list (only available in UT2003, not in the base engine)
  • GameInfo.Login() – propagated to AccessControl and Mutators; spawns the PlayerPawn/PlayerController or rejects player, sets player name, spectator, admin login, other stuff
  • GameInfo.PostLogin() – first point at which replicated functions of the new player are actually replicated

[edit] Clientside Initialization Overview

TODO: What stuff gets replicated? What happens while the loading screen is visible?

[edit] Related Topics