Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
Sign in to follow this  
cyber-menace

Making Scroll_Floor Scroll North

Recommended Posts

I'm trying to use the Scroll_Floor function to scroll some things North, but I can only make it go east. I am using a LineDef for this function. How do I make it scroll North?

Share this post


Link to post

Scrollbit 4 uses the Boom method, where the linedef length is the speed. To make it work normally, use scrollbit 1. For directions, the 'zero point' is actually 128, so anything less than 128 goes west and anything more goes east. (same for north/south)

Scroll_Floor (tag, scrollbits, scroll/carry/both, x, y)

Your best bet is to use scripting, as scrolling is a bit easier there - the zero point is actually 0 (use minus values for west/south) have no limits and can even be changed mid-game. Use this in an open script:

Scroll_Floor (tag, x value, y value, scroll/carry/both value)

Share this post


Link to post

Heh, thanks TUD. You can blame "Action Doom" for the method I used because I knew they did what I wanted to do so I looked at it. Well it's working good enough at this point.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  
×