--- deliantra/server/pod/events.pod 2010/03/19 22:16:27 1.35 +++ deliantra/server/pod/events.pod 2010/04/08 19:31:22 1.39 @@ -301,8 +301,8 @@ =head3 load (player -- ) -Invoked whenever a player has been loaded from disk, but before -actual login. +Invoked whenever after a player has been loaded from disk, but before +actual activation/login. =head3 save (player -- ) @@ -342,8 +342,13 @@ =head3 command (player command args -- time) -Execute a user command send by the client. Programmable plug-ins usually -handle this event internally. +Execute a user command sent by the client - this is invoked for I +command,s so should not normally be hooked. + +=head3 unknown_command (player command args -- time) + +Execute a user command sent by the client that isn't known to the +server. Programmable plug-ins usually handle this event internally. =head3 extcmd (player string) @@ -438,8 +443,13 @@ =head3 connect (client -- ) -Called as soon as a new connection to the server is established. Should -not be overriden. +Called as soon as a new connection to the server is established and the +socket has been configured. + +=head3 version (client string -- ) + +Called as soon as the version command from the client is received +(normally the very first command sent). =head3 setup (client string -- ) @@ -462,3 +472,8 @@ Programmable plug-ins usually handle this event internally. +=head3 client_destroy (client -- ) + +Invoked when the client gets destroyed. + +