Jump to content

haleks

Member
  • Content Count

    3984
  • Joined

  • Last visited

  • Medals

Community Reputation

8206 Excellent

About haleks

  • Rank
    Chief Warrant Officer

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

16363 profile views
  1. haleks

    Ravage

    Honestly, being a Single Player kinda guy, and now that it's clear that Reforger won't ever be SP-friendly, my interest in modding it has pretty much vanished... I might boot it up some day and fix it, but I reckon it will be the last time I touch anything Reforger-related. Although I do need to fix (ideally replace) my CPU first... 😑
  2. haleks

    Ravage

    @MuRaZorWitchKING, you're welcome my friend ! It's always amazing to see the passion and dedication Ravage can spur - congratz on the release guys ! 😉
  3. haleks

    Impact

    That 's unlikely : currently Impact is pretty much just a conditional addForce command plugged into a hitPart EvenHandler; it cannot have any effect on anything other than units.
  4. haleks

    Impact

    Hey guys, Tiny update for MP : Apparently, the addForce command I'm using requires the target unit to be local... And since the hitPart EH fires on the shooter's machine, I'm guessing the previous update wasn't properly working.
  5. haleks

    Ravage

    @honger : the condition field is used for the spawn triggers generated by the module, rather than on the module itself; but the effect is the same, yeah.
  6. haleks

    Impact

    Hello chaps ! I've pushed a small update after realizing that Impact wasn't working properly in MP. Since the "hitPart" EH I'm using needs to be added from any potential shooter's machine, it is important to remember that Impact should be loaded on both server & clients. Have fun people !
  7. haleks

    Ravage

    Correct. Good thing you're asking mate - I realize I can easily add the same workaround as the visual detection tweak to both the damage output and the damage EH. The "legacy" update isn't quite ready, but I reckon I'll try to push a tiny patch around next week-end with a few improvements I've made so far. 😉
  8. Your code won't do anything because you're not running it on any object : your mossRocks array is holding classnames, not objects. But before we dig into the syntax errors, you should know that you can't modify terrain objects; if the idea is to adjust the size of all those objects on the terrain, the process is going to be a bit more involved : - you'll need to detect all corresponding terrain object and hide them. And then spawn the same model with a random size - spawn them as simple objects to do so. - buuuuut, the sheer number of objects to keep in memory will most likely be enough to crash the game while attempting to save in SP, and/or cause many issues in MP.
  9. haleks

    Ravage

    @honger: To expand on what EO suggested : The spawn system looks for any "static" structure to generate spawn positions; that means that fences and street lights along main roads will tend to monopolize the potential spawns outside of urban areas. Ravage does have a backup method to spawn zeds in the absence of static structures, but since that's a rather generic reference, it doesn't even kick in most of the time... The spawn module does allow you to blacklist specific structures though, that could improve things in your situation. My Remnant mod has a more advanced and modular system, but I don't see any easy way to port it to Ravage without potentially breaking custom scenarios. 😕
  10. haleks

    Ravage

    Hello chaps, Here comes another update ! Ravage v1.0.5 * fixed script compilation error * added Entity Catalog to Infected Faction * fixed BT using obsolete scripted nodes * fixed infected being unable to sprint and attack at the same time * Infected can now jump over obstacles in their idle state * BT tweaks & optimization * The Request Climb scripted node now enters a FAIL state if climbing isn't needed * Infected no longer try to move to their target if they are close enough * Reduced leading movement time during chase sequence * fixed infected using an obsolete voice amplitude config * fixed obsolete keywords following recent Reforger updates * improved infected textures The mod is playable again, and the patch features several AI improvements & optimization. Note that infected audio needs further tweaks - sound occlusion doesn't seem to work properly, and audio levels need to be adjusted to work better with their amplitude config. Another thing to keep in mind, regarding zeds being able to climb in their idle state : the original plan was to limit that feature to low obstacles, but the current functions related to climbing don't seem to be 100% working right now... I was unable to obtain the data I'd need to distinguish between climbing and vaulting - at least not in a reasonable or optimized way; so that will need some adjustment too. Have fun guys !
  11. haleks

    Ravage

    I gotta say, even though I have no love for Reforger and its full on MP orientation, working with the workbench is always nice. The game breaking issues caused by the last updates were easy to fix, and I've already made some sensible improvements to the infected behavior. 🙂 Here's a preview of the next changelog : I'm considering lowering their sprint speed even more, now that they will happily try and grab their target while chasing it - previously they had to slow down a bit before they could attack, which made them easier to evade... I'm not sure how much of a threat they were in a solo/coop environment though, so any feedback is welcome in that regard. I'm going to take the time this week-end to rework their textures, fix some minor errors, and maybe adjust their audio configs; the update should be ready in a few days. \o/
  12. haleks

    Ravage

    @PolskiOski : Thanks for reporting! I'm working on a fix right now; beyond that error (already fixed on my dev build), that update broke the AI BT nodes... again. 😅 While I fix them, I'll probably tweak their behavior a bit more (their pathfinding needs improvements) - the next update should also feature improved textures for the infected. Sorry for reacting a bit late on this folks, RL work has kept me away from doing much modding lately. 😕
  13. I remember fixing a similar bug in Ravage - iirc, it was caused by negative damage values. You probably have a script running in your mission that heals the player, without a safeguard to make sure that damage doesn't go below 0.
  14. As far as I know, you can't modify actions defined in configs; the only way to do that would be to override the config (either in cfgActions or in the object's class config), and since this can't be done from the mission file, you'd need a custom mod just for that. 😕
×