Classes:Allmap
The computer area map reveals all the unexplored areas of a level with gray lines in the automap. Contrarily to the iddt cheat, the computer area map shows neither hidden linedefs nor actors.
Note: Wait! Stop! Before you copy this actor's definition into your mod, remember the following things:
|
Computer area map | |||
---|---|---|---|
Actor type | Powerup | Game | ![]() |
DoomEd Number | 2026 | Class Name | Allmap |
Spawn ID | 137 | Identifier | T_COMPUTERMAP |
Classes: Inventory→MapRevealer→Allmap
ZScript definition
class Allmap : MapRevealer { Default { +COUNTITEM +INVENTORY.FANCYPICKUPSOUND +INVENTORY.ALWAYSPICKUP Inventory.MaxAmount 0; Inventory.PickupSound "misc/p_pkup"; Inventory.PickupMessage "$GOTMAP"; // "Computer Area Map" } States { Spawn: PMAP ABCDCB 6 Bright; Loop; } }
DECORATE definition
ACTOR Allmap : MapRevealer { +COUNTITEM +INVENTORY.FANCYPICKUPSOUND +INVENTORY.ALWAYSPICKUP Inventory.MaxAmount 0 Inventory.PickupSound "misc/p_pkup" Inventory.PickupMessage "$GOTMAP" // "Computer Area Map" States { Spawn: PMAP ABCDCB 6 Bright Loop } }
This article is issued from Zdoom. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.