-
Notifications
You must be signed in to change notification settings - Fork 1
Credits & Contributors
CelestialAbyss edited this page May 20, 2023
·
6 revisions
We moved here! https://project-vyre.github.io/finality-wiki
Please check out Cjbeards, very awesome music! Cjbeards music is free use as mentioned here, but please check his channel on YouTube. I do not own any of his work or music.
- [menu1.ogg] Heart of the Wicked - Cjbeards {You may recognize this from FTB Legend of the Eyes.}
- [menu2.ogg] From the Shadows - Cjbeards
- [menu3.ogg] Cubeponk - Cjbeards & Fayr
- [menu4.ogg] Mirror Mirror (Instrumental) - Cjbeards
People developing the modpack:
- CelestialAbyss - Lead Dev
- Currently it is technically just me... It's also unfortunate to say that I might not be able to accomplish everything I wanted to with my modpack but I'll try to the best of my ability. Also, the modpack icon and animated black hole among other assets like the title and retextures are made by me using paint.NET or Blender or a combination of the two. The main menu animation took forever to render on my GTX 1660 Ti, even with the newest changes to the Cycles rendering engine so it might be a while before I try and tackle the suggestions that were said in the Create Discord server.
- Ryanite - Dev
- The multiplayer server administrator, also loves Create. Will take my place in case my living situation gets out of my control entirely.
- patchi
- Suggested the steeleaf tools to be used for Ars Nouveau's Tier 1 Spell Book. Sorry that the game didn't accept the items correctly.
As for people who helped me in the process of developing the modpack there's quite a few:
- squoshi
- Check out their modpack Magna here: https://www.curseforge.com/minecraft/modpacks/magna
- A personal note to squoshi: You'll probably never see this but sorry for annoying you (if I did)
- Reveter
- Thank you for providing the following script when KubeJS wasn't respecting NBT tags of Patchouli books:
onEvent('item.tooltip', event => {
event.addAdvanced('patchouli:guide_book', ((item, advanced, text) => {
if (!item.hasNBT()) return;
if (item.nbt['patchouli:book'] == 'patchouli:tome_of_finality') {
text.add(Component.lightPurple("Hi! Please craft this book, it's important. - Overseers of Finality"))
}
}))
})