This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as alt from 'alt-shared'; | |
// Please understand this took quiet some time and effort. | |
// This took 3 different expirements to get the right workflow to assign all torsos. | |
// Some torsos don't take up full clothing, and expect an undershirt. | |
// This is about 92% accurate for all clothes, and 99% accurate for just clothing, no super hero suits. | |
// Check out Rebar. https://rebarv.com/ | |
// Created by Stuyk | |
const MaleTorsos = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"mp_m_sum2": { | |
"0": [ | |
"0_3_4", | |
"0_3_6", | |
"0_3_12", | |
"0_3_1", | |
"Male_freemode_mpLTS_3_0", | |
"Male_freemode_mpLTS_3_1", | |
"Male_freemode_Pilot_3_0", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"mp_m_sum2": { | |
"0": [ | |
"0_3_4", | |
"0_3_6", | |
"0_3_12", | |
"0_3_1" | |
], | |
"1": [ | |
"0_3_0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Female_Apt01": { | |
"clothes": { | |
"1": 1, | |
"4": 13, | |
"6": 6, | |
"7": 4, | |
"8": 4, | |
"9": 3, | |
"11": 26 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is incredibly stupid and you will never hit an address with a balance. | |
// Anyway, enjoy. | |
const bip39 = require("bip39"); | |
const { hdkey } = require("@ethereumjs/wallet"); | |
const { Web3 } = require("web3"); | |
const web3 = new Web3("RPC_ENDPOINT_GOES_HERE"); | |
const generateMnemonic = () => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extends Node2D | |
class_name MySingleton | |
var hello_world: String = "Hello World!"; | |
static var _instance: MySingleton; | |
static func instance() -> MySingleton: | |
if (!_instance): | |
_instance = MySingleton.new(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface ComponentData { | |
[component: number]: { | |
[drawable: number]: number; | |
}; | |
} | |
interface ClothingList { | |
clothing: { [dlc: number]: ComponentData }; | |
props: { [dlc: number]: ComponentData }; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const femaleClothes = { | |
clothes: { | |
'0': [ | |
{ | |
dlc: 0, | |
drawable: 0, | |
maxTextures: 1, | |
}, | |
{ | |
dlc: 0, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run These In Order... | |
wget https://github.com/prasmussen/gdrive/releases/download/2.1.1/gdrive_2.1.1_linux_386.tar.gz | |
tar -xvf gdrive_2.1.1_linux_386.tar.gz | |
chmod +x ./gdrive | |
./gdrive about |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as alt from 'alt'; | |
export const ITEM_TEMPLATES = { | |
almondseeds: { | |
name: 'Almond Seeds', | |
key: 'almondseeds', | |
base: 'seeds', | |
icon: 'seeds', | |
props: { | |
model: 'prop_veg_grass_02_a' |
NewerOlder