Jump to content

GravitonGamer

Members
  • Posts

    27
  • Joined

  • Last visited

Posts posted by GravitonGamer

  1. They literally just added an easy way to do this.

     

    https://forums.obsidian.net/topic/107923-tutorial-adding-new-abilities-to-a-class-v410/

     

    Copy the progression table entries for the imbue abilities, but change the subclass condition to Gunhawk. Then add the copies to the ranger progression table by following the instructions in the mod's post above.

    • Like 1
  2. Wow, finally! Now maybe I can go back to my subclass mods. Progression table updating has been a major drag that's why I've been lazy updating them. Thanks for this update!

     

    Now if there is a way for us to override existing progression table entries (for example, I have a subclass that disables soul whip so I have to modify the conditions of soul whip) that would be even more awesome.

  3. I tried to upload my mods to Steam today by following this guide, but on the steam page of my mods, there is no title and description, and it says the file size is 0.

     

    Also, I can't seem to upload multiple mods in one session. I have to restart my PoE2 to upload another mod, which also gets the same results as above.

     

    Any advice on what I could have done wrong?

  4. Thanks for the update! Seems like we can finally make our own custom classes now with our own icons!

     

    I have a suggestion for Magran's Fires mode. If it isn't too much dev effort, is it possible to only disable overriding specific game data objects instead of disabling all mods? I'm thinking some players want to play with their UI/appearance mods. (Or like me, with my custom AI conditionals mod.) This would still prevent cheating by overriding the stats of spells/items/etc but won't force players to part with their favorite mods.

    • Like 1
  5. Twilight Druid. Lose shapeshift and Elemental spells, gain +2 power level towards Rot spells and generate a small aoe pulse of healing over time each time your Decay spell kills something. 

    Fluff wise, it's a druid that focuses on the very instant of death, so it can be fully optimized for rebirth and nothing is wasted. 

     

    EDIT:

    A few variants:

    a) replace Shapeshift with "Rebirth at Sunrise" and "Death At Sunset"  abilities. Death At Sunset is a passive buffing your Decay spells; Rebirth at Sunrise gets charged by killing stuff with Decay spells and allows you to create a Moonwell-like effect of healing.

    b) Perhaps instead of flatly buffing Rot spells power level, "Death At Sunset" should make these spells attack Will if it is a weaker save, akin to that Barbarian perk that changes deflection to Fort when attacking with weapons.

    c) Perhaps Twilight Druid should some mechanic around health levels - the closer target is to death, the more powerful Decay and Rejuvenation spells become. 

     

    Why? Because I love Druid as a full caster, don't really care about Spiritshifting, and absolutely adore the Decay theme for a druid. 

     

    I like your idea and I was trying to do something similar, but the way game is coded, Druids HAVE to pick a spiritshift form during character creation. Even if you disable Spiritshift, it's awkward to be forced to choose a spiritshift form during character creation and be unable to use it.

  6. I've already made a couple of subclasses in case you guys don't know yet:

     

    Channeler (Pure Caster Cipher)

    https://www.nexusmods.com/pillarsofeternity2/mods/98

     

    Martialist (Melee Wizard)
    Demolitionist (AoE Wizard)

    Spellslinger (Long Range Wizard)

    Hexer (Debuff/Pet Wizard)

    https://www.nexusmods.com/pillarsofeternity2/mods/135

     

    I'm currently working on:

    Defiler (Decay/Poison Druid)

    - Apply poison to enemies while Spiritshifted

    - Deal bonus damage to enemies with decay or poison effects

    - Bonus spells:

    1. Breath of Treason
    2. Fetid Caress
    3. Noxious Burst
    4. Corpse Explosion
    5. Malignant Cloud
    6. Summon Dank Spore
    7. Boiling Flesh
    8. Wilting Wind
    9. Corrosive Skin
    - Can't cast Elemental spells
     

    Future plans:

    Scion (Summoned Weapon/Pet Fighter)

    • Like 2
  7. I made a mod with 4 new wizard subclasses (that don't have any school lock-outs), each focusing on a different playstyle. You can find the details in the mod page: https://www.nexusmods.com/pillarsofeternity2/mods/135

     

    I would love to hear feedback from you guys about the subclass design/balance as I didn't have a lot of time to playtest all of them. Also, I need advice form modders/devs why some of the abilities don't seem to work as expected, such as:

     

    - Chill Fog AoE doesn't seem to be affected by the AoE Multiplier status effect

    - Cast speed reduction seems to have diminishing returns? Seems like the bonus reduction isn't as effective as the numbers suggest

    - Beneficial status effect duration multiplier doesn't seem to work when I set it to apply to say, Enchanting keyword abilities

    • Like 2
  8. Thanks for this. As a modder, this is exactly what I needed to know. Good job with all the changes! Even though I have to fix some of my mods, these changes will make any future modding much faster.

     

    I just want to ask though, for the textures, where can we find the recommended image dimensions for each texture type? There aren't any examples in the exported folder last time I checked.

  9.  

    In the documentation, I noticed that some functions are using Guid like:

    Boolean IsClassAccruedResourceCount(Guid, Guid, Operator, Int32)
    

    But previously, I have seen the same function being used as:

    Boolean IsClassAccruedResourceCount(Guid, CharacterClass, Operator, Int32)
    

    Which makes me want to ask: When can we use enums to replace guids? (If it is still supported.)

    Enums and Guids aren't interchangeable - enums are represented as strings in all data (e.g. "Wizard"), while Guids are guids.  The reason you've seen the different signatures is that this function was recently changed to expect the Guid of the CharacterClassGameData object of the class you want to check rather than the enum name.  The old signature  Boolean IsClassAccruedResourceCount(Guid, CharacterClass, Operator, Int32) will not work anymore. This change is happening globally in 1.2.0 to make it possible to create new classes in mods.

     

    Thanks! That's exactly what I needed to know! I already updated my mods to use Guids instead.

×
×
  • Create New...