View unanswered posts | View active topics It is currently Thu Dec 26, 2024 5:47 pm



Reply to topic  [ 12 posts ] 
 Interesting modding problem (Skeletons not harmed by gibs?) 
Author Message
User avatar

Joined: Fri Dec 22, 2006 6:14 pm
Posts: 44
Location: UK
Reply with quote
Post Interesting modding problem (Skeletons not harmed by gibs?)
I was just messing around and decided to make a sort of "slime gun". It shoots a ball of slime which splits into a bunch of high-sharpness gibs on impact, which dissolve any enemy they hit.

The strange thing is, it works wonderfully on clones and robots, but has little effect on skeletons. It just knocks their weapon away and only does any real damage if you completely bury them with the gibs. Before that their health seems to stay around 90-98%

I even tried replacing the bone material values in Base.rte with the flesh values, to no avail, which leads me to believe it may be something hard-coded into the game which makes skeletons less vulnerable to gibs.

Or did I just miss something obvious?


Wed Jan 10, 2007 6:39 pm
Profile
User avatar

Joined: Wed Dec 13, 2006 5:22 pm
Posts: 265
Location: Somewhere expensive and top secret for aliens
Reply with quote
Post 
Might be something to do with a skel having holes in him?


Wed Jan 10, 2007 6:42 pm
Profile WWW
User avatar

Joined: Fri Dec 22, 2006 6:14 pm
Posts: 44
Location: UK
Reply with quote
Post 
Hmm. That never occurred to me.

Perhaps there is a rule where the gibs go right through if they are below a certain size. I'll try increasing the size to test it...


Edit: Nope, if anything it made it worse.


Wed Jan 10, 2007 6:47 pm
Profile
User avatar

Joined: Mon Dec 25, 2006 5:11 am
Posts: 103
Location: CA
Reply with quote
Post 
hmm unfortunately I don't have the skeleton code to check, but looking at your scootz code, the damage is based upon low velocity, high mass gibs for damage. I would guess that the skeletons have a higher GibImpulseLimit than the blue/green clones. The sharpness of 9000 on the MOSRotating is going to do nothing (a sharpness that high would normally cut through most of the standard materials even at low velocity - try a MOPixel with the same stats and you'll see), so what you're probably seeing here is just collision damage of 40kg x velocity (between 1 and 5) and no penetrating hits.

Compare the gibimpulselimits, can't test my theory right now heh. :oops:


Wed Jan 10, 2007 7:05 pm
Profile WWW
User avatar

Joined: Fri Dec 22, 2006 6:14 pm
Posts: 44
Location: UK
Reply with quote
Post 
piezo wrote:
hmm unfortunately I don't have the skeleton code to check, but looking at your scootz code, the damage is based upon low velocity, high mass gibs for damage. I would guess that the skeletons have a higher GibImpulseLimit than the blue/green clones. The sharpness of 9000 on the MOSRotating is going to do nothing (a sharpness that high would normally cut through most of the standard materials even at low velocity - try a MOPixel with the same stats and you'll see), so what you're probably seeing here is just collision damage of 40kg x velocity (between 1 and 5) and no penetrating hits.

Compare the gibimpulselimits, can't test my theory right now heh. :oops:


Nope =(

Skeleton: 1000
Clones: 1800
Robots: 2250


Wed Jan 10, 2007 7:14 pm
Profile
User avatar

Joined: Wed Dec 13, 2006 5:22 pm
Posts: 265
Location: Somewhere expensive and top secret for aliens
Reply with quote
Post 
So make it higher?


Wed Jan 10, 2007 7:15 pm
Profile WWW
User avatar

Joined: Mon Dec 25, 2006 5:11 am
Posts: 103
Location: CA
Reply with quote
Post 
Dicky B wrote:
Nope =(

Skeleton: 1000
Clones: 1800
Robots: 2250


Can you post the clone and skel .inis please. now you got me curious. No cc on this machine.


Wed Jan 10, 2007 7:20 pm
Profile WWW
User avatar

Joined: Fri Dec 22, 2006 6:14 pm
Posts: 44
Location: UK
Reply with quote
Post 
I am Drunkman wrote:
So make it higher?

Doesn't seem to have an effect.

piezo wrote:
Can you post the clone and skel .inis please. now you got me curious. No cc on this machine.


http://pleasesendhelp.com/crap/Skeletons.ini
http://pleasesendhelp.com/crap/Clones.ini


Wed Jan 10, 2007 7:23 pm
Profile
User avatar

Joined: Mon Dec 25, 2006 5:11 am
Posts: 103
Location: CA
Reply with quote
Post 
Dicky B wrote:
I am Drunkman wrote:
So make it higher?

Doesn't seem to have an effect.

piezo wrote:
Can you post the clone and skel .inis please. now you got me curious. No cc on this machine.


http://pleasesendhelp.com/crap/Skeletons.ini
http://pleasesendhelp.com/crap/Clones.ini


Thanks. Just as a quickie, the surest cure for more damage with a 0 sharpness particle is more mass and speed ^_^ Heh i'm actually curious to find this resistance 'gene' for a new strain of clones :twisted:

EDIT: wow...yeah really weird. They have lower GibImpulseLimits so they should be more susceptible to collision damage. The only real difference I see between clones.ini and skeleton.ini is the inclusion of GibSound (which is new in v11 i believe). Guess i'll fool around with this too when I get home.


Wed Jan 10, 2007 7:28 pm
Profile WWW
User avatar

Joined: Fri Dec 22, 2006 6:14 pm
Posts: 44
Location: UK
Reply with quote
Post 
I might just abandon hope then. Increasing the mass and velocity would mess up the slime dynamics. I don't much want it to dig right through the ground or go flying around the map.

I guess I can just lie and say it's a "feature" :lol:

"Skeletons don't have skin and slime only works on skin everybody knows that!"


edit: "Skin and metal!"


Wed Jan 10, 2007 7:38 pm
Profile
User avatar

Joined: Mon Dec 25, 2006 5:11 am
Posts: 103
Location: CA
Reply with quote
Post 
Dicky B wrote:
I might just abandon hope then. Increasing the mass and velocity would mess up the slime dynamics. I don't much want it to dig right through the ground or go flying around the map.

I guess I can just lie and say it's a "feature" :lol:

"Skeletons don't have skin and slime only works on skin everybody knows that!"


edit: "Skin and metal!"


hehe yeah that would be one way. well try increasing your min / max values by a little bit more, like 5 min, 10 max. Your gib velocities are really low for such a high mass. That's why you're having success crushing them by covering them. (of course doesn't explain why it gibs the clones tho). Feature indeed.


Wed Jan 10, 2007 7:43 pm
Profile WWW

Joined: Mon Dec 04, 2006 3:34 am
Posts: 2378
Reply with quote
Post 
GibSound isn't new, NFS and I guessed the name of it back in V10 when we wanted sounds on impact explosives, NFS talked to Data and apparently we had the exact name, just wasn't used officiallly till now.

I wonder how many other untapped variables there are.


On the topic, I have no idea, I haven't known a heavy object to kill anything, just bury them, and skeletons dont die underground as easily as clones.


Fri Jan 12, 2007 1:19 am
Profile
Display posts from previous:  Sort by  
Reply to topic   [ 12 posts ] 

Who is online

Users browsing this forum: No registered users


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by STSoftware for PTF.
[ Time : 0.076s | 14 Queries | GZIP : Off ]