FuDGE Papyrus Collections for easier Skyrim mod coding!

Опубликовано: 12 Октябрь 2024
на канале: Skyrim Scripting
1,345
36

In this episode, we take a tour of the collection types offered by the Fully Dynamic Game Engine. Seriously, there's no need to use Papyrus arrays again. Learn to use DymamicArray and HashMap and those two things alone will make your life so much easier ❤️

You can download the latest snapshots of the Fully Dynamic Game Engine in the #fully-dynamic-game-engine channel of the Elder Scrolls NG Discord -   / discord  

You can also discuss FuDGE with us on my Discord server in the #fully-dynamic-game-engine channel there   / discord  

tl;dr
DynamicArray list = DynamicArray.Create()
list.Append(Any.OfInt(69))

HashMap map = HashMap.Create()
map.Put(Any.OfInt(69), Any.OfInt(420))

See the video for how to iterate through elements of DynamicArrays and key/value pairs of HashMaps!