Skip to content

Instantly share code, notes, and snippets.

View acidzebra's full-sized avatar

acidzebra acidzebra

View GitHub Profile
@acidzebra
acidzebra / nif_class_heirarchy.txt
Created June 22, 2023 08:07 — forked from Greatness7/nif_class_heirarchy.txt
nif_class_heirarchy.txt
# -*- coding: utf-8 -*-
┌· NiObject
├──┬· NiAccumulator
│ └──┬· NiClusterAccumulator
│ └───· NiAlphaAccumulator
├──┬· NiExtraData
│ ├───· BrickNiExtraData
@acidzebra
acidzebra / character.py
Created June 22, 2023 08:03 — forked from Greatness7/character.py
Create Character NIF
from pathlib import Path
from es3.utils.math import ID44
from es3 import nif
meshes_path = Path("C:/Users/Admin/Games/Morrowind/Data Files/Meshes/")
output_path = meshes_path / "g7/export.nif"
skins = {
"b/b_n_dark elf_m_skins.nif",
@acidzebra
acidzebra / drugwars.txt
Created March 8, 2023 12:52 — forked from mattmanning/drugwars.txt
Drugwars for the TI-82/83/83+ Calculators
Lbl G
ClrHome
Disp " J.M.'S DRUGWAR"," SIMULATION",""," VERSION 2.00",""," JUST SAY NO."
2000→Z
5000→Y
0→V
100→K
1→B
2→N
0→I
from Cozmo import *
triggerActions = {"AcknowledgeFaceInitPause" : cozmo.anim.Triggers.AcknowledgeFaceInitPause,
"AcknowledgeFaceNamed" : cozmo.anim.Triggers.AcknowledgeFaceNamed,
"AcknowledgeFaceUnnamed" : cozmo.anim.Triggers.AcknowledgeFaceUnnamed,
"AcknowledgeObject" : cozmo.anim.Triggers.AcknowledgeObject,
"AskToBeRightedLeft" : cozmo.anim.Triggers.AskToBeRightedLeft,
"AskToBeRightedRight" : cozmo.anim.Triggers.AskToBeRightedRight,
"BlockReact" : cozmo.anim.Triggers.BlockReact,
"BuildPyramidReactToBase" : cozmo.anim.Triggers.BuildPyramidReactToBase,
#!/usr/bin/env python3
# Copyright (c) 2016 Anki, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License in the file LICENSE.txt or at
#
# http://www.apache.org/licenses/LICENSE-2.0
#