Doom in Hexen format issue
Doom in Hexen format issue
Well I am trying to have it so I get a Red key, then lower a few pillars, but There is no way (That I see) of making the sectors or lines need the red key to lower.
Last edited by Powerman on Thu May 09, 2013 2:15 pm, edited 1 time in total.
http://brutaldoomwads.weebly.com/
Also Now Every Wednesday is Brutal doom Co-op! Just Look For powerman in the name!
Also Now Every Wednesday is Brutal doom Co-op! Just Look For powerman in the name!
RE: Doom in Hexen format issue
In Doom in Hexen format, when you look at the properties of a 'thing', it should have a tab named 'action'. In there you can define what you want to happen after the 'thing' is either destroyed or picked up.
<agaures> I'm guessing you haven't played many doom mods before huh? :p
<Zuplin> i have played master of puppets zombies doom center and a couple more
<agaures> so not many
<Zuplin> i thought that was everything
<Zuplin> i have played master of puppets zombies doom center and a couple more
<agaures> so not many
<Zuplin> i thought that was everything
RE: Doom in Hexen format issue
Let me try to elaborate more. So I have so pillars blocking a bridge you need to get over. I want the player to have to get the red key, then press use to lower the pillars, while having the red key. I hope that was slightly more clear.
http://brutaldoomwads.weebly.com/
Also Now Every Wednesday is Brutal doom Co-op! Just Look For powerman in the name!
Also Now Every Wednesday is Brutal doom Co-op! Just Look For powerman in the name!
RE: Doom in Hexen format issue
Then you'd have to lower them in a script.Powerman wrote: Let me try to elaborate more. So I have so pillars blocking a bridge you need to get over. I want the player to have to get the red key, then press use to lower the pillars, while having the red key. I hope that was slightly more clear.
http://zdoom.org/wiki/ACS_LockedExecute
Reinforcements: midgame Survival joining/respawning
Doom64: Unabsolved: Doom64 + Diablo II
ZandroSkins: a pack made by our community
AeniPuffs: 3D blood and bullet puff effects, free to use for your own mods
Squad Radio: a WASD-based radio chat menu, add your own custom sounds!
Mercenaries (on hold)

Doom64: Unabsolved: Doom64 + Diablo II
ZandroSkins: a pack made by our community
AeniPuffs: 3D blood and bullet puff effects, free to use for your own mods
Squad Radio: a WASD-based radio chat menu, add your own custom sounds!
Mercenaries (on hold)

RE: Doom in Hexen format issue
Thanks :/ I was hoping not to have to resort to ACS, but thanks!
Than am I missing something?
Than am I missing something?
Code: Select all
#include "zcommon.acs"
script 1 (void)
{
if (CheckInventory("RedCard") || CheckInventory("RedSkull"))
{
Print(s:"You use the red key.");
Floor_LowerToNearest (6, 40);
}
else
Print(s:"You need the red key.");
}
Last edited by Powerman on Thu May 09, 2013 4:05 pm, edited 1 time in total.
http://brutaldoomwads.weebly.com/
Also Now Every Wednesday is Brutal doom Co-op! Just Look For powerman in the name!
Also Now Every Wednesday is Brutal doom Co-op! Just Look For powerman in the name!
RE: Doom in Hexen format issue
You could use the setlinespecial instead. I find it a lot more flexible.Powerman wrote: Thanks :/ I was hoping not to have to resort to ACS, but thanks!
Than am I missing something?Code: Select all
#include "zcommon.acs" script 1 (void) { if (CheckInventory("RedCard") || CheckInventory("RedSkull")) { Print(s:"You use the red key."); Floor_LowerToNearest (6, 40); } else Print(s:"You need the red key."); }
<agaures> I'm guessing you haven't played many doom mods before huh? :p
<Zuplin> i have played master of puppets zombies doom center and a couple more
<agaures> so not many
<Zuplin> i thought that was everything
<Zuplin> i have played master of puppets zombies doom center and a couple more
<agaures> so not many
<Zuplin> i thought that was everything
RE: Doom in Hexen format issue
So How would something like this work? I am completely lost.
http://brutaldoomwads.weebly.com/
Also Now Every Wednesday is Brutal doom Co-op! Just Look For powerman in the name!
Also Now Every Wednesday is Brutal doom Co-op! Just Look For powerman in the name!
RE: Doom in Hexen format issue
Oh, I think agaures is suggesting that getting the red key activates a script that enables the switch. I would not recommend that. I would recommend Ænima's method. If you really don't want ACS, then you could use the old method of making the switch itself a locked door that conceals another switch.
RE: Doom in Hexen format issue
Gah, never mind. setlinespecial wouldn't work properly in doom in hexen format in this situation. I would highly recommend using UDMF format.
(BTW to make your map cheat proof you could use a bool)
(BTW to make your map cheat proof you could use a bool)
<agaures> I'm guessing you haven't played many doom mods before huh? :p
<Zuplin> i have played master of puppets zombies doom center and a couple more
<agaures> so not many
<Zuplin> i thought that was everything
<Zuplin> i have played master of puppets zombies doom center and a couple more
<agaures> so not many
<Zuplin> i thought that was everything
RE: Doom in Hexen format issue
Bool? and I may just sadly switch to Doom in doom? Much easier. Well maybe. I do not know. This should not be so difficult. or at least not such a steep learning curve. And do I need to do anything special with my sector? Besides tagging it?
Last edited by Powerman on Fri May 10, 2013 4:23 am, edited 1 time in total.
http://brutaldoomwads.weebly.com/
Also Now Every Wednesday is Brutal doom Co-op! Just Look For powerman in the name!
Also Now Every Wednesday is Brutal doom Co-op! Just Look For powerman in the name!
RE: Doom in Hexen format issue
Code: Select all
#include "zcommon.acs"
bool redcard = FALSE;
script 1 (void)
{
if(redcard==TRUE)
{
door_open(1, 16);
}
else
{
print(s:"g3t r3d c3rd!?!?!");
}
}
script 2 (void)
{
redcard = TRUE;
}<agaures> I'm guessing you haven't played many doom mods before huh? :p
<Zuplin> i have played master of puppets zombies doom center and a couple more
<agaures> so not many
<Zuplin> i thought that was everything
<Zuplin> i have played master of puppets zombies doom center and a couple more
<agaures> so not many
<Zuplin> i thought that was everything
RE: Doom in Hexen format issue
I figured it out
I forgot to tag lines as execute. Thank you all for helping a Dolt such as myself.
http://brutaldoomwads.weebly.com/
Also Now Every Wednesday is Brutal doom Co-op! Just Look For powerman in the name!
Also Now Every Wednesday is Brutal doom Co-op! Just Look For powerman in the name!