SLExtendedEffects-SideLoader_ExtendedEffects icon

SideLoader ExtendedEffects

Adds a collection of custom SL_Effect behaviours for use with SideLoader.

Last updated a year ago
Total downloads 60458
Total rating 13 
Categories Libraries
Dependency string SLExtendedEffects-SideLoader_ExtendedEffects-1.2.4
Dependants 43 other packages depend on this package

This mod requires the following mods to function

sinai-dev-SideLoader-3.7.12 icon
sinai-dev-SideLoader

API and Mod Development Toolkit for Outward.

Preferred version: 3.7.12
BepInEx-BepInExPack_Outward-5.4.8 icon
BepInEx-BepInExPack_Outward

BepInEx pack for Outward.

Preferred version: 5.4.8

README

SideLoader Extended Effects v1.2.4

Adds a collection of custom SL_Effect behaviours and some other Utility/Helper classes for use with SideLoader & Outward.

Documentation is always the most up-to date version of what is available, if there's an update check there or the GitHub page to see whats new.

For example this library adds the SL_PlayAssetBundleVFX allowing you to spawn custom VFX Prefabs bundled in Unity.

I highly recommend you check the documentation for examples some of the new Effects added by Dan allow you to do things that are usually not possible within the Effects system framework.

For example applying a status to the player then checking with another SL_Condition if that status is on the player this allows you to generate an item on attack depending on status (and having succesfully hit a target in this case) without having to use a seperate skill to check that condition, as in the standard system conditions are evaluated once at the beginning only.

<SL_Effect xsi:type="SL_PlayAssetBundleVFX">
  <Delay>0</Delay>
  <SyncType>OwnerSync</SyncType>
  <OverrideCategory>None</OverrideCategory>
  <SLPackName>MySLPack</SLPackName>
  <AssetBundleName>MyAssetBundleName</AssetBundleName>
  <PrefabName>NameOfPrefabInAssetBundle</PrefabName>
  <PositionOffset>
      <x>0</x>
      <y>0</y>
      <z>0</z>
  </PositionOffset>
  <RotationOffset>
      <x>0</x>
      <y>0</y>
      <z>0</z>
  </RotationOffset>
  <ParentToAffected>true</ParentToAffected>
  <RotateToPlayerDirection>false</RotateToPlayerDirection>
  <LifeTime>0</LifeTime>
</SL_Effect>

Emo, Faeryn, Dan & Pysconius.

Thanks to Avrixel and AlienVsYourMom of the modding discord for continually testing things for me, half of these options wouldn't exist if it weren't for them.

ChangeLog