MM8BDM Forum

rockblock
ROCKS!!!
User Info
rockblock
ROCKS!!!
1 2
GGs, good job to the map makers and those who won, even if the waiting time was very long, great to see everyone participate.
though obviously the real winner is FLAB07

However I wonder what will happen to the maps that didn't make it, will they still be in the bounty map pack or is that going to be taken down?
Also, are pre-made weapons fine to submit (ones that are not in a released wad), or does it have to be made specifically for this?
Sure, seems fun so ill join it
June. 16, 2024, 12:35 AM Cutstuff Archive
Really nice work done, now i can go and view some really old map packs and whatnot.
June. 4, 2024, 4:09 PM MM8BDM Archive
Even the SGC demo?
June. 3, 2024, 5:58 PM Public Resource Dump Thread
Huh really? Any other good embed hosting things since I dont know how to put files in here
June. 2, 2024, 4:10 PM Public Resource Dump Thread
A big ball of energy based off of the BFG ball sprites

June. 2, 2024, 2:24 PM We need linedef portals in MM8BDM!
There is somewhat a point, even if small, although it wont be used in vanilla at all it could be used for minor details, and give more mappers a chance at creativity, although i agree it isnt much of a priority.
Have you ever seen some maps outside of mm8bdm that have these fancy portals? so you see them and try to re-create them in mm8bdm, but it isn't working, so here's a guide on how to have a makeshift linedef portal to help whatever teleporting needs you may need.

Setting it up
The first thing you wanna do is create two identical sectors in height and width, which makes it so the user doesnt go out of bounds, then you need to put a line infront of the sector, now once that is done you will need to make 2 camera textures the same size of the linedef, and set it as a middle texture
Now after you do that, add a Zheight teleporter (type 9044), Aiming camera (type 9073), and a Actor enters sector (type 9998), now you want to set it up like seen in the image in the second spoiler here.



Scripts

A headache to set up, but totally worth it.
You will now want to open up the script editor part of UBD, now heres where you set it up.
(Always make sure to type #include "zcommon.acs" at the top) First we will be doing the camera texture scripts for our "Portals", you want to set it up like the text seen below:

script X OPEN {
SetCameraToTexture( CAMERAIDHERE, "CAMERATEXTURE",FOV );
}

script X OPEN {
SetCameraToTexture( CAMERAIDHERE, "CAMERATEXTURE", FOV );
}


A bit confusing but what you want to do is put the ID of the camera actor, lets say "1", and the name of the cameratexture you made will be "PORTALCAM", and the FOV will be 90, and the other camera you want to set up would be the exact same but with a different ID and name like "2" for the camera id, and "PORTALCAM2" for the camera texture, now you would get something like:

( 1, "PORTALCAM", 90)

( 2, "PORTALCAM2", 90)

Image example:



TeleportGroup

So after setting up the cameratextures, your now going to need to use "TeleportGroup" function, which you should set it up like this:

Script X OPEN
{
TeleportGroup(0, SOURCEID, TELEPORTDEST, 0, 0);
}

Script X OPEN
{
TeleportGroup(0, SOURCEID, TELEPORTDEST, 0, 0);
}


What you want to do is replace SOURCEID with the ID of the ActorEntersSector Thing on one side, and then you replace the TELEPORTDEST with the ID of the ZHeight teleport, think of this as a teleporter but a bit more complex, which you then go to Action/Tag/Misc for the ActorEntersSector, then put the action number as 226, and the script number where the ID is and you only have to apply it to the ActorEntersSector things now you want to do the same for the other scripts and things, for a better Idea see the images below:







Other things

When making the portals never have one rotated differently then the other, or having one portal smaller then the other portal.
Examples:





If you want projectiles to cross as well make sure to check the "Projectiles activate" box for the ActorEntersSector thing.



Thanks for reading, and i hope this helped in whatever crazy maps you're making!
June. 2, 2024, 12:14 AM A New Look
Guess you could say these forms are quite "formal"
1 2