Split Topic - Select posts to split.

Please select which posts you wish to split.
Pages: [1] 2 3
  • -> Re: Modding Questions for my upcoming project by Victorious_Games
    July 19, 2018, 12:48:05 PM
    What’s the deal with the Nuke damage type? I was messing around with it trying it out on different weapons and sometimes it works but then sometimes it causes Explosive damage type instead of the Nuke damage type. Add it to lets say charge darts and it works but add it to a new sunfirepod projectile that is more of an explosive type projectile and it only causes Explosive damage instead of the Nuke damage that freezes your enemies and turns them black. Event type 33 is for Nuke damage right?
  • -> Re: Modding Questions for my upcoming project by Victorious_Games
    July 18, 2018, 12:25:31 PM
    Quick update: Riding Gun now has a total of 6 attack modes. Dual artillery cannons, 20mm autocannon, horned charge, plasma beam cannon, mobile mortar cannon, and a scatter cannon which is like an oversized tank shotgun. All 3 of the new weapons have there own cool down time with hud prompts letting u know when they need to be reloaded or cooled down. So u can’t just constantly use them.


    So much fun. I wish the ride was longer or that u got to ride the styracosaurus more then once.
  • -> Re: Modding Questions for my upcoming project by Victorious_Games
    July 16, 2018, 09:05:40 AM
    Yeah I figured this was the case. Doesn't make sense why it would be programmed this way though? I'll just make all surface types when hit by explosive damage projectiles cause the same explosion effects without blood to appear. That's how it was in the game to begin with. I'll add blood effects to each of the monsters explosion damage animations to compensate. Thanks for the help.
  • -> Re: Modding Questions for my upcoming project by Drahsid
    July 16, 2018, 12:48:55 AM
    Since every world component share the same base class, I'm pretty sure this bug is unfixable, unless you completely reprogram the blood particles.
  • -> Re: Modding Questions for my upcoming project by Victorious_Games
    July 12, 2018, 08:52:13 PM
    Ok so the only way to keep the barrels from spraying blood everywhere when hitting them with lets say a scorpion missile, that does explosive damage to human and creature material types, is to make the particle effect spawned when hitting monsters or humans not produce any kind of blood effects. For some reason the exploding barrels or even the destructible walls in the river of souls 1 map are using the explosion particle effects that are supposed to be used by the flesh materials. The material files for the barrel textures are set to have a default material type. What is up with this? Bullets do not do this at all. This only happens if a projectile is set to do explosive type = 17 damage to monsters. If you set the damage type to 2 the barrels use the default material type. Anybody got a clue?
  • -> Re: Modding Questions for my upcoming project by Victorious_Games
    July 12, 2018, 03:37:07 PM
    Well so far I've got secondary fire modes for all weapons, lots more blood and gore, and I figured out how to get certain monsters to spawn a specific number of specific monsters as soon as they're spawned into a map. So there are now more monsters in every map to kill without having to edit the actual map. And soon I'll have damage skins for all monsters too when they die. So if they're killed by the flamethrower they'll look burnt up. Or if they're killed by the shotgun they'll have bullet wounds on their bodies. Of course not decals just bloodied versions of their skins. Will post a full list of implemented features and features I want to add as well as the name of my mod.

    I'm still in need of ideas for the flamethrower's alternate fire mode.
  • -> Re: Modding Questions for my upcoming project by Victorious_Games
    July 12, 2018, 09:14:37 AM
    Looks like it's the mod because I see some particles that are spawning blood particles on impact with: "default", "stone", "metal". You can look at each of those particle files and try changing them back to the way they were for those surface types by referencing the games particle files of the same name.

    Oh ok It's probably something I overlooked. More then likely the blood.particle or bloodblob.particle files since they're used by multiple bloody explosion particle effects. Thanks for the heads up.
  • -> Re: Modding Questions for my upcoming project by BehemothProgrammer
    July 12, 2018, 04:31:58 AM
    Looks like it's the mod because I see some particles that are spawning blood particles on impact with: "default", "stone", "metal". You can look at each of those particle files and try changing them back to the way they were for those surface types by referencing the games particle files of the same name.
  • -> Re: Modding Questions for my upcoming project by Victorious_Games
    July 11, 2018, 12:01:08 AM
    Ok so I started using you work found here https://www.turokforums.com/index.php?topic=496.0 as a base for my project. I converted all my changes to your optimized layout and it's so much nicer now to work with. I understand now what you were saying about adding scripts to enemies. You have seriously made a very nice workspace for Turok 2 modding and I strongly recommend everybody to use your work as a starting point. Awesome job on your part. It has a much better streamlined approach and a nice set of cool features that can be easily tinkered with for both monsters, weapons, and the player. Again great job.

    Ok so about my issue with the destructible objects acting like they're made of human or creature flesh, you said I should check if they are using improper materials. Would this be done using the map editor or scripts? Because I've never made changes to the barrels or other destructible objects with a map editor. I simply used this mod https://steamcommunity.com/app/405830/discussions/1/135513549100098472/ as a base to enhance the blood and gore in the game. Could there be an issue with his work?
  • -> Re: Modding Questions for my upcoming project by BehemothProgrammer
    July 10, 2018, 10:06:08 PM
    Quote from: Victorious_Games
    Ok so I’m having trouble figuring out where exactly this script needs to be called on. I thought for sure the enemy defs would call a certain script like the weapons but they do not. So how do I get them to call on a custom script. And where is the default script for the enemies? I need to know what void statements are permitted.
    You need to set that up in the enemies defs like other defs that use a script component. Look at the defs in the game and copy and paste the text needed in the defs to add your script.

    Quote from: Victorious_Games
    Also is it possible to make a friendly turret?
    You'd have to write a script to do that.

    Ok I've been trying to get something like this to work:
    Code: [Select]
    self.Spawn(kActor_AI_Raptoid, self.Origin(), 0.0f, 0.0f, 0.0f, true, nRegionIdx);But it never works. What am I doing wrong here?
    you spawn from ActorFactory not from the actor.
    Code: [Select]
    ActorFactory.Spawn(kActor_AI_Raptoid, self.Origin(), 0.0f, 0.0f, 0.0f, true, nRegionIdx);
    Is there an event number for fire damage? I can't find one for shock either.
    No such thing.

    Also has anybody else noticed what I was asking about before? The exploding barrels using the same material as humans or creatures when hitting them with explosive projectiles?
    I don't know what you did exactly but there could be a few reasons. If you're causing "violent" type of damage that always forces a flesh impact. And most projectiles that impact flesh and creature surface types spawn blood particles. So make sure your barrels surfaces aren't those types.

Selected posts (reset selection)

The posts below will form a new topic after splitting.
Pages: [1]


SimplePortal 2.3.6 © 2008-2014, SimplePortal