Revision 174, 340 bytes
(checked in by yumileroy, 17 years ago)
|
[svn] Implemented player on player and player on creature possession:
* Implemented packet and vision forwarding through possessed units
* Added new OnPossess? script call alerting scripts on when possession is applied/removed
* Moved fall damage and fall under map calculations into the Player class
* Added new PossessedAI that is applied only while possession on creature is active
* Implemented summon possessed spell effect
* Fixed Eyes of the Beast
Original author: gvcoman
Date: 2008-11-05 20:51:05-06:00
|
Line | |
---|
1 | DELETE FROM `command` WHERE name IN ('possess', 'unpossess'); |
---|
2 | INSERT INTO `command` (name,security,help) VALUES |
---|
3 | ('possess',3,'Syntax: .possess\r\n\r\nPossesses indefinitely the selected creature.'), |
---|
4 | ('unpossess',3,'Syntax: .unpossess\r\n\r\nIf you are possessed, unpossesses yourself; otherwise unpossesses current possessed target.'); |
---|