mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-12 07:34:50 +00:00
6b3325b358
- Fixed: AStalker::CheckMeleeRange did not perform all checks of AActor::CheckMeleeRange. I replaced this virtual override with a new flag MF5_NOVERTICALMELEERANGE so that this feature can also be used by other actors. - Converted Strife's Stalker to DECORATE. - Converted ArtiTeleport to DECORATE. SVN r1126 (trunk)
24 lines
432 B
Text
24 lines
432 B
Text
|
|
// Teleport (self) ----------------------------------------------------------
|
|
|
|
ACTOR ArtiTeleport : Inventory native
|
|
{
|
|
Game Raven
|
|
+COUNTITEM
|
|
+FLOATBOB
|
|
+INVENTORY.INVBAR
|
|
+INVENTORY.PICKUPFLASH
|
|
+INVENTORY.FANCYPICKUPSOUND
|
|
Inventory.DefMaxAmount
|
|
Inventory.Icon "ARTIATLP"
|
|
Inventory.PickupSound "misc/p_pkup"
|
|
Inventory.PickupMessage "$TXT_ARTITELEPORT"
|
|
States
|
|
{
|
|
Spawn:
|
|
ATLP ABCD 4
|
|
Loop
|
|
}
|
|
}
|
|
|
|
|