Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
pablogener

ACS: Scroll_Wall not working

Recommended Posts

I need help with this function.
specifically, an example would come much in handy.

I'll give you my code, as it is now, which is not working:

    scroll_wall(1077,0,200.0,0,2);
    scroll_wall(1092,0,200.0,0,2);
    scroll_wall(1080,0,200.0,0,2);
    scroll_wall(1095,0,200.0,0,2);
    scroll_wall(1079,0,200.0,0,2);
    scroll_wall(1089,0,200.0,0,2);
nothing happens when the script is ran.
Am I missing anything here? There has to be something wrong about those 'fixed point' integers, I don't know if I understand all the theory about those...
thanks for any help, you guys are real problem killers.

Share this post


Link to post

According to the ZDoom wiki the first argument supplied is lineid. You're putting in numbers as high as 1077 in there so either you're putting in the linedef numbers or your map is ridiculously interactive :p

What lineid means is not the linedef number, but the tag for the line. In UDMF map format you set this in the linedef properties directly, in Doom in Hexen map format you need to assign lineids to your lines by using Line_SetIdentification.

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
×