Making Objects Disappear

Status
Not open for further replies.

CyanFox

SRB2 C.P. Revived
I'm making a wad and I used the MAINCFG to make the rings disappear, but when I try to make all the monitors disappear, it either doesn't work or turns into an error. Can someone help me figure this out?
 
EDIT: Copy paste this in your MainCfg

Code:
Thing MT_RING
SpawnState = S_NULL
 
Last edited:
EDIT: Copy paste this in your MainCfg

Code:
Thing MT_RING
SpawnState = S_NULL

I think the OP want's to make the monitors disappear. In this case, put this instead.

Object MT_SUPERRINGBOX
SpawnState = S_NULL

Object MT_PITYTV
SpawnState = S_NULL

Object MT_YELLOWTV
SpawnState = S_NULL

Object MT_BLUETV
SpawnState = S_NULL

Object MT_BLACKTV
SpawnState = S_NULL

Object MT_WHITETV
SpawnState = S_NULL

Object MT_GREENTV
SpawnState = S_NULL

Object MT_SNEAKERTV
SpawnState = S_NULL

Object MT_INV
SpawnState = S_NULL

Object MT_PRUP
SpawnState = S_NULL

Object MT_EGGMANBOX
SpawnState = S_NULL

Object MT_MIXUPBOX
SpawnState = S_NULL

Object MT_QUESTIONBOX
SpawnState = S_NULL

Object MT_GRAVITYBOX
SpawnState = S_NULL

Object MT_REDRINGBOX
SpawnState = S_NULL

Object MT_BLUERINGBOX
SpawnState = S_NULL

Object MT_RECYCLETV
SpawnState = S_NULL

Object MT_SCORETVSMALL
SpawnState = S_NULL

Object MT_SCORETVLARGE
SpawnState = S_NULL

This will remove every monitor in the game, but if there is a monitor in there you don't want to be removed, you can remove from the code above.

If your not sure on which one to remove, I included this little list for you. :)

MT_SUPERRINGBOX = 10 Ring Monitor
MT_PITYTV = Pity Shield Monitor
MT_YELLOWTV = Attraction Shield Monitor
MT_BLUETV = Force Shield Monitor
MT_BLACKTV = Armageddon Shield Monitor (Else known as the nuke shield)
MT_WHITETV = Whirlwind Shield Monitor
MT_GREENTV = Elemental Shield Monitor
MT_SNEAKERTV = Super Sneakers Monitor
MT_INV = Invincibility Monitor
MT_PRUP = Extra Life Monitor
MT_EGGMANBOX = Eggman Monitor
MT_MIXUPBOX = Teleporter Monitor
MT_QUESTIONBOX = Random Monitor
MT_GRAVITYBOX = Gravity Boots Monitor
MT_REDRINGBOX = CTF Red Ring Box
MT_BLUERINGBOX = CTF Blue Ring Box
MT_RECYCLETV = Recycler Monitor
MT_SCORETVSMALL = 1000 Points Monitor
MT_SCORETVLARGE = 10000 Points Monitor

Hope this helps!
 
Status
Not open for further replies.

Who is viewing this thread (Total: 1, Members: 0, Guests: 1)

Back
Top