[wpdev-commits] xmlscripts/scripts/wolfpack consts.py,1.22,1.23
Brought to you by:
rip,
thiagocorrea
|
From: <dar...@us...> - 2003-09-16 12:51:38
|
Update of /cvsroot/wpdev/xmlscripts/scripts/wolfpack In directory sc8-pr-cvs1:/tmp/cvs-serv19024/wolfpack Modified Files: consts.py Log Message: Fixed Global Hook Constants Index: consts.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/wolfpack/consts.py,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** consts.py 15 Sep 2003 12:42:15 -0000 1.22 --- consts.py 16 Sep 2003 12:51:34 -0000 1.23 *************** *** 193,222 **** # Constants for the Events we can hook ! EVENT_USE = 0x00000001 ! EVENT_SINGLECLICK = 0x00000002 ! EVENT_COLLIDEITEM = 0x00000004 ! EVENT_COLLIDECHAR = 0x00000008 ! EVENT_WALK = 0x00000010 ! EVENT_CREATE = 0x00000020 ! EVENT_LOGIN = 0x00000040 ! EVENT_LOGOUT = 0x00000080 ! EVENT_TALK = 0x00000100 ! EVENT_WARMODETOGGLE = 0x00000200 ! EVENT_HELP = 0x00000400 ! EVENT_CHAT = 0x00000800 ! EVENT_SKILLUSE = 0x00001000 ! EVENT_SELECTCONTEXTMENU = 0x00002000 ! EVENT_REQUESTCONTEXTMENU = 0x00004000 ! EVENT_DROPONCHAR = 0x00008000 ! EVENT_DROPONITEM = 0x00010000 ! EVENT_DROPONGROUND = 0x00020000 ! EVENT_PICKUP = 0x00040000 ! EVENT_SPEECH = 0x00080000 ! EVENT_BEGINCAST = 0x00100000 ! EVENT_ENDCAST = 0x00200000 ! EVENT_SPELLCHECKTARGET = 0x00400000 ! EVENT_DAMAGE = 0x08000000 ! EVENT_SHOWTOOLTIP = 0x02000000 ! EVENT_CASTSPELL = 0x80000000 # Effect Constants --- 193,229 ---- # Constants for the Events we can hook ! EVENT_USE = 1 ! EVENT_SINGLECLICK = 2 ! EVENT_COLLIDE = 3 ! EVENT_WORLDSAVE = 4 ! EVENT_WORLDLOAD = 5 ! EVENT_WALK = 6 ! EVENT_CREATE = 7 ! EVENT_LOGIN = 8 ! EVENT_LOGOUT = 9 ! EVENT_TALK = 10 ! EVENT_WARMODETOGGLE = 11 ! EVENT_HELP = 12 ! EVENT_CHAT = 13 ! EVENT_SKILLUSE = 14 ! EVENT_SELECTCONTEXTMENU = 15 ! EVENT_REQUESTCONTEXTMENU = 16 ! EVENT_DROPONCHAR = 17 ! EVENT_DROPONITEM = 18 ! EVENT_DROPONGROUND = 19 ! EVENT_PICKUP = 20 ! EVENT_SPEECH = 21 ! EVENT_BEGINCAST = 22 ! EVENT_ENDCAST = 23 ! EVENT_SPELLCHECKTARGET = 24 ! EVENT_SPELLSUCCESS = 25 ! EVENT_SPELLFAILURE = 26 ! EVENT_SHOWTOOLTIP = 27 ! EVENT_SKILLGAIN = 28 ! EVENT_DAMAGE = 29 ! EVENT_SHOWPAPERDOLL = 30 ! EVENT_SHOWSKILLGUMP = 31 ! EVENT_STATGAIN = 32 ! EVENT_CASTSPELL = 33 # Effect Constants |