Data Realms Fan Forums
http://45.55.195.193/

Question
http://45.55.195.193/viewtopic.php?f=1&t=18523
Page 1 of 1

Author:  DummyCorp [ Sun Apr 18, 2010 8:55 am ]
Post subject:  Question

Hi ! I have 2 questions.
1) My actor breakes when falls on hard material (for example - concrete) but when he falls on the ground everything is ok.
2) How to do bigger damage for weapon shells ? For example, my shell minuses 10 health when hits dummy, i want to increase it.

Author:  Joesycop [ Sun Apr 18, 2010 10:33 am ]
Post subject:  Re: Question

1 - That isn't a question. ( I don't exactly know, sorry )
2 - Are you using lua or normal bullets. ( If lua, ask someone else. If normal bullets, Sharpness makes it do more damage if I'm correct. Haven't messed with mods in a while )

Author:  DummyCorp [ Sun Apr 18, 2010 10:37 am ]
Post subject:  Re: Question

I used normal bullets. I tried to increase sharpness but no result :-(
Oh, about first question, i want to do my actor more solid to prevent it's breaking by concrete like all normal actors. How can i do it ?

Author:  CCnewplayer [ Sun Apr 18, 2010 12:16 pm ]
Post subject:  Re: Question

Incrase the jointstrength of the arms,leg ... , and you can incrase his mass too
And incrase the bullets' mass.

FREE TIPS

If you want to make someone stronger in CC ,you dont need to change the to 500 , just incrase GibWoundLimit=for bullets ...
GibImpulseLimit=for kinetc force

one more: more mass=more recoil

Author:  DummyCorp [ Sun Apr 18, 2010 12:20 pm ]
Post subject:  Re: Question

CCnewplayer, Thanks a lot!
One more question :)
how to increase jetpack power ?

Author:  CCnewplayer [ Sun Apr 18, 2010 12:23 pm ]
Post subject:  Re: Question

:mrgreen: This is nothing for me

Author:  Geti [ Sun Apr 18, 2010 12:48 pm ]
Post subject:  Re: Question

What the ♥♥♥♥?
Increasing the actor's mass will make it take more impact damage!
You need to edit something's wounds to make it take less damage, not just up it's GibWoundLimit!
Sharpness just increases a bullet's ability to penetrate, it doesn't make it do more damage (except for sometimes allowing the bullet to cause exit wounds, but still, wrong)!
WHY DO NEW MODDERS KEEP GIVING OUT INCORRECT INFORMATION?! AAAAAAAAAAAAAAAAAAAAAAH!
We need a rule about this whole misguided help thing.

GibImpulseLimit is what you're looking for for the impact resilience. Increase it.
Increasing jetpack power is done by making a new jetpack AEmitter and making it emit heavier particles, then using it for your actor's jetpack. You can find the base jetpacks in Base.rte/Effects/Pyro/Pyro.ini if I aren't mistaken.
To making a particle do more damage you actually have to make there be more particles, because damage in cortex command is done by individually defined wounds. You do this in the round definition, where it says "ParticleCount = 1", raise that number to however many times you want to raise the damage.
You'll also need to change the ParticleSpread variable in the HDFirearm definition to 0 to prevent your weapon from acting like a shotgun.
If you want to do this an easier way in lua, you can attach this script to any MOPixel bullet:
Code:
function Create(self)
 if self.PresetName ~= "copy" then --use the thing's presetname as an identifier, since it'll inherit this script
  copy = CreateMOPixel(self.PresetName) --make a new instance
  copy.PresetName = "copy" --give it the indentifier
  copy.Vel,copy.Pos = self.Vel,self.Pos --copy position and velocity
  MovableMan:AddParticle(copy) --add it to the world
 end
end
Code is not tested and was just made up then, but it should work unless i typo'd something blah blah.

Author:  DummyCorp [ Sun Apr 18, 2010 1:04 pm ]
Post subject:  Re: Question

Geti, Thnx !
You helped me much. :wink:
Very exhaustive. :D
Previous advice didn't work well :oops:

Author:  CCnewplayer [ Sun Apr 18, 2010 1:14 pm ]
Post subject:  Re: Question

Geti wrote:
Increasing the actor's mass will make it take more impact damage!


I'm sorry , I was thinking to leave it stronger and not about the impacts :neutral:
and why lua if we can use ini?(I Dont Need answer)

Author:  DummyCorp [ Sun Apr 18, 2010 6:29 pm ]
Post subject:  Re: Question

One more problem....
I've done two sprayers with different substances but when i test it both two sprayers fire with second sprayer's substance, what is wrong ? How to fix it ? It is .ini, not lua. Please help me :-(

Author:  dragonxp [ Sun Apr 18, 2010 7:03 pm ]
Post subject:  Re: Question

Make sure the rounds/MOPixels/Magazines have different names, otherwise, they will overwrite one another.

Author:  DummyCorp [ Sun Apr 18, 2010 7:31 pm ]
Post subject:  Re: Question

dragonxp wrote:
Make sure the rounds/MOPixels/Magazines have different names, otherwise, they will overwrite one another.


yes ! it was two same names of rounds. thank you :)

Page 1 of 1 All times are UTC [ DST ]
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/