Skip to content

Instantly share code, notes, and snippets.

View k0mp1ex's full-sized avatar
🏠
Working from home

k0mp1ex

🏠
Working from home
View GitHub Profile
@mrowrpurr
mrowrpurr / ! Read Papyrus Pex Docstring Comment.md
Last active January 2, 2023 23:52
Read Papyrus script docstring comment from .pex

Read Papyrus .pex Docstring Comment

Example Script

scriptName MyScript
{This is the text that we are looking for, right here.

Oh, and it can have newlines.}
@mrowrpurr
mrowrpurr / Papyrus for Programmers.md
Last active December 10, 2022 17:44
Papyrus for Programmers

Papyrus for Programmers

Notes for Skyrim Scripting episode

How does Scripting work in Skyrim and Creation Kit?

Example Scripts:

  • KillerItem (Object Reference)
  • Magic
@thennequin
thennequin / PieMenu.cpp
Last active May 26, 2024 18:12
PieMenuAdv
struct PieMenuContext
{
static const int c_iMaxPieMenuStack = 8;
static const int c_iMaxPieItemCount = 12;
static const int c_iRadiusEmpty = 30;
static const int c_iRadiusMin = 30;
static const int c_iMinItemCount = 3;
static const int c_iMinItemCountPerLevel = 3;
struct PieMenu