Your y movement is not enough!
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.
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.
Re: Your y movement is not enough!
WFDS *shot*
Re: Your y movement is not enough!
......
Spoiler:
Last edited by alysiumX on Tue Mar 04, 2008 3:58 pm, edited 1 time in total.
Re: Your y movement is not enough!
@ alysiumX: It stands for 'Wait for Doom Script'.
Re: Your y movement is not enough!
doom script?
Re: Your y movement is not enough!
It's a new zdoom language for modding that's not out yet.
Re: Your y movement is not enough!
Yeah, it's vaporware.
Re: Your y movement is not enough!
ok, lets try something simpler, how do i remove the plasma guns decal using the decal def?
Re: Your y movement is not enough!
Have you even heard of the ZDoom Wiki?
Re: Your y movement is not enough!
ya i just dont quite under stand how to get the generator's exact name, would it be PlasmaBullet or whatever name it has in dehacked?
Re: Your y movement is not enough!
Definitely not whatever it says in DEHACKED. The dehacked names only exist in in dehacked and nowhere else. They are just there to help you identify the various actors when you are using dehacked. You need to use the real names as Zdoom recognises them. The correct name for Zdoom is "PlasmaBall". To get a list of all the actors in Zdoom, start the program, bring down the console and type the following:
logfile log.txt
dumpclasses actor
Then quit and read the file log.txt that has been created in your Zdoom directory.
logfile log.txt
dumpclasses actor
Then quit and read the file log.txt that has been created in your Zdoom directory.
Re: Your y movement is not enough!
Hmm, I don't know if this would work, but in realtion to your original idea you might try stopping the player from moving on the Y axis by setting the sector's gravity to zero and then cancelling the y movement using a thrust from beneath. Would that work?
Re: Your y movement is not enough!
Kirby, isn't gravity on the z axis? I though that the y axis was North/South.
- TheDarkArchon
- Posts: 7656
- Joined: Sat Aug 07, 2004 5:14 am
- Location: Some cold place
Re: Your y movement is not enough!
In ZDoom it is. Generally, though, gravity is on the y-axis, with the z-axis being in and out.
- solarsnowfall
- Posts: 1581
- Joined: Thu Jun 30, 2005 1:44 am
Re: Your y movement is not enough!
Back to the y axis thing... Maybe something along these lines?
That basically fixes the activator to a single y axis position, the y position it was at when it activated the script. It sounds like what you want to do is a little more complicated than that, but maybe this is a step in the direction you want?
Code: Select all
script 1 (void)
{
int y;
y = GetActorY(0);
while(TRUE)
{
SetActorPosition(0, GetActorX(0), y, GetActorZ(0), 0);
delay(1);
}
}
