gibbing player bodies?
Moderator: InsideQC Admins
12 posts
• Page 1 of 1
gibbing player bodies?
i just tried to get this, but all it does it crash quake at first witht the move type step thing so i changed it to move type none
oh im basing this off of the gibbing dead bidies tutorial
i think its because of
void() player_die_ax9 = [ $axdeth9, player_die_ax9 ] {PlayerDead(); become_corpse ();};
it also dosent work, you cant gib them and messes up the " your dead look"
as in
instead of a red screen and the limeted looking its a normal screen and full looking [i thought i was in observer mode due to the way it looked, and i dident code it to go to observer after death]
any ideas, and also im afraid to touch the playerdead() thing because i like being able to respawn after death
oh im basing this off of the gibbing dead bidies tutorial
i think its because of
void() player_die_ax9 = [ $axdeth9, player_die_ax9 ] {PlayerDead(); become_corpse ();};
it also dosent work, you cant gib them and messes up the " your dead look"
as in
instead of a red screen and the limeted looking its a normal screen and full looking [i thought i was in observer mode due to the way it looked, and i dident code it to go to observer after death]
any ideas, and also im afraid to touch the playerdead() thing because i like being able to respawn after death
bah
- MeTcHsteekle
- Posts: 399
- Joined: Thu May 15, 2008 10:46 pm
- Location: its a secret
ok so now i can get the body to gib If the player remains in it, it shows you have 30 health and souch but thats not that big a deal,
but when you leave the body it cant be gibbed, i heard that when you leave the body the game just makes a copy of the frame of i and puts it there..or somthing
i know it can be gibbed because the monsters attack it and when it dos gib it does this weird thing whee it takes all the commands away and shootis you to outside the map so you can lookin to it
but when you leave the body it cant be gibbed, i heard that when you leave the body the game just makes a copy of the frame of i and puts it there..or somthing
i know it can be gibbed because the monsters attack it and when it dos gib it does this weird thing whee it takes all the commands away and shootis you to outside the map so you can lookin to it
bah
- MeTcHsteekle
- Posts: 399
- Joined: Thu May 15, 2008 10:46 pm
- Location: its a secret
When you die, you remain the same entity as your corpse until you respawn. At this point the game replaces your body with one of the bodyqueue objects (i believe in world.qc). You'll need to make those gibbable too.
I know this because I made corpses gibbable in Ace of Nails, and it's really cool when it's working. It's a bit of work but a good learning experience. Have fun!
I know this because I made corpses gibbable in Ace of Nails, and it's really cool when it's working. It's a bit of work but a good learning experience. Have fun!
When my computer inevitably explodes and kills me, my cat inherits everything I own. He may be the only one capable of continuing my work.
- Wazat
- Posts: 771
- Joined: Fri Oct 15, 2004 9:50 pm
- Location: Middle 'o the desert, USA
ok ill keep trying that, but i also just found that you cant respawn if your are killed by lava i think

bah
- MeTcHsteekle
- Posts: 399
- Joined: Thu May 15, 2008 10:46 pm
- Location: its a secret
ok im think im getting close but not quite there,
is this atleast the right idea?:
btw that Ace Of Nails looks cool, is it still in development or did you not update that site thing?
is this atleast the right idea?:
- Code: Select all
void() bodyque =
{ // just here so spawn functions don't complain after the world
// creates bodyques
};
void() InitBodyQue =
{
local entity e;
//become_corpse();
bodyque_head = spawn();
bodyque_head.classname = "monster_corpse";//"bodyque";
bodyque_head.owner = spawn();
bodyque_head.owner.classname = "monster_corpse";//"bodyque";
bodyque_head.owner.owner = spawn();
bodyque_head.owner.owner.classname = "monster_corpse"; //"bodyque";
bodyque_head.owner.owner.owner = spawn();
bodyque_head.owner.owner.owner.classname = "monster_corpse";//"bodyque";
bodyque_head.owner.owner.owner.owner = bodyque_head;
};
// make a body que entry for the given ent so the ent can be
// respawned elsewhere
void(entity ent) CopyToBodyQue =
{
bodyque_head.angles = ent.angles;
bodyque_head.model = ent.model;
bodyque_head.modelindex = ent.modelindex;
bodyque_head.frame = ent.frame;
bodyque_head.colormap = ent.colormap;
bodyque_head.movetype = ent.movetype;
bodyque_head.velocity = ent.velocity;
bodyque_head.flags = 0;
setorigin (bodyque_head, ent.origin);
setsize (bodyque_head, ent.mins, ent.maxs);
bodyque_head = bodyque_head.owner;
become_corpse();
};
btw that Ace Of Nails looks cool, is it still in development or did you not update that site thing?
bah
- MeTcHsteekle
- Posts: 399
- Joined: Thu May 15, 2008 10:46 pm
- Location: its a secret
I made gibbable corpse once, but then I had the problem that,
a player would be blocked be the corpse. DP has some flag to allow them to be gib-able and non solid at the same time, iirc. It would depend on the mod u are making i suppose. For a game like CA or CTF i felt it was more detrimental to the gameplay than just a cool eyecandy behavior.
I might still, have the code somewhere but I doubt it. Maybe I'll tinker with it tomorrow
ps: i've abandoned the entire bodyque thing long ago.
Currently when a player dies, i create a static entity, that melts into the floor (ala q3). So, im sure making that gib-able fairly easy...
a player would be blocked be the corpse. DP has some flag to allow them to be gib-able and non solid at the same time, iirc. It would depend on the mod u are making i suppose. For a game like CA or CTF i felt it was more detrimental to the gameplay than just a cool eyecandy behavior.
ps: i've abandoned the entire bodyque thing long ago.
Currently when a player dies, i create a static entity, that melts into the floor (ala q3). So, im sure making that gib-able fairly easy...
- r00k
- Posts: 1110
- Joined: Sat Nov 13, 2004 10:39 pm
hmm melting
i was thinking of adding frames and skins to look like you were rotting away at one point, but i wasent so sure how to work that eather
im trying to make it not dp dependant so everyone can play it so i have been using glpro and ultametly winquake pro, brcause if it works in thise then it will work in almost anything [accept quakeworld i think, but i dont play qw
]

