ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/eventinc.h
Revision: 1.12
Committed: Mon Aug 28 16:13:00 2006 UTC (17 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.11: +3 -1 lines
Log Message:
implement destroy event for objects and maps, implement loading of persistent map header

File Contents

# User Rev Content
1 root 1.10 def (GLOBAL, CLOCK) // ( )
2     def (PLAYER, REATTACH) // (player)
3     def (PLAYER, BIRTH) // (player)
4     def (PLAYER, QUIT) // (player)
5     def (PLAYER, LOAD) // (player)
6     def (PLAYER, SAVE) // (player)
7     def (PLAYER, LOGIN) // (player)
8     def (PLAYER, LOGOUT) // (player)
9     def (PLAYER, DEATH) // (player)
10     def (PLAYER, MAP_CHANGE) // (player oldmap newmap)
11     def (PLAYER, EXTCMD) // (player string)
12     def (PLAYER, PRAY_ALTAR) // (player altar skill -- )
13     def (PLAYER, TELL) // (player -- )
14     def (PLAYER, SAY) // (player --)
15     def (PLAYER, SHOUT) // (player --)
16     def (OBJECT, INSTANTIATE) // (object init-args...)
17     def (OBJECT, REATTACH) // (object)
18     def (OBJECT, CLONE) // (object destination)
19 root 1.12 def (OBJECT, DESTROY) // (object)
20 root 1.10 def (OBJECT, TICK) // (object)
21     def (OBJECT, KILL) // (object hitter -- )
22     def (OBJECT, APPLY) // (object who -- applytype)
23     def (OBJECT, USE_SKILL) // (skill who part direction strignarg -- )
24     def (OBJECT, CAST_SPELL) // (spell casting_object owner direction stringarg -- )
25     def (OBJECT, DROP) // (object who -- )
26     def (OBJECT, DROP_ON) // (floor object who -- )
27     def (OBJECT, LISTEN) //
28     def (OBJECT, MOVE) // (monster enemy -- )
29     def (OBJECT, ATTACK) // (object hitter -- damage)
30     def (OBJECT, ATTACKS) // (weapon hitter victim)
31     def (OBJECT, INSCRIBE_NOTE) // (book pl message skill -- )
32     def (OBJECT, TRIGGER) // (object who -- )
33     def (OBJECT, MOVE_TRIGGER) // (object victim originator -- )
34     def (OBJECT, CLOSE) // (container -- )
35 root 1.12 def (MAP, INSTANTIATE) // (map)
36 root 1.10 def (MAP, REATTACH) // (map)
37 root 1.12 def (MAP, DESTROY) // (map)
38 root 1.10 def (MAP, SWAPIN) // (map)
39     def (MAP, SWAPOUT) // (map)
40     def (MAP, RESET) // (map)
41     def (MAP, CLEAN) // (map)
42     def (MAP, ENTER) // (map player)
43     def (MAP, LEAVE) // (map player)
44     def (MAP, UPGRADE) // (map)