Jump to content

Prevent monster telefrag on map30 (MBF21)


Recommended Posts

This works just fine in DSDA-Doom, as for default in OPTIONS lump comp_telefrag = 0 (MBF21).

And i was expecting that GZDoom 4.7.1 also supports OPTIONS lump and disabling monster telefrag, but no.

 

OPTIONS lump specification

MBF21 wiki docs with ports supported

 

Is there clean solution for preventing monster telefrag on map30?
Solution that not require fast scrollers or changing map number.

(Although the latter may be an acceptable solution since configuring maps flow in MBF21 is so easy)

Share this post


Link to post
5 hours ago, boris said:

For GZDoom you could try setting the AllowMonsterTelefrags setting to false through MAPINFO: https://zdoom.org/wiki/MAPINFO/Map_definition#AllowMonsterTelefrags

 

Don't know if it actually works for MAP30, though.

 

Bad numeric constant "False".

Tried before this MAPINFO:

defaultmap
{
    AllowMonsterTelefrags = 0
}

But it's doing nothing for map30

Edited by CblBOPOTKA

Share this post


Link to post

"defaultmap" doesn't work like that. It defines default for subsequently defined maps, but if you don't have a definition for MAP30 nothing will be applied. But apparently you don't even have to set AllowMonsterTelefrags when you define your MAP30 - monsters will not telefrag unless you set AllowMonsterTelefrags to true.

Share this post


Link to post

Wow, it works now. Thank you! Full code:

defaultmap
{
    AllowMonsterTelefrags = 0
}

map MAP30 "any"
{
}

 

Edited by CblBOPOTKA

Share this post


Link to post

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...