Mike
#2976 posted by Jago on 2004/12/27 08:20:29
The moral of the story is: mapping editors need a built-in database system for tracking changes. Something like CVS or Subversion (which are used for tracking changes in big software projects).
#2977 posted by Kell on 2004/12/27 08:25:04
There's a moral there somewhere...
Always Backup Your Maps*
*even if you are easy to confuse
QuakeC Help Needed
#2978 posted by Jago on 2004/12/27 09:24:22
I am getting to the phase where I should be adding gameplay to apinaraivo.bsp and I am in need of QuakeC help. I need to port the Mega-Enforcer for Zerst�rer and something from Scourge of Armagon over to the ID sources. If anyone would be so kind as to do this for me (should be pretty trivial for a person fluent in QuakeC, which I am not), please get in touch. My eternal gratitude is assured.
Jago
#2979 posted by Kinn on 2004/12/27 09:29:32
What the heck, I'll sort you out ;) What is it you need from SoA exactly?
Kinn
#2980 posted by Jago on 2004/12/27 09:35:08
I sent a email to the address mentioned in your profile.
Jago
#2981 posted by Kinn on 2004/12/27 09:38:51
sorry - could you resend to:
bdwooding - at - gmail - dot - com
thanks :)
/me needs to update his profile
Resent
#2982 posted by Jago on 2004/12/27 09:41:35
[nt]
Kinn
#2983 posted by aguirRe on 2004/12/28 11:08:24
Have you received my last three emails?
AguirRe
#2984 posted by Kinn on 2004/12/28 14:27:37
don't worry, I'm getting round to it (blame christmas ;)
My Head Fucking Hurts :o
#2985 posted by Jago on 2004/12/28 17:47:22
Just for kicks, try compiling the hipnotic sources with FrikQCC, put a monster_scourge into a map (the mechanical scorpion from SoA), compile and run the map. Notice how after dying, no centripede doesn't have any death animation whatsoever and just "stops" with his body becoming non-solid (as in, you can walk through him). The original hipnotic progs,dat file however, works just fine.
After pulling my hair out for an hour, I realise that what we have here is a bug in THE BLOODY QUAKEC COMPILER! I downloaded some bizarre ProQCC release from 1997, it compiled the code and everything worked as advertised. Ugh.
A Few Noob Questions
#2986 posted by GibFest on 2004/12/28 18:14:16
I'm currently making a quake sp map and Im quite confident I will finish this as alot of the structure is in place.
Having never really got this far when creating a map, it leaves me not too hot with entities so here goes..
I want two doors to open reveiling a monster behind each (already in place), but I want the doors to only open once the four monsters that your fighting have been killed.
Secondly I want a button to trigger a door open only once two of the buttons have been pressed, I've seen this in some maps and it has an on screen message "1 more left".
Also one other thing, is it possible to make a monster or a set of monsters "spawn" as you pass over a trigger or a button?
If anyone could shed any light over these I would be most greatful.
Gib
#2987 posted by PuLSaR on 2004/12/28 18:51:48
I want two doors to open reveiling a monster behind each (already in place), but I want the doors to only open once the four monsters that your fighting have been killed.
Secondly I want a button to trigger a door open only once two of the buttons have been pressed, I've seen this in some maps and it has an on screen message "1 more left".
You need to you use trigger_counter. Create a trigger_counter, give it a targetname (counter1 for example), fill the 'count' field with the number of monsters/buttons you need to activate it (4 (monsters) or 2 (buttons) for you), and then fill the 'target' fill as for usual trigger. Then target buttons or monsters to that trigger (for example 4 monsters should have 'target' field with 'counter1' value.
Also one other thing, is it possible to make a monster or a set of monsters "spawn" as you pass over a trigger or a button?
You need to create a room somewhere, place monster there, cover him with trigger_teleport and give this trigger_teleport any targetname. Then target your trigger or button to that teleport.
I hope it's clear.
Replis
#2988 posted by czg on 2004/12/28 18:55:22
I want two doors to open reveiling a monster behind each (already in place), but I want the doors to only open once the four monsters that your fighting have been killed.
Target each of the four monsters to a trigger_counter, give it a "count" value of "4", and if desirable set spawnflag 1 to make it not print out "there are more to go..." messages when you kill the monsters.
Secondly I want a button to trigger a door open only once two of the buttons have been pressed, I've seen this in some maps and it has an on screen message "1 more left".
Exactly same as above, just set "count" to "2" and target trigger_counter with the buttons instead of the monsters.
Also one other thing, is it possible to make a monster or a set of monsters "spawn" as you pass over a trigger or a button?
You have to make this happen by creating a small box outside the map, place the monsters you want to spawn inside, place individual trigger_teleport over each monster, give the teleporters a common "targetname" like, say, "spawn_monsters" or something, and target each of the teleports to their own info_teleport_destination placed where you want them to appear in the map. Triggering the teleport(s) will now spawn the monsters at the info_teleport_destination(s).
Omg Double Penetration :/
#2989 posted by czg on 2004/12/28 18:56:07
VPhysics Penetration Error!
Czg
#2990 posted by PuLSaR on 2004/12/28 19:02:31
heh
.
#2991 posted by GibFest on 2004/12/28 19:06:08
The counter thing worked great and I can complete some more of the set pieces now, thanks. As for the monster spawning haven't tried that yet but sounds easy enough.
I just wonder if the trigger_counter needs to be an entity that's pressed, passed through or touch by the player or can it reside anywhere within the level?
Gib
#2992 posted by PuLSaR on 2004/12/28 19:09:46
I just wonder if the trigger_counter needs to be an entity that's pressed, passed through or touch by the player or can it reside anywhere within the level?
No, it's brush-entity, but you just vreate it somewhere, no matter where, it doesn't need to be touched.
Another Question
#2993 posted by GibFest on 2004/12/28 19:36:18
Is it possible to set it so that once you've hit a certain monster to a cetain % health left, you can make it teleport away before it dies.
e.g. Just like spawning monsters into a level but spawning this particular one to a different location triggered by it reaching a certain set health level, if you know what I mean.
Gib
#2994 posted by PuLSaR on 2004/12/28 19:44:20
afaik only death of the monster can trigger anything.
But
#2995 posted by PuLSaR on 2004/12/28 19:46:05
you may use trigger_relay and spawn in monsters after some time after the first trigger has been activated.
.
#2996 posted by GibFest on 2004/12/28 19:49:22
I was thinking more along the lines of a boss type monster spawning in, then fighting then spawning out when it was almost dead and to do this a varying stages of the map up until the final battle.
#2997 posted by PuLSaR on 2004/12/28 19:54:54
I was thinking more along the lines of a boss type monster spawning in, then fighting then spawning out when it was almost dead and to do this a varying stages of the map up until the final battle.
That sounds too complex for quake, it seems you need another engine or at least custom qc.
The Recurring Boss Monster
#2998 posted by Preach on 2004/12/28 20:25:24
That would certainly be possible in QC, but how you'd put it into the map would, of course, depend on how you coded it. If you want to use a custom mod for your map, I would write this part of it, e-mail me if you're interested. I am going away for new years, so if you want a simple boss(like a basic quake monster with just ajusted stats and this ability) I could do that tomorrow. If you wanted something more complex, like changed AI or some totally new creature, it would have to wait until next week(and would likely take even longer than that...)
.
#2999 posted by GibFest on 2004/12/28 20:50:10
My idea was to encounter a vore or shambler (boss creature) and just before the last shot made on him he would teleport out with a system message "Not this time" or something similar. When it teleports out it would target another trigger spawning in some mobs like ogres / zomies.. Then further on in the level do the same kinda setup with maybe a different message "Your getting closer". It doesn't neccesarily need to be the same vore/shambler, just have the ability to spawn out before death with a setable system message each time.
The final battle can just be a normal vore/shambler that will die and thus completing the mission.
I hope that makes sense, basically don't need new AI or anything like that :)
Post #3000
#3000 posted by PuLSaR on 2004/12/28 21:00:03
probably you could just change the death animation of those monsters into something like spawning or make some similar effect via qc as Preach offers.
|