Jump to content

Grape_You_In_The_Mouth

Members
  • Posts

    234
  • Joined

  • Last visited

Everything posted by Grape_You_In_The_Mouth

  1. I was talking about the very first post pinned on this forum. The very first post you see on this forum. It's labeled tutorial.
  2. 1. Install visual studio code 2. Configure the settings to recognize .gamedatabundle files as json format as shown on the tutorial 3. Copy an existing mod - atlas folder is for icons, design folder is for code, localized folder is for names and descriptions for your code 4. Make the ability in Visual Studio. The game data sequence is Ability or Item --> Attacks --> StatusEffects. Those link from one to the other 5. Before you start, you'll want to open up a browser with one tab for the random guid generator website, one tab for the Obsidian enumeration documentation (Concepts documentation), and one tab on the Fextralife abilities list. GUIDs are the unique identifiers for a code section, used for linking together and referencing them. 6. Create a text file for the text strings you're going to make to name and describe the ability, item, statuseffect. All of these will have names so you'll need to keep a running list of the text string number you give it. Make it a big number so other people don't choose the same one, then each new number is 1+ the previous number 7. It's extremely helpful to have a textfile of helpful guids, such as keywords, animation times, class IDs, tick rates, etc. 8. Copy the exported folder in your game file and look at the copies for reference. Look at similar abilities and statuses and use those as a base for your new ability. 9. Create a ring that gives you the ability so you can just use the console command giveitem ring_name and then put the ring on you, and test it faster that way to see if it works. Visual effects are a pain. If the game won't load because of spinning gears on the main menu, you screwed up your localization text strings. 10. Icons are created using the Sprite Sheet Packer in the tutorial. Just make one big sprite sheet and don't worry about other folders with the same name as your sprite sheet. It's all loaded. The icon location is ...../abilities/icon_name.png 11. Use the Append method in the tutorial to add the ability to the ability tree. Subclasses use special Conditional code that you have to copy and use. All of the base code is in the pt_progressiontables file 12. Your first ability might take 40 hours. If you keep doing it and make nice text files to help you reference easier, you can make an ability as fast as 30 minutes without testing it.
  3. I couldn't figure out how to copy a spell effect from the vfx bundle and create a new record, or even alter an existing one. Has anyone discovered anything? It would be killer to be able to change vfx so they can scale, loop, or create copies with a different color.
  4. Pro-Tip: +OnMovementEnd sometimes "doesn't work" because it triggers automatically an extra time, immediately when you don't want it to! - So if you have it cancel on the 2nd time, via MaxTriggerCount: 2, RemoveEffectAtMax: True, then it works as intended - I can't tell when exactly it triggers, but apparently at the end of casting, and at rest. Maybe the beginning of the current action.
  5. Pro-Tip: Multiple StatusEffects that do the same thing but for different reasons? --> "StackingRuleOverride": "Always" in the ability section • or only the highest DamageMultiple bonus will take effect, for example
  6. the characters.gamedatabundle links to the PT_Serafen table 4d20749f-17b8-4ddf-9517-e5396172c99a But he has more tables in the progressiontables.gamedatabundle, so you'd have to see how each of these might interact. Does all of his PT_Serafen abilities exist with other abilities if you choose a multiclass? I don't know. Are his tables special or do they only have the same abilities as everyone else? PT_Serafen certainly has different abilities but I'm not sure about the rest of them. It looks like you'd just have to replace the PT_Serafen_Barbarian table but that's from my cursory view. It would be an easy copy+paste job, I think. Usually all of the PT tables are independent of each other, so there is a new one for each variant. Alternatively you could use the append method to add the subclass abilities to his tables but that would be more difficult because subclasses have different versions of abilities already on those tables.
  7. If you want to preserve the length of the stacks then you add a Trigger to increase the duration by 10 on kill, and each stack's duration will increase by 10 each kill.
  8. Doesn't my Fervor effect on Barbarian do this? Whenever I attack, +5% attack speed for 30 secs, stacks each time, each stack dies in 30 second layers, but X stacks = +5x% attack speed. Instead you do it based on kill, no?
  9. There are a few simple reasons these issues may be happening, but you probably didn't code them wrong so I don't know if they would be applicable. If you chose to hide it from the gui or if it's an effect from multiple layers of linked effects, then it won't show up. If the effect isn't applied directly from a hit, but from linked effects connected to it, then it might not show in the combat log.
  10. Someone said (maybe it was Fhav) that the new Unity Asset Bundle Extractor doesn't have the bug limiting creation of new content. This is my big hope that we can finally get new spell graphics by tinting them as you are trying to do.
  11. God praise this man. You should get a tutorial going for how to copy vfx, recolor it and add it as a new vfx! This would be huge for this eternal game.
  12. There are older threads about this by the guy who did the Tint God mod. I think his name was Fhav69x or something like that. Amazing info but didn't he didn't explicitly say how to create and add a new asset to the graphics. He only changed an existing one.
  13. If you edit it to say loop: true like other effects then you'll see what happens. Either it works, it works abnormally, or it doesn't work at all. You'd have to change the asset data (and possibly graphics) via the UABE to make it enable looping, but I have no idea how to do that other than the flashes of brilliance provided to this forum by Flavh69X (I can't recall if that's his correct username).
  14. I've made tutorials on how to change abilities, but the bad news is that there is no status for invisible. You'd have to add a custom keyword named "Invisible" or something and add it to each status effect that creates the invisibility effect (which usually is a material replacement effect). Then you'd make a passive ability that is activated while the character has that status effect, or has that keyword, and deactivated when the reverse is true. That would be done via a "conditional" which is done similarly in many other abilities.
  15. all abilities will be in the abilities.gamedatabundle Adding a new ability would be done by adding it to the progression table for that base class, which is in the progressiontable.gamedatabundle. Look for "pt_fighter" or "pt_rogue" or whatever Cheers, Grape
  16. When the world needs a true detective, who do they call? A N D R E A
  17. Nice. Take anything you want! Although I must say that my Counterattack on Fighter doesn't seem to happen at anything near the effect's percentage rate (30%, feels like 3%!).
  18. Just curious what you fellow modders are doing! It's too quiet in here so it's time to turn up the Tune Squad:
  19. Pro-Tip: The most useful tick rate is 0.33 seconds, but it only applies on movement. You can easily create your own by copying the code and adding it to your mod, and disabling the interval's movement trigger option. You can set the tick rate to be whatever you want!
  20. Pro-Tip: When things ain't stacking on stacks of stacking things, try the rare setting of "StackedChildrenApplyEffects": "true" . I'm not sure if it's really the reason for success, but In my Fireform attack, a stacking ApplyOnTick ApplyStatusEffectOnEvent applying a stacking DamageMult wasn't stacking the DoT applications, it was only applying at the interval rate, until StackedChildrenApplyEffects "true". It also appears you can just have multiple ApplyStatusEffectOnEvent with the event OnInterval.
  21. Pro-Tip: You saw what they did with BonusHealMult and thought you could make a BonusHealingGivenMult work with a specific ability via keywords in the attack filter but you won't, because you didn't, because you can't.
  22. Pro-Tip: There is no effing way to make bounces hit allies multiple times
  23. Pro-Tip: The projectile animation itself is configured to bounce off of walls. If it didn't bounce before, and you try to make it bounce off walls, it will just go out and effect no one.
×
×
  • Create New...