Page 1 of 1

Mote Nexus Manipulation

Posted: Thu Jul 27, 2023 9:19 am
by occulticOwl
Here are a couple of spells I have made for interacting with a Mote Nexus from Hexal, these are made to interact with each other to keep a clean, organized mote nexus and making accessing it easy.

I thank Miyu in the discord for helping me with the major parts of Nexus Retrieval & Nexus Deposition

Warning, These were made with singleplayer in mind, and will spam the chat if you are on a server,

Make sure you bind yourself to your mote nexus before attempting to cast any of these, as otherwise it will simply fail

This first one is called Recipient's Revelation, which will grab your Mote Nexus' current contents and reveal them in the chat to you

Code: Select all

{
    {
        //Gets every itemtype in the Nexus
        Stocktake Purification
        Flock's Disintegration
    }
    //Purifies the Nexus List into the motes and their amounts
    Stocktake Reflection
    Thoth's Gambit
}
//Add reveal to the end for trinkets & Focii to spit out the Nexus list to the chat
Reveal
The next one is called Nexus Retrieval, and uses the first one as a base for retrieving the contents of the nexus, and then dispenses the contents you specify in chat using x as the index, and y as the amount in the format displayed below. It will condense your currently existing record of the item for you, if it exists.
x, y

Code: Select all

#define Recipient's Revelation (WEST edew) = -> [Mote Nexus]

{
    //Macro to reveal whats in your Mote Nexus
    Recipient's Revelation
    {
        //purifies only the chat input and not the mote nexus with it
        Flock's Reflection
        Flock's Gambit
        Retrograde Purification
        Numerical Reflection: 0
        Selection Distillation
        Input Purification
    }
    // Grabs the chat input and finishes the purification
    Whisper Reflection
    Comma Reflection
    Spacing Reflection
    Concatenation Distillation
    Separation Distillation
    Thoth's Gambit
    Flock's Disintegration

    //Returns the Item indexed at the first number in chat and moves the stack around properly
    Rotation Gambit II
    Selection Distillation
    Jester's Gambit
    //Grabs the location of your feet and returns y amount of item x from your mote nexus to you
    Mind's Reflection
    Compass' Purification II
    Jester's Gambit
    //Return Item & return the new value of the nexus
    Return Item
    Recipient's Revelation
    Reveal
}
This third one is Nexus Deposition, and will deposit the item you are looking at into your nexus, and condense any current records of the item if they exist. This one also uses Recipient's revelation to reveal the newest contents of the nexus after the deposit

Code: Select all

#define Recipient's Revelation (WEST edew) = -> [Mote Nexus]
{
    //Gets the item entity you are looking at
    Mind's Reflection
    Compass' Purification
    Mind's Reflection
    Alidade's Purification
    Scout's Distillation
    //Creates a copy of the item on the stack and checks if it is in the nexus already
    Gemini Decomposition
    Sorter's Purification
    Stocktake Purification
    Gemini Decomposition
    Augur's Purification
    //If it is, mediafy it and merge it with the pre-existing mote
    {
        Numerical Reflection: 0
        Selection Distillation
        Jester's Gambit
        Mediafy Item
        Stacking Distillation
        Bookkeeper's Gambit: \/
    }
    //If it isn't, mediafy it on its own
    {
        Bookkeeper's Gambit: -\/
        Mediafy Item
        Bookkeeper's Gambit: \/
    }
    Augur's Exaltation
    Hermes' Gambit
    {
        Recipient's Revelation
    }
    Hermes' Gambit
    Reveal
}
This final one is a recharge spell based on stevebutnottoomany's Mediafied recharge, but has been modified to work with my nexus system
Nexus Recharge

Code: Select all

//This Hex assumes you already have Amethyst or charged amethyst in your nexus
{
    {
        //Embed an amethyst or charged amethyst here using Surgeons Exaltation, this will be used to retrieve the media from your nexus
        Itemtype: Amethyst
    }
    //Retrieves the mote for Amethyst and splits a stack off of it, then clears the old mote record from the stack
    Flock's Disintegration
    Stocktake Purification
    Flock's Disintegration
    Numerical Reflection: 64
    Splitting Gambit
    Bookkeeper's Gambit: \/-
    //Returns a stack of amethyst into the world where you are looking
    Mind's Reflection
    Compass' Purification
    Mind's Reflection
    Alidade's Purification
    Archer's Distillation
    Vector Reflection +Y
    Additive Distillation
    Return Item
    //Finds the amethyst using Zone Dstl. since it bounces when it returns, and then recharges the item in your offhand
    Mind's Reflection
    Compass' Purification
    Mind's Reflection
    Alidade's Purification
    Archer's Distillation
    Numerical Reflection: 2
    Zone Distillation: Item
    Flock's Disintegration
    Recharge Item
    //Checks for any remaining amethyst on the ground, and returns it to the system if there is
    Mind's Reflection
    Compass' Purification
    Mind's Reflection
    Alidade's Purification
    Archer's Distillation
    Numerical Reflection: 1
    Zone Distillation: Item
    Gemini Decomposition
    Augur's Purification
    {
       Flock's Disintegration
       Gemini Decomposition
       Sorter's Purification
       Stocktake Purification
       Flock's Disintegration
       Mediafy Item
    }
    {
        Charon's Gambit
    }
    Augur's Exaltation
    Hermes' Gambit
}