
GravitonGamer
Members-
Posts
27 -
Joined
-
Last visited
Content Type
Profiles
Forums
Blogs
Everything posted by GravitonGamer
-
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.
- 1 reply
-
- 1
-
-
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.
-
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?
-
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.
-
I made a pure caster cipher subclass mod if you're interested. I play a Hierophant with it myself. https://www.nexusmods.com/pillarsofeternity2/mods/98
-
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.
-
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)
-
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
-
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.
-
[BUG 1.2] Impossible to set up Custom AI Behaviours
GravitonGamer replied to Loub's question in Patch Beta Bugs and Support
Yes this happens to me a lot too. At first I thought it was one of my mods but after removing them all it still happens. Ususally what I do is I just quit to main menu then load the save again. This usually works until I encounter the issue again. -
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.
-
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.)