Advanced Search

Author Topic: How do "I" do THAT in Doom Builder?  (Read 245044 times)

0 Members and 3 Guests are viewing this topic.

August 29, 2011, 03:09:20 AM
Reply #90

Offline Rozark

  • MM8BDM Extender

  • Mr. Explorer
  • **********
  • Date Registered: August 28, 2011, 04:46:04 PM

    • View Profile
    • Rozark #0873
Re: How do "I" do THAT in Doom Builder?
« Reply #90 on: August 29, 2011, 03:09:20 AM »
sorry, i posted problems as they came up, which next time ill just group together.

August 29, 2011, 03:16:59 AM
Reply #91

Offline Korby

  • Global Moderator

  • Benvenuto nella room italiana!
  • **************
  • Date Registered: March 04, 2010, 03:36:02 AM

    • View Profile
    • Korby Games
Re: How do "I" do THAT in Doom Builder?
« Reply #91 on: August 29, 2011, 03:16:59 AM »
Thank you for helping us help you help us all.

August 29, 2011, 03:18:26 AM
Reply #92

Offline Donutyoshi

  • MM8BDM MM8 Contributor
  • *
  • Date Registered: December 19, 2010, 07:36:36 PM

    • View Profile
    • http://www.donutyoshi.deviantart.com
Re: How do "I" do THAT in Doom Builder?
« Reply #92 on: August 29, 2011, 03:18:26 AM »
Quote from: "Korby"
Thank you for helping us help you help us all.
Wat. It sounds confusing.  Oh well. :p

August 29, 2011, 03:27:17 AM
Reply #93

Offline Rozark

  • MM8BDM Extender

  • Mr. Explorer
  • **********
  • Date Registered: August 28, 2011, 04:46:04 PM

    • View Profile
    • Rozark #0873
Re: How do "I" do THAT in Doom Builder?
« Reply #93 on: August 29, 2011, 03:27:17 AM »
he means that by helping myself, im helping you guys not help me.
in other news.. i guess im starting my map over.. >.<

August 29, 2011, 03:45:11 AM
Reply #94

Offline Korby

  • Global Moderator

  • Benvenuto nella room italiana!
  • **************
  • Date Registered: March 04, 2010, 03:36:02 AM

    • View Profile
    • Korby Games
Re: How do "I" do THAT in Doom Builder?
« Reply #94 on: August 29, 2011, 03:45:11 AM »
It's a quote, don't mind it.

Thank you for understanding, Rozark. You won't have to restart the map.

August 29, 2011, 03:50:07 AM
Reply #95

Offline Rozark

  • MM8BDM Extender

  • Mr. Explorer
  • **********
  • Date Registered: August 28, 2011, 04:46:04 PM

    • View Profile
    • Rozark #0873
Re: How do "I" do THAT in Doom Builder?
« Reply #95 on: August 29, 2011, 03:50:07 AM »
how so? I open the wad, only to find the map isnt there. what i did was, being new to doom editor, i hit save map, not knowing it meant wad. i later tested this with a test map, saving it into the wad, and i was able to reload that. The map is gone, that is unless im wrong.

August 29, 2011, 04:13:52 AM
Reply #96

Offline Gummywormz

  • Standard Member

  • Air Man Tile Enthusiast
  • Date Registered: December 23, 2010, 01:05:44 AM

    • View Profile
    • Github Page
Re: How do "I" do THAT in Doom Builder?
« Reply #96 on: August 29, 2011, 04:13:52 AM »
Doom builder creates several backup files called mapname.backup#. Try renaming the backup# part to wad and see if your map is in any of them.

August 29, 2011, 04:21:34 AM
Reply #97

Offline Rozark

  • MM8BDM Extender

  • Mr. Explorer
  • **********
  • Date Registered: August 28, 2011, 04:46:04 PM

    • View Profile
    • Rozark #0873
Re: How do "I" do THAT in Doom Builder?
« Reply #97 on: August 29, 2011, 04:21:34 AM »
nope, that didnt work, and i tried all 3 backup files. oh well, imma just create another one, but with a different theme. put abit of planning into it, save it right, and it should be better than the other one.

