ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/pod/events.pod
(Generate patch)

Comparing deliantra/server/pod/events.pod (file contents):
Revision 1.8 by root, Tue Dec 19 04:58:05 2006 UTC vs.
Revision 1.9 by root, Thu Dec 21 06:12:37 2006 UTC

334=head3 leave (map player -- ) 334=head3 leave (map player -- )
335 335
336Invoked whenever a player tries to leave the B<map>. Overriding means the 336Invoked whenever a player tries to leave the B<map>. Overriding means the
337player won't be able to leave. 337player won't be able to leave.
338 338
339=head3 trigger (map connection state) 339=head3 trigger (map connection state -- )
340 340
341Invoked whenever something activates a B<connection> on the B<map>. If B<state> 341Invoked whenever something activates a B<connection> on the B<map>. If B<state>
342is true the connection was 'state' and if false it is 'released'. 342is true the connection was 'state' and if false it is 'released'.
343 343
344 344
346 346
347These events are very similar to player events, but they are might be 347These events are very similar to player events, but they are might be
348handled asynchronously as soon as the command reaches the server, even when 348handled asynchronously as soon as the command reaches the server, even when
349the player hasn't logged in yet (meaning there is no player yet). 349the player hasn't logged in yet (meaning there is no player yet).
350 350
351=head3 connect (client -- )
352
353Called as soon as a new connection to the server is established. Should
354not be overriden.
355
356=head3 addme (client -- )
357
358The client sent an addme, thus ending the initial handshaking. If overriden, the server
359will not send any response.
360
361=head3 reattach (client -- )
362
363Invoked whenever attachments/plug-ins need to get reattached to the
364object. This usually happens when server was reloaded. This event will
365only be generated if the object has attachments.
366
351=head3 exticmd (client string) 367=head3 exticmd (client string -- )
352 368
353Like C<extcmd>, but can be called before a player has logged in. 369Like C<extcmd>, but can be called before a player has logged in.
354 370
355Programmable plug-ins usually handle this event internally. 371Programmable plug-ins usually handle this event internally.
356 372

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines