ow_escapeadel(may change)
rickinator9
10 Apr 2011
Coppermantis, on 09 April 2011 - 11:50 PM, said:
It looks like a func_breakable with the break input.
Yeah, physboxes will do what you want.
The layout so far looks pretty good, It'll be interesting once the geometry is done and it gets some textures/detail.
Yeah, physboxes will do what you want.
The layout so far looks pretty good, It'll be interesting once the geometry is done and it gets some textures/detail.
rickinator9
12 Apr 2011
rickinator9, on 10 April 2011 - 03:30 AM, said:
I might make some custom models, as the headies are a common enemy so I will need some zombies. The boss is fairly difficult to destroy without rockets, but you will not see a rocket launcher in this map. It seems out of place.
rickinator9
14 Apr 2011
rickinator9
20 Apr 2011
So I'm almost finished with brushing. Could someone maybe explain how I make a hack objective?(in steps). I think I will be able to figure out all the others from that.
Coppermantis
20 Apr 2011
rickinator9, on 20 April 2011 - 12:57 PM, said:
So I'm almost finished with brushing. Could someone maybe explain how I make a hack objective?(in steps). I think I will be able to figure out all the others from that.
Well, I know one way to do it, but I can guarantee that it's the wrong way. from what I've seen, the devs' way involves logic_timers and relays and such, but my method is totally different, using func_movelinears.
Instant Loser
20 Apr 2011
I used func_movelinears for mine as well since I needed them for the doors anyway.
If you want it to be really simple, just set up a trigger_multiple where you want them to stand with two outputs to a game_hudtimer_ow: on_start_touch_all -> start_timer and on_end_touch_all -> pause_timer. Have the hudtimer's onzero output update your game_tasklist.
I don't think I've remembered the names exactly right, but that's the idea. There are lots of ways to do something like this, this is just the easiest, IMO.
If you want it to be really simple, just set up a trigger_multiple where you want them to stand with two outputs to a game_hudtimer_ow: on_start_touch_all -> start_timer and on_end_touch_all -> pause_timer. Have the hudtimer's onzero output update your game_tasklist.
I don't think I've remembered the names exactly right, but that's the idea. There are lots of ways to do something like this, this is just the easiest, IMO.
rickinator9
25 Apr 2011
So I have put up an hacking objective with a timer at the top of the screen. Also, I'm considering adding hack time based on playercount. But due to programming mistakes on my part the energy field wouldn't go off. It should be fixed by now but I couldn't test it due to my map not compiling because the SDK suddenly stopped working and not me not being able to start it up again. I also think I'm done brushing. I understand the basics of programming the spawns. Actually, if I work hard, I might get this to beta-testing at the end of this week.
rickinator9
27 Apr 2011
rickinator9, on 25 April 2011 - 03:59 PM, said:
So I have put up an hacking objective with a timer at the top of the screen. Also, I'm considering adding hack time based on playercount. But due to programming mistakes on my part the energy field wouldn't go off. It should be fixed by now but I couldn't test it due to my map not compiling because the SDK suddenly stopped working and not me not being able to start it up again. I also think I'm done brushing. I understand the basics of programming the spawns. Actually, if I work hard, I might get this to beta-testing at the end of this week.
rickinator9
03 May 2011
I textured it and such, but Vrad is taking VERY long. How do I make Vrad more optimized?
EDIT: For all you boys wanting to make a citadel map, do NOT use light textures, use fog instead. It added 3000 lights when i did light textures
EDIT 2: The map is gonna be called "owc_escape"
EDIT: For all you boys wanting to make a citadel map, do NOT use light textures, use fog instead. It added 3000 lights when i did light textures
EDIT 2: The map is gonna be called "owc_escape"
Coppermantis
03 May 2011
rickinator9, on 03 May 2011 - 09:14 AM, said:
I textured it and such, but Vrad is taking VERY long. How do I make Vrad more optimized?
. It added 3000 lights when i did light textures
. It added 3000 lights when i did light textures
...
Wow, maybe that's why my map takes so long to compile. I used a lot of light textures.
And I highly reccomend This guy's optimization tutorials, very useful for decreasing compile time.
http://www.moddb.com...ic-optimization
(first of three)
rickinator9
04 May 2011
Coppermantis, on 03 May 2011 - 07:02 PM, said:
...
Wow, maybe that's why my map takes so long to compile. I used a lot of light textures.
And I highly reccomend This guy's optimization tutorials, very useful for decreasing compile time.
http://www.moddb.com...ic-optimization
(first of three)
Wow, maybe that's why my map takes so long to compile. I used a lot of light textures.
And I highly reccomend This guy's optimization tutorials, very useful for decreasing compile time.
http://www.moddb.com...ic-optimization
(first of three)
Coppermantis
04 May 2011
rickinator9
05 May 2011
AndY
07 May 2011
rickinator9
07 May 2011
ScrooLewse
07 May 2011
rickinator9, on 07 May 2011 - 12:26 PM, said:
If AndY does his job, it will.
Life lesson NUMBER ONE.
Never take the developers for granted. Without them you'd probably still be twiddling your thumbs some obscure ventilation shaft waiting for all the Banshees to disperse.
EDIT: Fixed grammar fail.
Edited by ScrooLewse, 10 May 2011 - 03:13 PM.
rickinator9
08 May 2011
ScrooLewse, on 07 May 2011 - 08:06 PM, said:
Life lesson NUMBER ONE.
Never take the developers for granted. Without them you'd probably still be twiddling your thumbs some obscure ventilation shaft waiting for all the Banshees to disperse if it wasn't for them.
Never take the developers for granted. Without them you'd probably still be twiddling your thumbs some obscure ventilation shaft waiting for all the Banshees to disperse if it wasn't for them.
Self_Esteem_Fund
09 May 2011
Instant Loser, on 20 April 2011 - 06:13 PM, said:
I used func_movelinears for mine as well since I needed them for the doors anyway.
If you want it to be really simple, just set up a trigger_multiple where you want them to stand with two outputs to a game_hudtimer_ow: on_start_touch_all -> start_timer and on_end_touch_all -> pause_timer. Have the hudtimer's onzero output update your game_tasklist.
I don't think I've remembered the names exactly right, but that's the idea. There are lots of ways to do something like this, this is just the easiest, IMO.
If you want it to be really simple, just set up a trigger_multiple where you want them to stand with two outputs to a game_hudtimer_ow: on_start_touch_all -> start_timer and on_end_touch_all -> pause_timer. Have the hudtimer's onzero output update your game_tasklist.
I don't think I've remembered the names exactly right, but that's the idea. There are lots of ways to do something like this, this is just the easiest, IMO.
I have a tracktrain with a trigger multiple that on start touch set speed with parameter=whatever and on end touch all set speed with parameter= -whatever. Then the path tracks have that on pass they do the set progress to the indicator.
I personally think that there should be basic prefabs that are not linked to other events and can be easily configured, that way most of the effort doesn't go into setting everything up.
rickinator9
10 May 2011
Coppermantis
10 May 2011
rickinator9, on 10 May 2011 - 02:22 PM, said:
Also tell that to coppermantis
?
When do I take the devs for granted? I never expected them to do the work for me. The closest thing to that was the when AndY said he's have Jason look at my map because my comp couldn't compile it. I do respect the developers, and in no way think that they're at my beck and call.