![]() |
#481 |
Re: EDuke32 Scripting (CON coding) Part 2
Here's a question slightly off topic...
As far as I can tell, the auto door close funtion (SE 10) still does not work with the sliding door. Is this something that can be fixed or no? As a map builder, this glich has been a pain in the ass for way too long! Awhile back I resorted to linking the sliding door to a subway effect which would return the door after a time interval relative to the length of the subway tunnel, however this required using at least two sectors for every elevator door which for someone like me who builds maps that are hard up against the maximum wall count, is a real problem. Maybe TerminX can answer this one? |
|
![]() |
![]() |
#482 | |
Re: EDuke32 Scripting (CON coding) Part 2
Quote:
First of all, it should be ifvare SWITCHHIT 1 { YOUR CODE } Right now, only the getuserdef[THISACTOR].volume_number TEMP line is contingent upon the value of SWITCHHIT. All the other lines execute all the time. Now let's look at those other lines. Code:
getuserdef[THISACTOR].volume_number TEMP Code:
setuserdef[THISACTOR].volume_number episode Code:
starttrackvar level
__________________
DUKE PLUS New map effects and various optional extras for Duke 3D. DUKE NUKEM: ATTRITION XP based weapon upgrades, progressive difficulty, and more. |
||
![]() |
![]() |
#483 | |
Re: EDuke32 Scripting (CON coding) Part 2
Quote:
There's also the possibility that there will be cases where someone had tried to use SE10 with a sliding door, had no luck and forgot to delete the sprite afterward, which could leave them with a door that doesn't open and close right. We'll see. |
||
![]() |
![]() |
#484 |
Re: EDuke32 Scripting (CON coding) Part 2
Essentially the SE 10 works fine for every type of door except the sliding door. When applied to a sliding door, the door will open and then close just like its supposed too, however it continues to loop for some reason... opening and closing endlessly. I read once that it was a small glitch that turned up just prior to game release and 3D Realms didn't have a chance to resolve it.
Thanks for taking a look though... I've seen some of the incredible stuff you've done with eduke and mapster over the last while and it's been very impressive and very helpful for me and presumably many other map builders. |
|
![]() |
![]() |
#485 | |
Re: EDuke32 Scripting (CON coding) Part 2
Quote:
There's probably some maps out there where the glitch was used deliberately to create a malfunctioning door effect. It's very dangerous to try fixing stuff like that in a 13 year old game that has thousands of user maps.
__________________
DUKE PLUS New map effects and various optional extras for Duke 3D. DUKE NUKEM: ATTRITION XP based weapon upgrades, progressive difficulty, and more. |
||
![]() |
![]() |
#486 |
Re: EDuke32 Scripting (CON coding) Part 2
I doubt there's a probably about it - I imagine people like Billy Boy and Zaxtor used something like that to create the effects in their maps
![]() |
|
![]() |
![]() |
#487 |
Re: EDuke32 Scripting (CON coding) Part 2
Doesn't one of the doors in the first level of the SST TC also use this glitch?
__________________
I Know Everything There Is To Know About Anything. Duke Nukem Red Alert SVN Ask Me Anything! |
|
![]() |
![]() |
#488 |
Re: EDuke32 Scripting (CON coding) Part 2
Normally I would not have bothered to inquire about it and continued on using the subway system to time the doors but I’ve been building a map that is pretty close to the maximum wall count of 16384 and has quite a few sliding doors in it. I figured that if the SE10 bug could be resolved then I could delete the sectors I’ve been using to time the doors and put them to better use finishing the map.
Naturally, it would be far more preferable if there was a way to increase the maximum wall count beyond the 16384 threshold but I’ve heard varying opinions on the possibility of that. Some people say it can’t be done and others say that it can but would require some work. Quite frankly, with more walls none of this would be an issue to begin with. Any thoughts? |
|
![]() |
![]() |
#489 | ||
Re: EDuke32 Scripting (CON coding) Part 2
Quote:
Quote:
Last edited by EmericaSkater; 05-05-2009 at 03:40 PM.
|
|||
![]() |
![]() |
#490 |
Re: EDuke32 Scripting (CON coding) Part 2
The best solution is to create a new SE# effect, specifically for sliding doors, me thinks.
__________________
The feeling is definitely there. It's a new morning in America... fresh, vital. The old cynicism is gone. We have faith in our leaders. We're optimistic as to what becomes of it all. It really boils down to our ability to accept. We don't need pessimism. There are no limits. We dont just want to survive, we want to succeed. - President of the USA, "They Live" |
|
![]() |
![]() |
#491 | |
Re: EDuke32 Scripting (CON coding) Part 2
Quote:
__________________
DUKE PLUS New map effects and various optional extras for Duke 3D. DUKE NUKEM: ATTRITION XP based weapon upgrades, progressive difficulty, and more. |
||
![]() |
![]() |
#492 |
Re: EDuke32 Scripting (CON coding) Part 2
Yes, it makes much more sense now and it's a lot simpler than I imagined. Thank you, DT.
|
|
![]() |
![]() |
#493 | |
Re: EDuke32 snapshot thread
Quote:
Anyway, it is just me or does the earthquake not start when the player is the air on a jet pack? And if so, is there any way to make the quake work regardless of the players status.
Last edited by lycanox; 05-06-2009 at 11:56 AM.
|
||
![]() |
![]() |
#494 |
Re: EDuke32 Scripting (CON coding) Part 2
|
|
![]() |
![]() |
#495 |
Re: EDuke32 Scripting (CON coding) Part 2
|
|
![]() |
![]() |
#496 |
Re: EDuke32 Scripting (CON coding) Part 2
I would like a clarification about two commands:
setuserdef[THISACTOR].screen_size SCREENSIZE and getuserdef[THISACTOR].screen_size SCREENSIZE Let me write what I understand from their meaning: 1. About setuserdef[THISACTOR].screen_size SCREENSIZE This sets the player's screen size equal to the current value of SCREENSIZE variable 2. About getuserdef[THISACTOR].screen_size SCREENSIZE This sets the value of SCREENSIZE variable equal to the value of userdef[THISACTOR].screen_size Am I correct? Can you clarify this? Note: In my case both of them work the same.
Last edited by supergoofy; 05-06-2009 at 01:40 PM.
|
|
![]() |
![]() |
#497 | |
Re: EDuke32 Scripting (CON coding) Part 2
Quote:
Code:
getuserdef[THISACTOR].screen_size TEMP ifvare TEMP 64 { setuserdef[THISACTOR].screen_size 0 } On another note, I created a useractor enemy the other day, a straight slugger type of enemy that I imaginatively titled WARRIOR. I've been trying to create a state for him where he'll parry an attack on a random occurrence and no damage will be dealt. I've been trying to use htextra to get this done and I'm halfway there but I'm having a wee bit of a problem... I created my own state for the parry which is Code:
state warriorparrystate ifhitweapon { setactor[THISACTOR].htextra -1 ai AIWARRIORPARRY state randomparrysound } ends Code:
useractor enemy WARRIOR WARRIORSTRENGTH fall ifrnd 128 { state warriorparrystate } state warriorcode enda |
||
![]() |
![]() |
#498 |
Re: EDuke32 Scripting (CON coding) Part 2
You have to detect whether htextra is greater than 0 and set it to -1 if is it is before you use ifhitweapon.
__________________
DUKE PLUS New map effects and various optional extras for Duke 3D. DUKE NUKEM: ATTRITION XP based weapon upgrades, progressive difficulty, and more. |
|
![]() |
![]() |
#499 |
Re: EDuke32 Scripting (CON coding) Part 2
Alright, but what exactly does that mean? I just call the state in the middle of the warrior's main code before his ifhitweapon condition calls the checkhit state? I've noticed that if I try to put the state anywhere outside of the actor declaration it has no effect at all (even if I change it to where it happens 100 percent of the time).
|
|
![]() |
Bookmarks |
|
|