PNJ & Creatures

This commit is contained in:
LeRatierBretonnien 2024-03-02 23:58:27 +01:00
parent ed2dc58680
commit 0a030460e4
109 changed files with 1047 additions and 228 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 380 KiB

View File

@ -2,7 +2,7 @@
"TYPES": {
"Actor": {
"personnage": "Personnage",
"PNJ": "PNJ"
"creature": "Créature"
},
"Item": {
"arme": "Arme",
@ -21,7 +21,8 @@
"metier": "Métier",
"runeeffect": "Effet de Rune",
"bouclier": "Bouclier",
"modifier": "Modificateur"
"modifier": "Modificateur",
"traitespece": "Trait d'Espèce"
}
}
}

View File

@ -49,6 +49,7 @@ export class MournbladeActorSheet extends ActorSheet {
tendances:duplicate(this.actor.getTendances()),
runes:duplicate(this.actor.getRunes()),
traitsChaotiques:duplicate(this.actor.getTraitsChaotiques()),
traitsEspeces: duplicate(this.actor.getTraitsEspeces()),
origine: duplicate(this.actor.getOrigine() || {}),
heritage: duplicate(this.actor.getHeritage() || {}),
metier: duplicate(this.actor.getMetier() || {}),
@ -134,6 +135,12 @@ export class MournbladeActorSheet extends ActorSheet {
let armeId = li.data("item-id")
this.actor.rollArmeOffensif(armeId)
})
html.find('.roll-arme-special').click((event) => {
const li = $(event.currentTarget).parents(".item")
let armeId = li.data("item-id")
this.actor.rollArmeSpecial(armeId)
})
html.find('.roll-arme-degats').click((event) => {
const li = $(event.currentTarget).parents(".item")
let armeId = li.data("item-id")

View File

@ -41,9 +41,14 @@ export class MournbladeActor extends Actor {
const skills = await MournbladeUtility.loadCompendium("fvtt-mournblade.skills")
data.items = skills.map(i => i.toObject())
}
if (data.type == 'pnj') {
if (data.type == 'creature') {
const skills = await MournbladeUtility.loadCompendium("fvtt-mournblade.skills-creatures")
data.items = skills.map(i => i.toObject())
data.items.push({ name: "Arme naturelle 1", type: 'arme', img: "systems/fvtt-mournblade/assets/icons/arme.webp", system: { typearme: "contact", bonusmaniementoff: 0, seuildefense: 0, degats: "0" } })
data.items.push({ name: "Arme naturelle 2", type: 'arme', img: "systems/fvtt-mournblade/assets/icons/arme.webp", system: { typearme: "contact", bonusmaniementoff: 0, seuildefense: 0, degats: "0" } })
}
return super.create(data, options);
}
@ -146,6 +151,9 @@ export class MournbladeActor extends Actor {
getTraitsChaotiques() {
return this.getItemSorted(["traitchaotique"])
}
getTraitsEspeces() {
return this.getItemSorted(["traitespece"])
}
getMonnaies() {
return this.getItemSorted(["monnaie"])
}
@ -432,6 +440,9 @@ export class MournbladeActor extends Actor {
/* -------------------------------------------- */
getBonusDegats() {
if (this.type == "creature") {
return 0
}
return __degatsBonus[this.system.attributs.pui.value]
}
@ -513,6 +524,23 @@ export class MournbladeActor extends Actor {
}
return bestArme
}
/* -------------------------------------------- */
depenseRessources(arme) {
if (arme.system.nbressources && Number(arme.system.nbressources) > 0) {
if (this.type == "creature") {
let ressources = duplicate(this.system.ressources)
ressources.value -= arme.system.nbressources
this.update({ 'system.ressources': ressources })
ChatMessage.create({
content: "L'utilisation de la capacité/arme a dépensé " + arme.system.nbressources + " ressources.",
whisper: game.user._id,
user: game.user._id
});
} else {
ui.notifications.warn("Les ressources ne sont pas disponibles pour les personnages.")
}
}
}
/* -------------------------------------------- */
getCommonRollData(attrKey = undefined, compId = undefined, compName = undefined) {
@ -601,10 +629,22 @@ export class MournbladeActor extends Actor {
rollData.selectDifficulte = false
}
console.log("ARME!", rollData)
this.depenseRessources(arme)
let rollDialog = await MournbladeRollDialog.create(this, rollData)
rollDialog.render(true)
}
/* -------------------------------------------- */
async rollArmeSpecial(armeId) {
let arme = this.items.get(armeId)
if (arme) {
MournbladeUtility.createChatWithRollMode("GM", {
content: await renderTemplate(`systems/fvtt-mournblade/templates/chat-display-description.html`, arme)
}, arme)
this.depenseRessources(arme)
}
}
/* -------------------------------------------- */
async rollArmeDegats(armeId) {
let arme = this.items.get(armeId)

View File

@ -0,0 +1,25 @@
/**
* Extend the basic ActorSheet with some very simple modifications
* @extends {ActorSheet}
*/
import { MournbladeActorSheet } from "./mournblade-actor-sheet.js";
import { MournbladeUtility } from "./mournblade-utility.js";
/* -------------------------------------------- */
export class MournbladeCreatureSheet extends MournbladeActorSheet {
/** @override */
static get defaultOptions() {
return mergeObject(super.defaultOptions, {
classes: ["fvtt-mournblade", "sheet", "actor"],
template: "systems/fvtt-mournblade/templates/creature-sheet.html",
width: 640,
height: 720,
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "stats" }],
dragDrop: [{ dragSelector: ".item-list .item", dropSelector: null }],
editScore: false
})
}
}

View File

@ -14,6 +14,7 @@ export const defaultItemImg = {
runeeffect: "systems/fvtt-mournblade/assets/icons/rune.webp",
tendance: "systems/fvtt-mournblade/assets/icons/tendance.webp",
traitchaotique: "systems/fvtt-mournblade/assets/icons/traitchaotique.webp",
traitespece: "systems/fvtt-mournblade/assets/icons/capacite.webp"
}
/**

View File

@ -11,12 +11,11 @@
import { MournbladeActor } from "./mournblade-actor.js";
import { MournbladeItemSheet } from "./mournblade-item-sheet.js";
import { MournbladeActorSheet } from "./mournblade-actor-sheet.js";
//import { MournbladeNPCSheet } from "./mournblade-npc-sheet.js";
import { MournbladeCreatureSheet } from "./mournblade-creature-sheet.js";
import { MournbladeUtility } from "./mournblade-utility.js";
import { MournbladeCombat } from "./mournblade-combat.js";
import { MournbladeItem } from "./mournblade-item.js";
import { MOURNBLADE_CONFIG } from "./mournblade-config.js";
import { ClassCounter} from "https://www.uberwald.me/fvtt_appcount/count-class-ready.js"
/* -------------------------------------------- */
/* Foundry VTT Initialization */
@ -55,7 +54,7 @@ Hooks.once("init", async function () {
// Register sheet application classes
Actors.unregisterSheet("core", ActorSheet);
Actors.registerSheet("fvtt-mournblade", MournbladeActorSheet, { types: ["personnage"], makeDefault: true })
//Actors.registerSheet("fvtt-mournblade", MournbladeNPCSheet, { types: ["npc"], makeDefault: false });
Actors.registerSheet("fvtt-mournblade", MournbladeCreatureSheet, { types: ["creature"], makeDefault: true })
Items.unregisterSheet("core", ItemSheet);
Items.registerSheet("fvtt-mournblade", MournbladeItemSheet, { makeDefault: true })
@ -77,6 +76,17 @@ function welcomeMessage() {
` });
}
/* -------------------------------------------- */
async function importDefaultScene() {
let exists = game.scenes.find(j => j.name == "Accueil");
if (!exists) {
const scenes = await MournbladeUtility.loadCompendium("fvtt-mournblade.scenes")
let newDocuments = scenes.filter(i => i.name == "Accueil");
await game.scenes.documentClass.create(newDocuments);
game.scenes.find(i => i.name == "Accueil").activate();
}
}
/* -------------------------------------------- */
/* Foundry VTT Initialization */
/* -------------------------------------------- */
@ -91,8 +101,22 @@ Hooks.once("ready", function () {
user: game.user._id
});
}
if (!game.user.isGM && game.user.character && !game.user.character.prototypeToken.actorLink) {
ui.notifications.info("Le token de du joueur n'est pas connecté à l'acteur !");
ChatMessage.create({
content: "<b>ATTENTION</b> Le token du joueur " + game.user.name + " n'est pas connecté à l'acteur !",
user: game.user._id
});
}
ClassCounter.registerUsageCount();
import("https://www.uberwald.me/fvtt_appcount/count-class-ready.js").then(moduleCounter=>{
console.log("ClassCounter loaded", moduleCounter)
moduleCounter.ClassCounter.registerUsageCount()
}).catch(err=>
console.log("No stats available, giving up.")
)
importDefaultScene();
welcomeMessage();
});

View File

@ -181,7 +181,8 @@ export class MournbladeUtility {
const templatePaths = [
'systems/fvtt-mournblade/templates/editor-notes-gm.html',
'systems/fvtt-mournblade/templates/partial-item-description.html',
'systems/fvtt-mournblade/templates/partial-list-niveau.html'
'systems/fvtt-mournblade/templates/partial-list-niveau.html',
'systems/fvtt-mournblade/templates/partial-list-niveau-creature.html'
]
return loadTemplates(templatePaths);
}
@ -532,6 +533,9 @@ export class MournbladeUtility {
let degats = rollData.finalResult
let type = (rollData.arme.system.nonletaux) ? "nonletaux" : "letaux"
if (rollData.arme.system.ignorearmure) {
rollData.ignoreDefenseArmor = true
}
defender.incDecSante(type, +degats, rollData.ignoreDefenseArmor)
ui.notifications.info(defender.name + "a subi " + degats + " points de santé " + type + ".")
}

Binary file not shown.

BIN
packs/armes/000090.ldb Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000082
MANIFEST-000149

View File

@ -1,8 +1,8 @@
2023/12/29-18:08:02.895542 7ff8897fa6c0 Recovering log #80
2023/12/29-18:08:02.906834 7ff8897fa6c0 Delete type=3 #78
2023/12/29-18:08:02.906922 7ff8897fa6c0 Delete type=0 #80
2023/12/29-18:35:10.992944 7ff888ff96c0 Level-0 table #85: started
2023/12/29-18:35:10.992987 7ff888ff96c0 Level-0 table #85: 0 bytes OK
2023/12/29-18:35:11.000315 7ff888ff96c0 Delete type=0 #83
2023/12/29-18:35:11.000621 7ff888ff96c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2023/12/29-18:35:11.000680 7ff888ff96c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2024/03/02-23:57:42.526498 7f74df4006c0 Recovering log #147
2024/03/02-23:57:42.536661 7f74df4006c0 Delete type=3 #145
2024/03/02-23:57:42.536714 7f74df4006c0 Delete type=0 #147
2024/03/02-23:57:56.281201 7f74dda006c0 Level-0 table #152: started
2024/03/02-23:57:56.281223 7f74dda006c0 Level-0 table #152: 0 bytes OK
2024/03/02-23:57:56.287599 7f74dda006c0 Delete type=0 #150
2024/03/02-23:57:56.287862 7f74dda006c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2024/03/02-23:57:56.287903 7f74dda006c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/12/29-18:01:15.193477 7ff88affd6c0 Recovering log #76
2023/12/29-18:01:15.204268 7ff88affd6c0 Delete type=3 #74
2023/12/29-18:01:15.204515 7ff88affd6c0 Delete type=0 #76
2023/12/29-18:06:09.125188 7ff888ff96c0 Level-0 table #81: started
2023/12/29-18:06:09.125260 7ff888ff96c0 Level-0 table #81: 0 bytes OK
2023/12/29-18:06:09.131577 7ff888ff96c0 Delete type=0 #79
2023/12/29-18:06:09.138438 7ff888ff96c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2023/12/29-18:06:09.138539 7ff888ff96c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2024/03/02-23:56:59.186271 7f74dfe006c0 Recovering log #143
2024/03/02-23:56:59.241028 7f74dfe006c0 Delete type=3 #141
2024/03/02-23:56:59.241158 7f74dfe006c0 Delete type=0 #143
2024/03/02-23:57:31.484234 7f74dda006c0 Level-0 table #148: started
2024/03/02-23:57:31.484262 7f74dda006c0 Level-0 table #148: 0 bytes OK
2024/03/02-23:57:31.491281 7f74dda006c0 Delete type=0 #146
2024/03/02-23:57:31.497473 7f74dda006c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2024/03/02-23:57:31.497513 7f74dda006c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/armes/MANIFEST-000149 Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000082
MANIFEST-000148

View File

@ -1,8 +1,8 @@
2023/12/29-18:08:02.938259 7ff88a7fc6c0 Recovering log #80
2023/12/29-18:08:02.948723 7ff88a7fc6c0 Delete type=3 #78
2023/12/29-18:08:02.948819 7ff88a7fc6c0 Delete type=0 #80
2023/12/29-18:35:11.014647 7ff888ff96c0 Level-0 table #85: started
2023/12/29-18:35:11.014703 7ff888ff96c0 Level-0 table #85: 0 bytes OK
2023/12/29-18:35:11.021128 7ff888ff96c0 Delete type=0 #83
2023/12/29-18:35:11.027714 7ff888ff96c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
2023/12/29-18:35:11.027775 7ff888ff96c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
2024/03/02-23:57:42.563649 7f74e4c006c0 Recovering log #146
2024/03/02-23:57:42.574178 7f74e4c006c0 Delete type=3 #144
2024/03/02-23:57:42.574278 7f74e4c006c0 Delete type=0 #146
2024/03/02-23:57:56.288017 7f74dda006c0 Level-0 table #151: started
2024/03/02-23:57:56.288073 7f74dda006c0 Level-0 table #151: 0 bytes OK
2024/03/02-23:57:56.294465 7f74dda006c0 Delete type=0 #149
2024/03/02-23:57:56.314039 7f74dda006c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
2024/03/02-23:57:56.314072 7f74dda006c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/12/29-18:01:15.233956 7ff8897fa6c0 Recovering log #76
2023/12/29-18:01:15.244628 7ff8897fa6c0 Delete type=3 #74
2023/12/29-18:01:15.244714 7ff8897fa6c0 Delete type=0 #76
2023/12/29-18:06:09.152915 7ff888ff96c0 Level-0 table #81: started
2023/12/29-18:06:09.152950 7ff888ff96c0 Level-0 table #81: 0 bytes OK
2023/12/29-18:06:09.160381 7ff888ff96c0 Delete type=0 #79
2023/12/29-18:06:09.166827 7ff888ff96c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
2023/12/29-18:06:09.166900 7ff888ff96c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
2024/03/02-23:56:59.375192 7f74dea006c0 Recovering log #142
2024/03/02-23:56:59.429489 7f74dea006c0 Delete type=3 #140
2024/03/02-23:56:59.429674 7f74dea006c0 Delete type=0 #142
2024/03/02-23:57:31.510659 7f74dda006c0 Level-0 table #147: started
2024/03/02-23:57:31.510687 7f74dda006c0 Level-0 table #147: 0 bytes OK
2024/03/02-23:57:31.516967 7f74dda006c0 Delete type=0 #145
2024/03/02-23:57:31.531943 7f74dda006c0 Manual compaction at level-0 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)
2024/03/02-23:57:31.532000 7f74dda006c0 Manual compaction at level-1 from '!items!5dGXNiL3WN4cAk7X' @ 72057594037927935 : 1 .. '!items!zzz9JrtWjELdoAfK' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/dons/MANIFEST-000148 Normal file

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000082
MANIFEST-000148

View File

@ -1,8 +1,8 @@
2023/12/29-18:08:02.922917 7ff889ffb6c0 Recovering log #80
2023/12/29-18:08:02.933943 7ff889ffb6c0 Delete type=3 #78
2023/12/29-18:08:02.934135 7ff889ffb6c0 Delete type=0 #80
2023/12/29-18:35:11.021264 7ff888ff96c0 Level-0 table #85: started
2023/12/29-18:35:11.021301 7ff888ff96c0 Level-0 table #85: 0 bytes OK
2023/12/29-18:35:11.027524 7ff888ff96c0 Delete type=0 #83
2023/12/29-18:35:11.027727 7ff888ff96c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2023/12/29-18:35:11.027763 7ff888ff96c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2024/03/02-23:57:42.550684 7f74df4006c0 Recovering log #146
2024/03/02-23:57:42.561298 7f74df4006c0 Delete type=3 #144
2024/03/02-23:57:42.561347 7f74df4006c0 Delete type=0 #146
2024/03/02-23:57:56.307780 7f74dda006c0 Level-0 table #151: started
2024/03/02-23:57:56.307800 7f74dda006c0 Level-0 table #151: 0 bytes OK
2024/03/02-23:57:56.313952 7f74dda006c0 Delete type=0 #149
2024/03/02-23:57:56.314079 7f74dda006c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2024/03/02-23:57:56.314098 7f74dda006c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/12/29-18:01:15.220038 7ff88a7fc6c0 Recovering log #76
2023/12/29-18:01:15.230568 7ff88a7fc6c0 Delete type=3 #74
2023/12/29-18:01:15.230651 7ff88a7fc6c0 Delete type=0 #76
2023/12/29-18:06:09.146122 7ff888ff96c0 Level-0 table #81: started
2023/12/29-18:06:09.146158 7ff888ff96c0 Level-0 table #81: 0 bytes OK
2023/12/29-18:06:09.152621 7ff888ff96c0 Delete type=0 #79
2023/12/29-18:06:09.166813 7ff888ff96c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2023/12/29-18:06:09.166865 7ff888ff96c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2024/03/02-23:56:59.299928 7f74dfe006c0 Recovering log #142
2024/03/02-23:56:59.370332 7f74dfe006c0 Delete type=3 #140
2024/03/02-23:56:59.370514 7f74dfe006c0 Delete type=0 #142
2024/03/02-23:57:31.503940 7f74dda006c0 Level-0 table #147: started
2024/03/02-23:57:31.503969 7f74dda006c0 Level-0 table #147: 0 bytes OK
2024/03/02-23:57:31.510531 7f74dda006c0 Delete type=0 #145
2024/03/02-23:57:31.531927 7f74dda006c0 Manual compaction at level-0 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2024/03/02-23:57:31.531985 7f74dda006c0 Manual compaction at level-1 from '!items!1cZd2hlTV9tykDED' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000082
MANIFEST-000148

View File

@ -1,8 +1,8 @@
2023/12/29-18:08:02.964468 7ff88affd6c0 Recovering log #80
2023/12/29-18:08:02.975075 7ff88affd6c0 Delete type=3 #78
2023/12/29-18:08:02.975188 7ff88affd6c0 Delete type=0 #80
2023/12/29-18:35:11.027877 7ff888ff96c0 Level-0 table #85: started
2023/12/29-18:35:11.027953 7ff888ff96c0 Level-0 table #85: 0 bytes OK
2023/12/29-18:35:11.035219 7ff888ff96c0 Delete type=0 #83
2023/12/29-18:35:11.056301 7ff888ff96c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
2023/12/29-18:35:11.056344 7ff888ff96c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
2024/03/02-23:57:42.588257 7f74e4c006c0 Recovering log #146
2024/03/02-23:57:42.598189 7f74e4c006c0 Delete type=3 #144
2024/03/02-23:57:42.598290 7f74e4c006c0 Delete type=0 #146
2024/03/02-23:57:56.300746 7f74dda006c0 Level-0 table #151: started
2024/03/02-23:57:56.300764 7f74dda006c0 Level-0 table #151: 0 bytes OK
2024/03/02-23:57:56.307700 7f74dda006c0 Delete type=0 #149
2024/03/02-23:57:56.314059 7f74dda006c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
2024/03/02-23:57:56.314086 7f74dda006c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/12/29-18:01:15.261055 7ff889ffb6c0 Recovering log #76
2023/12/29-18:01:15.271352 7ff889ffb6c0 Delete type=3 #74
2023/12/29-18:01:15.271443 7ff889ffb6c0 Delete type=0 #76
2023/12/29-18:06:09.166972 7ff888ff96c0 Level-0 table #81: started
2023/12/29-18:06:09.167006 7ff888ff96c0 Level-0 table #81: 0 bytes OK
2023/12/29-18:06:09.173926 7ff888ff96c0 Delete type=0 #79
2023/12/29-18:06:09.195524 7ff888ff96c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
2023/12/29-18:06:09.195617 7ff888ff96c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
2024/03/02-23:56:59.493389 7f74dea006c0 Recovering log #142
2024/03/02-23:56:59.549265 7f74dea006c0 Delete type=3 #140
2024/03/02-23:56:59.549449 7f74dea006c0 Delete type=0 #142
2024/03/02-23:57:31.497605 7f74dda006c0 Level-0 table #147: started
2024/03/02-23:57:31.497627 7f74dda006c0 Level-0 table #147: 0 bytes OK
2024/03/02-23:57:31.503858 7f74dda006c0 Delete type=0 #145
2024/03/02-23:57:31.531901 7f74dda006c0 Manual compaction at level-0 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)
2024/03/02-23:57:31.531971 7f74dda006c0 Manual compaction at level-1 from '!items!2GaJZsqr2c2mcDRv' @ 72057594037927935 : 1 .. '!items!ui4JGsGwHNlSXVK3' @ 0 : 0; will stop at (end)

View File

@ -1 +1 @@
MANIFEST-000082
MANIFEST-000148

View File

@ -1,8 +1,8 @@
2023/12/29-18:08:02.977894 7ff889ffb6c0 Recovering log #80
2023/12/29-18:08:02.988351 7ff889ffb6c0 Delete type=3 #78
2023/12/29-18:08:02.988521 7ff889ffb6c0 Delete type=0 #80
2023/12/29-18:35:11.035373 7ff888ff96c0 Level-0 table #85: started
2023/12/29-18:35:11.035409 7ff888ff96c0 Level-0 table #85: 0 bytes OK
2023/12/29-18:35:11.041608 7ff888ff96c0 Delete type=0 #83
2023/12/29-18:35:11.056318 7ff888ff96c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
2023/12/29-18:35:11.056381 7ff888ff96c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
2024/03/02-23:57:42.600925 7f74df4006c0 Recovering log #146
2024/03/02-23:57:42.611147 7f74df4006c0 Delete type=3 #144
2024/03/02-23:57:42.611214 7f74df4006c0 Delete type=0 #146
2024/03/02-23:57:56.321002 7f74dda006c0 Level-0 table #151: started
2024/03/02-23:57:56.321024 7f74dda006c0 Level-0 table #151: 0 bytes OK
2024/03/02-23:57:56.326916 7f74dda006c0 Delete type=0 #149
2024/03/02-23:57:56.340032 7f74dda006c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
2024/03/02-23:57:56.340080 7f74dda006c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/12/29-18:01:15.274179 7ff88a7fc6c0 Recovering log #76
2023/12/29-18:01:15.285532 7ff88a7fc6c0 Delete type=3 #74
2023/12/29-18:01:15.285634 7ff88a7fc6c0 Delete type=0 #76
2023/12/29-18:06:09.174140 7ff888ff96c0 Level-0 table #81: started
2023/12/29-18:06:09.174200 7ff888ff96c0 Level-0 table #81: 0 bytes OK
2023/12/29-18:06:09.181044 7ff888ff96c0 Delete type=0 #79
2023/12/29-18:06:09.195551 7ff888ff96c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
2023/12/29-18:06:09.195637 7ff888ff96c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
2024/03/02-23:56:59.552436 7f74dfe006c0 Recovering log #142
2024/03/02-23:56:59.607721 7f74dfe006c0 Delete type=3 #140
2024/03/02-23:56:59.607793 7f74dfe006c0 Delete type=0 #142
2024/03/02-23:57:31.532068 7f74dda006c0 Level-0 table #147: started
2024/03/02-23:57:31.532126 7f74dda006c0 Level-0 table #147: 0 bytes OK
2024/03/02-23:57:31.538874 7f74dda006c0 Delete type=0 #145
2024/03/02-23:57:31.559737 7f74dda006c0 Manual compaction at level-0 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)
2024/03/02-23:57:31.559788 7f74dda006c0 Manual compaction at level-1 from '!items!09s33sFuju8zjPqI' @ 72057594037927935 : 1 .. '!items!xlyFCQClBZ1N3O1B' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000082
MANIFEST-000148

View File

@ -1,8 +1,8 @@
2023/12/29-18:08:02.951461 7ff8897fa6c0 Recovering log #80
2023/12/29-18:08:02.961670 7ff8897fa6c0 Delete type=3 #78
2023/12/29-18:08:02.961810 7ff8897fa6c0 Delete type=0 #80
2023/12/29-18:35:11.007596 7ff888ff96c0 Level-0 table #85: started
2023/12/29-18:35:11.007633 7ff888ff96c0 Level-0 table #85: 0 bytes OK
2023/12/29-18:35:11.014447 7ff888ff96c0 Delete type=0 #83
2023/12/29-18:35:11.027700 7ff888ff96c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
2023/12/29-18:35:11.027751 7ff888ff96c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
2024/03/02-23:57:42.576393 7f74df4006c0 Recovering log #146
2024/03/02-23:57:42.586202 7f74df4006c0 Delete type=3 #144
2024/03/02-23:57:42.586336 7f74df4006c0 Delete type=0 #146
2024/03/02-23:57:56.294585 7f74dda006c0 Level-0 table #151: started
2024/03/02-23:57:56.294608 7f74dda006c0 Level-0 table #151: 0 bytes OK
2024/03/02-23:57:56.300668 7f74dda006c0 Delete type=0 #149
2024/03/02-23:57:56.314050 7f74dda006c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
2024/03/02-23:57:56.314092 7f74dda006c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/12/29-18:01:15.247529 7ff88affd6c0 Recovering log #76
2023/12/29-18:01:15.257831 7ff88affd6c0 Delete type=3 #74
2023/12/29-18:01:15.257933 7ff88affd6c0 Delete type=0 #76
2023/12/29-18:06:09.160510 7ff888ff96c0 Level-0 table #81: started
2023/12/29-18:06:09.160545 7ff888ff96c0 Level-0 table #81: 0 bytes OK
2023/12/29-18:06:09.166661 7ff888ff96c0 Delete type=0 #79
2023/12/29-18:06:09.166853 7ff888ff96c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
2023/12/29-18:06:09.166887 7ff888ff96c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
2024/03/02-23:56:59.433039 7f74dfe006c0 Recovering log #142
2024/03/02-23:56:59.490727 7f74dfe006c0 Delete type=3 #140
2024/03/02-23:56:59.490884 7f74dfe006c0 Delete type=0 #142
2024/03/02-23:57:31.517118 7f74dda006c0 Level-0 table #147: started
2024/03/02-23:57:31.517148 7f74dda006c0 Level-0 table #147: 0 bytes OK
2024/03/02-23:57:31.531688 7f74dda006c0 Delete type=0 #145
2024/03/02-23:57:31.531958 7f74dda006c0 Manual compaction at level-0 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)
2024/03/02-23:57:31.532013 7f74dda006c0 Manual compaction at level-1 from '!items!2t1KmBeQNuKK5qlN' @ 72057594037927935 : 1 .. '!items!yBvkQb9S64s908sR' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
MANIFEST-000044

8
packs/pnj-creatures/LOG Normal file
View File

@ -0,0 +1,8 @@
2024/03/02-23:57:42.486280 7f74df4006c0 Recovering log #42
2024/03/02-23:57:42.497211 7f74df4006c0 Delete type=3 #40
2024/03/02-23:57:42.497261 7f74df4006c0 Delete type=0 #42
2024/03/02-23:57:56.231538 7f74dda006c0 Level-0 table #47: started
2024/03/02-23:57:56.231579 7f74dda006c0 Level-0 table #47: 0 bytes OK
2024/03/02-23:57:56.238619 7f74dda006c0 Delete type=0 #45
2024/03/02-23:57:56.238988 7f74dda006c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
2024/03/02-23:57:56.249569 7f74dda006c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)

View File

@ -0,0 +1,8 @@
2024/03/02-23:56:59.011753 7f74dfe006c0 Recovering log #38
2024/03/02-23:56:59.065822 7f74dfe006c0 Delete type=3 #36
2024/03/02-23:56:59.066003 7f74dfe006c0 Delete type=0 #38
2024/03/02-23:57:31.454052 7f74dda006c0 Level-0 table #43: started
2024/03/02-23:57:31.454085 7f74dda006c0 Level-0 table #43: 0 bytes OK
2024/03/02-23:57:31.460874 7f74dda006c0 Delete type=0 #41
2024/03/02-23:57:31.461130 7f74dda006c0 Manual compaction at level-0 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)
2024/03/02-23:57:31.470795 7f74dda006c0 Manual compaction at level-1 from '!actors!00CKDCqVh5fLZbYo' @ 72057594037927935 : 1 .. '!folders!dwT9WnH0ZnpuZh92' @ 0 : 0; will stop at (end)

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000082
MANIFEST-000148

View File

@ -1,8 +1,8 @@
2023/12/29-18:08:02.909881 7ff88affd6c0 Recovering log #80
2023/12/29-18:08:02.919868 7ff88affd6c0 Delete type=3 #78
2023/12/29-18:08:02.919957 7ff88affd6c0 Delete type=0 #80
2023/12/29-18:35:11.000815 7ff888ff96c0 Level-0 table #85: started
2023/12/29-18:35:11.000912 7ff888ff96c0 Level-0 table #85: 0 bytes OK
2023/12/29-18:35:11.007463 7ff888ff96c0 Delete type=0 #83
2023/12/29-18:35:11.027682 7ff888ff96c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2023/12/29-18:35:11.027739 7ff888ff96c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2024/03/02-23:57:42.538644 7f74e4c006c0 Recovering log #146
2024/03/02-23:57:42.548194 7f74e4c006c0 Delete type=3 #144
2024/03/02-23:57:42.548242 7f74e4c006c0 Delete type=0 #146
2024/03/02-23:57:56.274321 7f74dda006c0 Level-0 table #151: started
2024/03/02-23:57:56.274358 7f74dda006c0 Level-0 table #151: 0 bytes OK
2024/03/02-23:57:56.280896 7f74dda006c0 Delete type=0 #149
2024/03/02-23:57:56.287798 7f74dda006c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2024/03/02-23:57:56.287848 7f74dda006c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/12/29-18:01:15.207121 7ff889ffb6c0 Recovering log #76
2023/12/29-18:01:15.217340 7ff889ffb6c0 Delete type=3 #74
2023/12/29-18:01:15.217456 7ff889ffb6c0 Delete type=0 #76
2023/12/29-18:06:09.138617 7ff888ff96c0 Level-0 table #81: started
2023/12/29-18:06:09.138720 7ff888ff96c0 Level-0 table #81: 0 bytes OK
2023/12/29-18:06:09.145987 7ff888ff96c0 Delete type=0 #79
2023/12/29-18:06:09.166796 7ff888ff96c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2023/12/29-18:06:09.166840 7ff888ff96c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2024/03/02-23:56:59.243458 7f74dea006c0 Recovering log #142
2024/03/02-23:56:59.296280 7f74dea006c0 Delete type=3 #140
2024/03/02-23:56:59.296363 7f74dea006c0 Delete type=0 #142
2024/03/02-23:57:31.470886 7f74dda006c0 Level-0 table #147: started
2024/03/02-23:57:31.470906 7f74dda006c0 Level-0 table #147: 0 bytes OK
2024/03/02-23:57:31.477853 7f74dda006c0 Delete type=0 #145
2024/03/02-23:57:31.497453 7f74dda006c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2024/03/02-23:57:31.497519 7f74dda006c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000082
MANIFEST-000148

View File

@ -1,8 +1,8 @@
2023/12/29-18:08:03.021158 7ff88affd6c0 Recovering log #80
2023/12/29-18:08:03.031240 7ff88affd6c0 Delete type=3 #78
2023/12/29-18:08:03.031366 7ff88affd6c0 Delete type=0 #80
2023/12/29-18:35:11.056532 7ff888ff96c0 Level-0 table #85: started
2023/12/29-18:35:11.056576 7ff888ff96c0 Level-0 table #85: 0 bytes OK
2023/12/29-18:35:11.062843 7ff888ff96c0 Delete type=0 #83
2023/12/29-18:35:11.070764 7ff888ff96c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
2023/12/29-18:35:11.070812 7ff888ff96c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
2024/03/02-23:57:42.638884 7f74e4c006c0 Recovering log #146
2024/03/02-23:57:42.649262 7f74e4c006c0 Delete type=3 #144
2024/03/02-23:57:42.649331 7f74e4c006c0 Delete type=0 #146
2024/03/02-23:57:56.327001 7f74dda006c0 Level-0 table #151: started
2024/03/02-23:57:56.327021 7f74dda006c0 Level-0 table #151: 0 bytes OK
2024/03/02-23:57:56.333677 7f74dda006c0 Delete type=0 #149
2024/03/02-23:57:56.340040 7f74dda006c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
2024/03/02-23:57:56.340074 7f74dda006c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/12/29-18:01:15.317438 7ff889ffb6c0 Recovering log #76
2023/12/29-18:01:15.328160 7ff889ffb6c0 Delete type=3 #74
2023/12/29-18:01:15.328266 7ff889ffb6c0 Delete type=0 #76
2023/12/29-18:06:09.202476 7ff888ff96c0 Level-0 table #81: started
2023/12/29-18:06:09.202514 7ff888ff96c0 Level-0 table #81: 0 bytes OK
2023/12/29-18:06:09.208966 7ff888ff96c0 Delete type=0 #79
2023/12/29-18:06:09.209130 7ff888ff96c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
2023/12/29-18:06:09.209157 7ff888ff96c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
2024/03/02-23:56:59.749769 7f74dea006c0 Recovering log #142
2024/03/02-23:56:59.807963 7f74dea006c0 Delete type=3 #140
2024/03/02-23:56:59.808061 7f74dea006c0 Delete type=0 #142
2024/03/02-23:57:31.553065 7f74dda006c0 Level-0 table #147: started
2024/03/02-23:57:31.553088 7f74dda006c0 Level-0 table #147: 0 bytes OK
2024/03/02-23:57:31.559631 7f74dda006c0 Delete type=0 #145
2024/03/02-23:57:31.559771 7f74dda006c0 Manual compaction at level-0 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)
2024/03/02-23:57:31.559808 7f74dda006c0 Manual compaction at level-1 from '!items!1JqWbEkHUoKXbsgn' @ 72057594037927935 : 1 .. '!items!xnCf2xIPzdsUoBTy' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/runes/MANIFEST-000148 Normal file

Binary file not shown.

BIN
packs/scenes/000051.ldb Normal file

Binary file not shown.

1
packs/scenes/CURRENT Normal file
View File

@ -0,0 +1 @@
MANIFEST-000064

8
packs/scenes/LOG Normal file
View File

@ -0,0 +1,8 @@
2024/03/02-23:57:42.664169 7f74e4c006c0 Recovering log #62
2024/03/02-23:57:42.675153 7f74e4c006c0 Delete type=3 #60
2024/03/02-23:57:42.675214 7f74e4c006c0 Delete type=0 #62
2024/03/02-23:57:56.346704 7f74dda006c0 Level-0 table #67: started
2024/03/02-23:57:56.346728 7f74dda006c0 Level-0 table #67: 0 bytes OK
2024/03/02-23:57:56.353179 7f74dda006c0 Delete type=0 #65
2024/03/02-23:57:56.353339 7f74dda006c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
2024/03/02-23:57:56.353404 7f74dda006c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)

8
packs/scenes/LOG.old Normal file
View File

@ -0,0 +1,8 @@
2024/03/02-23:56:59.869123 7f74dea006c0 Recovering log #58
2024/03/02-23:56:59.920442 7f74dea006c0 Delete type=3 #56
2024/03/02-23:56:59.920535 7f74dea006c0 Delete type=0 #58
2024/03/02-23:57:31.566774 7f74dda006c0 Level-0 table #63: started
2024/03/02-23:57:31.566798 7f74dda006c0 Level-0 table #63: 0 bytes OK
2024/03/02-23:57:31.572841 7f74dda006c0 Delete type=0 #61
2024/03/02-23:57:31.572972 7f74dda006c0 Manual compaction at level-0 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)
2024/03/02-23:57:31.572995 7f74dda006c0 Manual compaction at level-1 from '!scenes!ZDV2IwduhOXTxy72' @ 72057594037927935 : 1 .. '!scenes!ZDV2IwduhOXTxy72' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

View File

@ -0,0 +1 @@
MANIFEST-000056

View File

View File

@ -0,0 +1,8 @@
2024/03/02-23:57:42.514100 7f74e4c006c0 Recovering log #54
2024/03/02-23:57:42.524422 7f74e4c006c0 Delete type=3 #52
2024/03/02-23:57:42.524478 7f74e4c006c0 Delete type=0 #54
2024/03/02-23:57:56.266204 7f74dda006c0 Level-0 table #59: started
2024/03/02-23:57:56.266260 7f74dda006c0 Level-0 table #59: 0 bytes OK
2024/03/02-23:57:56.274130 7f74dda006c0 Delete type=0 #57
2024/03/02-23:57:56.281153 7f74dda006c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
2024/03/02-23:57:56.287833 7f74dda006c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)

View File

@ -0,0 +1,8 @@
2024/03/02-23:56:59.123787 7f74dea006c0 Recovering log #50
2024/03/02-23:56:59.183838 7f74dea006c0 Delete type=3 #48
2024/03/02-23:56:59.183904 7f74dea006c0 Delete type=0 #50
2024/03/02-23:57:31.491411 7f74dda006c0 Level-0 table #55: started
2024/03/02-23:57:31.491439 7f74dda006c0 Level-0 table #55: 0 bytes OK
2024/03/02-23:57:31.497367 7f74dda006c0 Delete type=0 #53
2024/03/02-23:57:31.497482 7f74dda006c0 Manual compaction at level-0 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)
2024/03/02-23:57:31.497506 7f74dda006c0 Manual compaction at level-1 from '!items!6bmjc4MUduGs9s6n' @ 72057594037927935 : 1 .. '!items!t692JcsGHG4YJIlM' @ 0 : 0; will stop at (end)

Binary file not shown.

0
packs/skills/000150.log Normal file
View File

View File

@ -1 +1 @@
MANIFEST-000082
MANIFEST-000148

View File

@ -1,8 +1,8 @@
2023/12/29-18:08:02.881442 7ff88a7fc6c0 Recovering log #80
2023/12/29-18:08:02.892226 7ff88a7fc6c0 Delete type=3 #78
2023/12/29-18:08:02.892313 7ff88a7fc6c0 Delete type=0 #80
2023/12/29-18:35:10.986477 7ff888ff96c0 Level-0 table #85: started
2023/12/29-18:35:10.986527 7ff888ff96c0 Level-0 table #85: 0 bytes OK
2023/12/29-18:35:10.992779 7ff888ff96c0 Delete type=0 #83
2023/12/29-18:35:11.000602 7ff888ff96c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
2023/12/29-18:35:11.000659 7ff888ff96c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
2024/03/02-23:57:42.502446 7f74df4006c0 Recovering log #146
2024/03/02-23:57:42.512293 7f74df4006c0 Delete type=3 #144
2024/03/02-23:57:42.512342 7f74df4006c0 Delete type=0 #146
2024/03/02-23:57:56.259994 7f74dda006c0 Level-0 table #151: started
2024/03/02-23:57:56.260040 7f74dda006c0 Level-0 table #151: 0 bytes OK
2024/03/02-23:57:56.265974 7f74dda006c0 Delete type=0 #149
2024/03/02-23:57:56.280998 7f74dda006c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
2024/03/02-23:57:56.287816 7f74dda006c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/12/29-18:01:15.179316 7ff8897fa6c0 Recovering log #76
2023/12/29-18:01:15.190214 7ff8897fa6c0 Delete type=3 #74
2023/12/29-18:01:15.190647 7ff8897fa6c0 Delete type=0 #76
2023/12/29-18:06:09.131724 7ff888ff96c0 Level-0 table #81: started
2023/12/29-18:06:09.131761 7ff888ff96c0 Level-0 table #81: 0 bytes OK
2023/12/29-18:06:09.138231 7ff888ff96c0 Delete type=0 #79
2023/12/29-18:06:09.138457 7ff888ff96c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
2023/12/29-18:06:09.138516 7ff888ff96c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
2024/03/02-23:56:59.071458 7f74dfe006c0 Recovering log #142
2024/03/02-23:56:59.121432 7f74dfe006c0 Delete type=3 #140
2024/03/02-23:56:59.121485 7f74dfe006c0 Delete type=0 #142
2024/03/02-23:57:31.477981 7f74dda006c0 Level-0 table #147: started
2024/03/02-23:57:31.478009 7f74dda006c0 Level-0 table #147: 0 bytes OK
2024/03/02-23:57:31.484103 7f74dda006c0 Delete type=0 #145
2024/03/02-23:57:31.497464 7f74dda006c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
2024/03/02-23:57:31.497526 7f74dda006c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

0
packs/tables/000150.log Normal file
View File

View File

@ -1 +1 @@
MANIFEST-000082
MANIFEST-000148

View File

@ -1,8 +1,8 @@
2023/12/29-18:08:03.034276 7ff889ffb6c0 Recovering log #80
2023/12/29-18:08:03.045380 7ff889ffb6c0 Delete type=3 #78
2023/12/29-18:08:03.045487 7ff889ffb6c0 Delete type=0 #80
2023/12/29-18:35:11.062976 7ff888ff96c0 Level-0 table #85: started
2023/12/29-18:35:11.063014 7ff888ff96c0 Level-0 table #85: 0 bytes OK
2023/12/29-18:35:11.070439 7ff888ff96c0 Delete type=0 #83
2023/12/29-18:35:11.070825 7ff888ff96c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
2023/12/29-18:35:11.070866 7ff888ff96c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
2024/03/02-23:57:42.652120 7f74df4006c0 Recovering log #146
2024/03/02-23:57:42.661879 7f74df4006c0 Delete type=3 #144
2024/03/02-23:57:42.661949 7f74df4006c0 Delete type=0 #146
2024/03/02-23:57:56.340215 7f74dda006c0 Level-0 table #151: started
2024/03/02-23:57:56.340246 7f74dda006c0 Level-0 table #151: 0 bytes OK
2024/03/02-23:57:56.346619 7f74dda006c0 Delete type=0 #149
2024/03/02-23:57:56.353285 7f74dda006c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
2024/03/02-23:57:56.353358 7f74dda006c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/12/29-18:01:15.331719 7ff88a7fc6c0 Recovering log #76
2023/12/29-18:01:15.342998 7ff88a7fc6c0 Delete type=3 #74
2023/12/29-18:01:15.343131 7ff88a7fc6c0 Delete type=0 #76
2023/12/29-18:06:09.195798 7ff888ff96c0 Level-0 table #81: started
2023/12/29-18:06:09.195853 7ff888ff96c0 Level-0 table #81: 0 bytes OK
2023/12/29-18:06:09.202274 7ff888ff96c0 Delete type=0 #79
2023/12/29-18:06:09.209111 7ff888ff96c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
2023/12/29-18:06:09.209183 7ff888ff96c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
2024/03/02-23:56:59.810825 7f74dfe006c0 Recovering log #142
2024/03/02-23:56:59.866120 7f74dfe006c0 Delete type=3 #140
2024/03/02-23:56:59.866177 7f74dfe006c0 Delete type=0 #142
2024/03/02-23:57:31.559878 7f74dda006c0 Level-0 table #147: started
2024/03/02-23:57:31.559907 7f74dda006c0 Level-0 table #147: 0 bytes OK
2024/03/02-23:57:31.566665 7f74dda006c0 Delete type=0 #145
2024/03/02-23:57:31.572956 7f74dda006c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
2024/03/02-23:57:31.572987 7f74dda006c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)

View File

View File

@ -1 +1 @@
MANIFEST-000082
MANIFEST-000148

View File

@ -1,8 +1,8 @@
2023/12/29-18:08:02.991191 7ff88a7fc6c0 Recovering log #80
2023/12/29-18:08:03.003992 7ff88a7fc6c0 Delete type=3 #78
2023/12/29-18:08:03.004105 7ff88a7fc6c0 Delete type=0 #80
2023/12/29-18:35:11.041721 7ff888ff96c0 Level-0 table #85: started
2023/12/29-18:35:11.042031 7ff888ff96c0 Level-0 table #85: 0 bytes OK
2023/12/29-18:35:11.048701 7ff888ff96c0 Delete type=0 #83
2023/12/29-18:35:11.056331 7ff888ff96c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
2023/12/29-18:35:11.056401 7ff888ff96c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
2024/03/02-23:57:42.612971 7f74e4c006c0 Recovering log #146
2024/03/02-23:57:42.623137 7f74e4c006c0 Delete type=3 #144
2024/03/02-23:57:42.623242 7f74e4c006c0 Delete type=0 #146
2024/03/02-23:57:56.333883 7f74dda006c0 Level-0 table #151: started
2024/03/02-23:57:56.333934 7f74dda006c0 Level-0 table #151: 0 bytes OK
2024/03/02-23:57:56.339949 7f74dda006c0 Delete type=0 #149
2024/03/02-23:57:56.340067 7f74dda006c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
2024/03/02-23:57:56.340093 7f74dda006c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/12/29-18:01:15.288482 7ff8897fa6c0 Recovering log #76
2023/12/29-18:01:15.299452 7ff8897fa6c0 Delete type=3 #74
2023/12/29-18:01:15.299587 7ff8897fa6c0 Delete type=0 #76
2023/12/29-18:06:09.181175 7ff888ff96c0 Level-0 table #81: started
2023/12/29-18:06:09.181260 7ff888ff96c0 Level-0 table #81: 0 bytes OK
2023/12/29-18:06:09.187495 7ff888ff96c0 Delete type=0 #79
2023/12/29-18:06:09.195574 7ff888ff96c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
2023/12/29-18:06:09.195657 7ff888ff96c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
2024/03/02-23:56:59.610619 7f74dea006c0 Recovering log #142
2024/03/02-23:56:59.681417 7f74dea006c0 Delete type=3 #140
2024/03/02-23:56:59.681550 7f74dea006c0 Delete type=0 #142
2024/03/02-23:57:31.539168 7f74dda006c0 Level-0 table #147: started
2024/03/02-23:57:31.539205 7f74dda006c0 Level-0 table #147: 0 bytes OK
2024/03/02-23:57:31.546760 7f74dda006c0 Delete type=0 #145
2024/03/02-23:57:31.559754 7f74dda006c0 Manual compaction at level-0 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)
2024/03/02-23:57:31.559796 7f74dda006c0 Manual compaction at level-1 from '!items!0CYP1JpZu9mst5tK' @ 72057594037927935 : 1 .. '!items!zhPPsmTtLv7cyNHJ' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

View File

@ -1 +1 @@
MANIFEST-000082
MANIFEST-000148

View File

@ -1,8 +1,8 @@
2023/12/29-18:08:03.007421 7ff8897fa6c0 Recovering log #80
2023/12/29-18:08:03.018383 7ff8897fa6c0 Delete type=3 #78
2023/12/29-18:08:03.018699 7ff8897fa6c0 Delete type=0 #80
2023/12/29-18:35:11.048862 7ff888ff96c0 Level-0 table #85: started
2023/12/29-18:35:11.048905 7ff888ff96c0 Level-0 table #85: 0 bytes OK
2023/12/29-18:35:11.056168 7ff888ff96c0 Delete type=0 #83
2023/12/29-18:35:11.056357 7ff888ff96c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
2023/12/29-18:35:11.056416 7ff888ff96c0 Manual compaction at level-1 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
2024/03/02-23:57:42.626306 7f74df4006c0 Recovering log #146
2024/03/02-23:57:42.636633 7f74df4006c0 Delete type=3 #144
2024/03/02-23:57:42.636732 7f74df4006c0 Delete type=0 #146
2024/03/02-23:57:56.314210 7f74dda006c0 Level-0 table #151: started
2024/03/02-23:57:56.314232 7f74dda006c0 Level-0 table #151: 0 bytes OK
2024/03/02-23:57:56.320768 7f74dda006c0 Delete type=0 #149
2024/03/02-23:57:56.340022 7f74dda006c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
2024/03/02-23:57:56.340086 7f74dda006c0 Manual compaction at level-1 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)

View File

@ -1,8 +1,8 @@
2023/12/29-18:01:15.303780 7ff88affd6c0 Recovering log #76
2023/12/29-18:01:15.314481 7ff88affd6c0 Delete type=3 #74
2023/12/29-18:01:15.314586 7ff88affd6c0 Delete type=0 #76
2023/12/29-18:06:09.187696 7ff888ff96c0 Level-0 table #81: started
2023/12/29-18:06:09.187753 7ff888ff96c0 Level-0 table #81: 0 bytes OK
2023/12/29-18:06:09.195332 7ff888ff96c0 Delete type=0 #79
2023/12/29-18:06:09.195597 7ff888ff96c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
2023/12/29-18:06:09.195677 7ff888ff96c0 Manual compaction at level-1 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
2024/03/02-23:56:59.684120 7f74dfe006c0 Recovering log #142
2024/03/02-23:56:59.747466 7f74dfe006c0 Delete type=3 #140
2024/03/02-23:56:59.747523 7f74dfe006c0 Delete type=0 #142
2024/03/02-23:57:31.546838 7f74dda006c0 Level-0 table #147: started
2024/03/02-23:57:31.546860 7f74dda006c0 Level-0 table #147: 0 bytes OK
2024/03/02-23:57:31.552985 7f74dda006c0 Delete type=0 #145
2024/03/02-23:57:31.559763 7f74dda006c0 Manual compaction at level-0 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)
2024/03/02-23:57:31.559802 7f74dda006c0 Manual compaction at level-1 from '!items!3J0HKjcVtBT39BiR' @ 72057594037927935 : 1 .. '!items!zeOtWz6oscp8Su5l' @ 0 : 0; will stop at (end)

Some files were not shown because too many files have changed in this diff Show More