When you receive a Skill, what does it store as in the player? a stat or something else? If I wanted to check what was the skills my player has currently? How would I recall this information? if anyone has any information on this, I would appreciate it.

    21 days later

    Omegalight27 Apologies for the delay! The .skills syntax can be used to retrieve the skills for a character. The value returned will be a codex, with a key for each skill ID that the character currently possesses. As of now, the only data within the codex for each skill is its level, with more to come as the system is built out more.

    This script will retrieve the player's skills then loop through them and print out each skill ID:

    $skill_codex = player.skills;
    for $skill_id in $skill_codex do
       print($skill_id);
    end;

    Here's an example where I've given the player a skill and then printed their skills to the console:

    Let me know if there's any more information that I can provide around this!