i was thinking of adding frames and skins to look like you were rotting away at one point, but i wasent so sure how to work that eather
im trying to make it not dp dependant so everyone can play it so i have been using glpro and ultametly winquake pro, brcause if it works in thise then it will work in almost anything [accept quakeworld i think, but i dont play qw
bah
- MeTcHsteekle
- Posts: 399
- Joined: Thu May 15, 2008 10:46 pm
- Location: its a secret
Yes, that bodyqueue code you posted is the right area.
Well, I consider the mod as finished as I'm going to get it. Which site are you looking at? My old website disappeared a while ago (static.condemned.com), but I'll bet Cheapy's site or someone else has it. If not then I may be able to upload it somewhere. Its code might be helpful to ya, at the very least.
btw that Ace Of Nails looks cool, is it still in development or did you not update that site thing?
Well, I consider the mod as finished as I'm going to get it. Which site are you looking at? My old website disappeared a while ago (static.condemned.com), but I'll bet Cheapy's site or someone else has it. If not then I may be able to upload it somewhere. Its code might be helpful to ya, at the very least.
When my computer inevitably explodes and kills me, my cat inherits everything I own. He may be the only one capable of continuing my work.
- Wazat
- Posts: 771
- Joined: Fri Oct 15, 2004 9:50 pm
- Location: Middle 'o the desert, USA
it was mod database
http://www.moddb.com/mods/ace-of-nails/related/addons
i dont think i saw any downloads there for it
http://www.moddb.com/mods/ace-of-nails/related/addons
i dont think i saw any downloads there for it
bah
- MeTcHsteekle
- Posts: 399
- Joined: Thu May 15, 2008 10:46 pm
- Location: its a secret
I had completely forgotten about moddb. I really need to update all that stuff with download links.
For now, I've uploaded Ace of Nails and it's just awaiting moderator approval. I'll let you know when it's available for download.
I've been playing Ace of Nails lately and I have to say, I like it. I didn't remember it being as polished as this, and it's fun to play. AoN, Jeht, and Best of the Void are my 3 good DM mods that I'm proud of. I can't remember any others that I liked much.
And I'm also now remembering just how much time I put into those gibbable corpses in AoN to get them just perfect. You can walk through them even without the Darkplaces SOLID_CORPSE feature (works just as well in Cheaphack or Tomazquake). When you gib them, they tend to splatter away from the source of damage, so a quad damage rocket will send gibs flying off to the side (rather than quake's standard straight up no matter what). It's cool.
Hurray for revisiting old work and actually feeling proud of it. ^_^
For now, I've uploaded Ace of Nails and it's just awaiting moderator approval. I'll let you know when it's available for download.
I've been playing Ace of Nails lately and I have to say, I like it. I didn't remember it being as polished as this, and it's fun to play. AoN, Jeht, and Best of the Void are my 3 good DM mods that I'm proud of. I can't remember any others that I liked much.
And I'm also now remembering just how much time I put into those gibbable corpses in AoN to get them just perfect. You can walk through them even without the Darkplaces SOLID_CORPSE feature (works just as well in Cheaphack or Tomazquake). When you gib them, they tend to splatter away from the source of damage, so a quad damage rocket will send gibs flying off to the side (rather than quake's standard straight up no matter what). It's cool.
Hurray for revisiting old work and actually feeling proud of it. ^_^
When my computer inevitably explodes and kills me, my cat inherits everything I own. He may be the only one capable of continuing my work.
- Wazat
- Posts: 771
- Joined: Fri Oct 15, 2004 9:50 pm
- Location: Middle 'o the desert, USA
When my computer inevitably explodes and kills me, my cat inherits everything I own. He may be the only one capable of continuing my work.
- Wazat
- Posts: 771
- Joined: Fri Oct 15, 2004 9:50 pm
- Location: Middle 'o the desert, USA
12 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 1 guest