The "How do I..." Thread

Archive of the old editing forum
Forum rules
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. This forum is archived - please use this set of forums to ask new questions.
tzen
Posts: 2
Joined: Mon Nov 12, 2012 3:02 am

Re: The "How do I..." Thread

Post by tzen »

I'm using Doom Builder 2, and I'm trying to create a sector with colored light on the ceiling that does not color any sprites within that sector. I got the light to appear on the ceiling only by creating a dummy sector with a -1024 floor and the Transfer Heights action. But the light also colors any sprites in the sector.

I found this: http://zdoom.org/wiki/Floor/Ceiling_sector_translations

But it's poorly explained, and I cannot seem to create a self-referencing sector that does the trick. I simply made a third dummy/control sector outside the perimeter of the level, highlighted all the linedefs, changed the sidedefs' back side sector index to the same as the front side, and then moved the sector over onto the actual sector. Is that incorrect?

Thanks

Update: well I sort of got it to work by making the area of the self-referencing sector smaller than the area of the main sector.
User avatar
GFD
Posts: 347
Joined: Mon May 31, 2010 7:42 pm
Preferred Pronouns: He/Him
Location: Canada

Re: The "How do I..." Thread

Post by GFD »

Is it at all possible to obtain an actor's arguments using ACS? There's a SetThingSpecial function, but no Get equivalent, and it's not obtainable by GetActorProperty and similar functions.
User avatar
insightguy
Posts: 1730
Joined: Tue Mar 22, 2011 11:54 pm

Re: The "How do I..." Thread

Post by insightguy »

Can anyone explain to me how to properly use MousePos[_X] and MousePos[_X] in acs?
renaldones
Posts: 28
Joined: Wed Nov 14, 2012 1:33 am

Re: The "How do I..." Thread

Post by renaldones »

How do I change an existing item's pickup name? I'm trying to turn the light amp goggles into a "sphere" thing, which takes all the effort of changing the sprites and adding "sphere" to the pickup name, so there's no point in making a whole new item.
User avatar
ChronoSeth
Posts: 1631
Joined: Mon Jul 05, 2010 2:04 pm
Location: British Columbia

Re: The "How do I..." Thread

Post by ChronoSeth »

Look for GOTVISOR in the [wiki]LANGUAGE[/wiki] lump (in zdoom.pk3), then redefine it in your own language lump with the message you want.

Obviously, this only works with items which have their strings defined in LANGUAGE.

I typed "LAUNGUAGE" at least four times... -.-
User avatar
Ravick
Posts: 2041
Joined: Sun Aug 22, 2010 10:59 pm
Location: Tubarão, Brasil

Re: The "How do I..." Thread

Post by Ravick »

How do I define new sounds for my new player classes?
Blue Shadow
Posts: 5039
Joined: Sun Nov 14, 2010 12:59 am

Re: The "How do I..." Thread

Post by Blue Shadow »

[wiki=SNDINFO#playersound]$playersound[/wiki].
User avatar
ShadowTiger
Posts: 615
Joined: Sat Nov 07, 2009 7:32 pm
Location: New York

Re: The "How do I..." Thread

Post by ShadowTiger »

I'm sure it's been done before, but I'm surprised that the Carry, Scroll, and Wind sector tags aren't working for this. I'm trying to carry a shotgun to the east past a line that will teleport it to a predestined spot so it will appear as if it's teleporting in for the player, but no sector tag I've tried will carry the items. What's doing here?
Blue Shadow
Posts: 5039
Joined: Sun Nov 14, 2010 12:59 am

Re: The "How do I..." Thread

Post by Blue Shadow »

[wiki=Carrying_sector]Have you looked here for more info?[/wiki]
User avatar
ShadowTiger
Posts: 615
Joined: Sat Nov 07, 2009 7:32 pm
Location: New York

Re: The "How do I..." Thread

Post by ShadowTiger »

It was the closest thing I could find. I did a forum search for a few possibilities, and followed every link on that page an hour ago.

I suppose the next question is, does anyone remember any WAD where someone got items working on a conveyor belt at all at any point? I can find it from there.
User avatar
ChronoSeth
Posts: 1631
Joined: Mon Jul 05, 2010 2:04 pm
Location: British Columbia

Re: The "How do I..." Thread

Post by ChronoSeth »

As the page explains, you need to use [wiki]Scroll_Floor[/wiki] or the other specials (depending on what you need) to allow the scrolling sector to carry objects besides the player.
Raven scrollers (sector types 84 and 201—244) only carry players standing on the ground. Other actors are unaffected. This is because their effect is only checked in the function called when players stand in a special sector.
User avatar
Sgt. Shivers
Posts: 1743
Joined: Fri Jun 22, 2012 5:39 am

Re: The "How do I..." Thread

Post by Sgt. Shivers »

How do I make A_Saw effected by PowerStrength?
Blue Shadow
Posts: 5039
Joined: Sun Nov 14, 2010 12:59 am

Re: The "How do I..." Thread

Post by Blue Shadow »

User avatar
Sgt. Shivers
Posts: 1743
Joined: Fri Jun 22, 2012 5:39 am

Re: The "How do I..." Thread

Post by Sgt. Shivers »

Blue Shadow wrote:Here, I put an example for a custom fist, but it can be done in the same manner for A_Saw.
Thanks a ton!
User avatar
ShadowTiger
Posts: 615
Joined: Sat Nov 07, 2009 7:32 pm
Location: New York

Re: The "How do I..." Thread

Post by ShadowTiger »

Thanks for the tip earlier, Blue Shadow. Read a bunch more, set the X and Y numbers appropriately, (To scroll east, put 'em at 200 and 128, respectively. Worked great.) and it's all good. Got muh teleportin' shotgun. ^.^


So, another question please, if y'don't mind. Is there any way without using ACS to trigger two sector tags with one button? I.e. I have a button that I press that lowers its pedestal to the ground, but raises a door to the ceiling. That's two different types of sector actions. It would work if I lowered both, but ... hm.


In other words, is there a way to "chain" effects, such that one button will trigger another automatically that will ultimately act on two sector tags?


(EDIT: Eh, ACS scripting isn't that hard. :P Turns out I'm not a complete moron. Got the darn thing to work. ^_^ )

Though it's still an interesting question, and I can't help but wonder if it has an answer; to chain several actions at once on different tagged sectors without ACS using only a single switch.


-----------------------------

...


Now to figure out why the darn door moves its sidedefs even though they're unpegged. The sides of the doors in The splitting door example move with the door, even though they're unpegged. Intriguing.

Return to “Editing (Archive)”