Tracer Posted March 1, 2015 I just want to make a simple lift that goes from the main floor to a basement. You step on the floor of the lift, flip the switch, the floor lowers to the basement. However, I also want the ceiling to come down with the floor as well. Can somebody explain to me how to do this in the simplest of forms? I've done good and forum searches for this, and I simply don't understand that jargon that I'm coming across. So if somebody can just tell me what to do to achieve this, I would greatly appreciate it. 0 Quote Share this post Link to post
Du Mhan Yhu Posted March 1, 2015 http://zdoom.org/zdkb/elevator.html I think that's as easy as it gets without having to give a step by step explanation. 0 Quote Share this post Link to post
Tracer Posted March 1, 2015 Du Mhan Yhu said:http://zdoom.org/zdkb/elevator.html I think that's as easy as it gets without having to give a step by step explanation. Would you be willing to assist me with a step by step explanation, please? 0 Quote Share this post Link to post
Kappes Buur Posted March 1, 2015 TraceOfSpades said:Can somebody explain to me how to do this in the simplest of forms? Even simpler would be the use of these specials 95:FloorAndCeiling_LowerByValue (tag, speed, height) 96:FloorAndCeiling_RaiseByValue (tag, speed, height) 0 Quote Share this post Link to post
Tracer Posted March 1, 2015 Kappes Buur said:Even simpler would be the use of these specials 95:FloorAndCeiling_LowerByValue (tag, speed, height) 96:FloorAndCeiling_RaiseByValue (tag, speed, height) Okay, but what do I do with those? Where do I type that stuff in? 0 Quote Share this post Link to post
scifista42 Posted March 1, 2015 TraceOfSpades said:Okay, but what do I do with those? Where do I type that stuff in? Use them as a walkover or pressable linedef action, or in an ACS script. 0 Quote Share this post Link to post
Tracer Posted March 1, 2015 I am very new to scripting and am just trying to learn, so pardon my ignorance please. In the absolute simplest of terms...like, "You click here, type in this value, click here, do this..." 0 Quote Share this post Link to post
Tracer Posted March 1, 2015 scifista42 said:Use them as a walkover or pressable linedef action, or in an ACS script. That's gibberish to me, dude. What is a walkover, what is a pressable linedef action, and I have no idea what an ACS script is. 0 Quote Share this post Link to post
Du Mhan Yhu Posted March 1, 2015 TraceOfSpades said:That's gibberish to me, dude. What is a walkover, what is a pressable linedef action. You cross a certain line and an action occurs. 95:FloorAndCeiling_LowerByValue (tag, speed, height) <-- should be set to your above switch/line to descend. 96:FloorAndCeiling_RaiseByValue (tag, speed, height) <---- should be set to your lower switch/line to ascend. What tag/speed/height you want, should be easy enough to determine. 0 Quote Share this post Link to post
Tracer Posted March 1, 2015 Du Mhan Yhu said:You cross a certain line and an action occurs. Okay, I know how to do that, I just didn't know the term. But how do I make it so that the floor and ceiling of a certain sector lower at the same time, at the same speed, maintaining the same distance the entire time, and stopping at the same time? 0 Quote Share this post Link to post
Du Mhan Yhu Posted March 1, 2015 http://zdoom.org/zdkb/elevator.html <--- in this link download "example.wad" and open it in DB2. Take a look at how its set up and how it operates. TraceOfSpades said:I have no idea what an ACS script is. http://i.imgur.com/gXsy6Ec.png <--- circled is where ACS happens. 0 Quote Share this post Link to post
Tracer Posted March 1, 2015 Du Mhan Yhu said:http://zdoom.org/zdkb/elevator.html <--- in this link download "example.wad" and open it in DB2. Take a look at how its set up and how it operates. Ah, thank you! This should help me out! Good man. 0 Quote Share this post Link to post
Tracer Posted March 1, 2015 I opened up elevator.wad, and this is what I saw. I don't understand how that's supposed to be an elevator. http://i58.tinypic.com/f4qkba.jpg 0 Quote Share this post Link to post
scifista42 Posted March 1, 2015 TraceOfSpades said:I just didn't know the term.Study doomwiki or ZDoomwiki (they're good sources of information) or read/watch some basic mapping tutorials to familiarize yourself with basic terminology of mapping and modding. It will help you both to make things clear in your own mind, and to communicate with other mappers. EDIT: You must open the map in the proper format. Probably Hexen or UDMF. 0 Quote Share this post Link to post
Du Mhan Yhu Posted March 1, 2015 TraceOfSpades said:I opened up elevator.wad, and this is what I saw. I don't understand how that's supposed to be an elevator Wrong format. 0 Quote Share this post Link to post
Kappes Buur Posted March 1, 2015 TraceOfSpades said:I opened up elevator.wad, and this is what I saw. I don't understand how that's supposed to be an elevator. Another good reason to use GZDoom Builder. [edit] Maybe I should elaborate: GZDB compares the format a map was constructed with and the format you are trying to open it with. IF they don't match, then GZDB will not willingly open the map. 0 Quote Share this post Link to post
Tracer Posted March 1, 2015 I give up. The map I'm working on won't open in any format other than ZDoom (Doom in Doom Format). 0 Quote Share this post Link to post
Du Mhan Yhu Posted March 1, 2015 TraceOfSpades said:I give up. The map I'm working on won't open in any format other than ZDoom (Doom in Doom Format). Highlight your entire map, copy/paste it onto a fresh grid in the previously mentioned formats. You may need to reassign some tags, but it's only minor. Note: always have a back up save of your map. 0 Quote Share this post Link to post
Tracer Posted March 1, 2015 No dice...now none of my walkover actions are working, even after I tried reassigning. Ugh, this is so frustrating. 0 Quote Share this post Link to post
scifista42 Posted March 1, 2015 TraceOfSpades said:I give up. The map I'm working on won't open in any format other than ZDoom (Doom in Doom Format). That's because you've started the map within that format. You can still change the format in Map Options, after you open the map correctly. Generally, don't use that format, it only offers the most basic ZDoom features. Go for a much much more flexible UDMF format next time when mapping for a ZDoom based port. 0 Quote Share this post Link to post
Tracer Posted March 1, 2015 scifista42 said:That's because you've started the map within that format. You can still change the format in Map Options, after you open the map correctly. Generally, don't use that format, it only offers the most basic ZDoom features. Go for a much much more flexible UDMF format next time when mapping for a ZDoom based port. Will do, thank you for your help. 0 Quote Share this post Link to post
Gez Posted March 1, 2015 If you're using Doom format, use the Boom elevator linedef types to create something where the floor and ceiling move together. 0 Quote Share this post Link to post
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.