Skyrim Special Edition
0 of 0

File information

Last updated

Original upload

Created by

Meridiano

Uploaded by

MeridianoRus

Virus scan

Safe to use

Tags for this mod

About this mod

This mod will allow you to register new simplified console commands using Papyrus without SKSE64 plugin development.

Requirements
Permissions and credits
Changelogs
This mod will allow you to register new simplified console commands using Papyrus without SKSE64 plugin development.

For users:
- Install the main file.
- (Optional) Install the example addon, PO3 Papyrus Extender and ConsoleUtilSSE are both required.

Example addon functions included:
- Set perk points: SetPerkPoints <int> or SPP <int>
- Max XP for 18 or 1 skill(s): MaxSkills [<string> optional] or LearnSkills [<string> optional]
- Get currently selected actor combat style: GetCombatStyle or GetCS
- Show text notification: DebugNotification <string>
- Add 75 or only 1 achievement(s): AddAchievement [<int> optional] or WinRAR [<int> optional]
- Get FOV that was set via console or ini setting: GetBaseFOV
- Get reference plugin name and short ID: GetRefInfo or GetRI
- Run batch file with Disable and MarkForDelete: DeleteReference or DelRef or DEL
- Get outgoing and current weathers with transitions: WhatWeather

For authors:
- Make a "Start Game Enabled" quest > Player alias > Script extends ConsoleCommandsForEveryone > Fill AddonPluginName with "YourPluginName.extension"
- In both OnInit() and OnPlayerLoadGame() execute RegisterConsoleCommands()
- New JSON near YourPluginName.extension > YourPluginName.extension_CCFE.json
- Example structure is:

{
    "Data" :
    {
        "YourScriptEventNameA" : [ "ConsoleCommandA", "ConsoleCommandB", "ConsoleCommandC", ... ],
        "YourScriptEventNameB" : [ "ConsoleCommandD", "ConsoleCommandE", ... ]
    }
}


- "Data" is required. You can also use something like "Info" to tell users about your commands.
- Your event will receive full command in the string argument and number of command parts in the float argument.
- This means you will receive "DoStuff 13 37" and 3.0 if you use "DoStuff 13 37".
- Example addon is available as example.