mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2025-02-12 06:40:56 +00:00
- 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
|
|
}
|
|
}
|
|
|
|
|