EDIT: so i can save time later, ive got more questions:
1. how to add rails
2. how to make it so you fall off and die in some areas

Much appreciated ^.^

August 29, 2011, 09:06:21 AM
Reply #98

Offline Shade Guy

  • MM8BDM Extender
  • *****
  • Date Registered: February 02, 2011, 10:42:15 PM

    • View Profile
Re: How do "I" do THAT in Doom Builder?
« Reply #98 on: August 29, 2011, 09:06:21 AM »
1. Right click the line that you want the rail to be on. Under actions, go to action 121 which is Line Identification. For the flags, tick the railing option (the flags should be 2). Also, tick Lower Unpegged under Settings. Now, add the texture you want on the line as a mid-texture. The railing should be as high as the texture is, so choose one accordingly.

2. This requires a bit of ACS scripting. Give the sectors that you want to be instakill a tag. Open Doombuilder 2's Script Editor and copy this script in and edit it accordingly.
Code: [Select]
#include "zcommon.acs"

Script [Any number, probably 1] OPEN
{
delay(1);
SectorDamage([This is the tag that you gave the instakill sectors], 255, [This changes what the obituary will say when the player dies from the pit. If you want it to say 'fell too far', put it as "Falling". Look at the ZDoom Wiki under Damagetypes to find more], 0, DAMAGE_PLAYERS);
restart;
}
Hopefully this helps.

August 29, 2011, 12:36:12 PM
Reply #99

Offline LlamaHombre

  • MM8BDM Extender
  • ************
  • Date Registered: November 15, 2010, 09:19:04 PM

    • View Profile
    • My Famitracker Covers
Re: How do "I" do THAT in Doom Builder?
« Reply #99 on: August 29, 2011, 12:36:12 PM »
Rozark, if you don't want to start over, send me one of your backups and I'll get you your map back.

August 29, 2011, 02:07:25 PM
Reply #100

Offline Rozark

  • MM8BDM Extender

  • Mr. Explorer
  • **********
  • Date Registered: August 28, 2011, 04:46:04 PM

    • View Profile
    • Rozark #0873
Re: How do "I" do THAT in Doom Builder?
« Reply #100 on: August 29, 2011, 02:07:25 PM »
mk.. so how, me being new to this, would i send it? @_@

August 29, 2011, 02:22:17 PM
Reply #101

Offline LlamaHombre

  • MM8BDM Extender
  • ************
  • Date Registered: November 15, 2010, 09:19:04 PM

    • View Profile
    • My Famitracker Covers
Re: How do "I" do THAT in Doom Builder?
« Reply #101 on: August 29, 2011, 02:22:17 PM »
Alright, looking at Rozark's backup, he's right.

Opening it up in Doom Builder does not show any sort of map.

And since this is backup1, I'd assume he doesn't have any more backups.

Sorry, Rozark, but I don't think you'll be getting your map back.

August 29, 2011, 02:25:29 PM
Reply #102

Offline Rozark

  • MM8BDM Extender

  • Mr. Explorer
  • **********
  • Date Registered: August 28, 2011, 04:46:04 PM

    • View Profile
    • Rozark #0873
Re: How do "I" do THAT in Doom Builder?
« Reply #102 on: August 29, 2011, 02:25:29 PM »
:/ I do have other backups, but they all do the same thing. Anyway, off to make a better map

EDIT: shadeguy what would that look like when thats finished @ Script, like without the extra stuff?

August 29, 2011, 02:28:10 PM
Reply #103

Offline LlamaHombre

  • MM8BDM Extender
  • ************
  • Date Registered: November 15, 2010, 09:19:04 PM

    • View Profile
    • My Famitracker Covers
Re: How do "I" do THAT in Doom Builder?
« Reply #103 on: August 29, 2011, 02:28:10 PM »
That's unfortunate.

Sorry to waste your time, Rozark.

August 29, 2011, 03:16:13 PM
Reply #104

Offline ficarra1002

  • Standard Member
  • Date Registered: April 25, 2010, 04:32:30 PM

    • View Profile
Re: How do "I" do THAT in Doom Builder?
« Reply #104 on: August 29, 2011, 03:16:13 PM »
For future reference, don't rely on DB's backups. Make your own backups manually often.