Compare commits

...

8 Commits

149 changed files with 1215 additions and 376 deletions

View File

@@ -2,10 +2,12 @@
## EN
Unofficial system for Wasteland (French version from Titam France).
Unofficial system for Wasteland (French RPG from Titam France).
Books are mandatory to play and are available at : http://www.titam-france.fr
`![alt text](https://www.lahiette.com/leratierbretonnien/wp-content/uploads/2024/01/screenshot-wasteland-01.webp "Wasteland")`
## FR
Système non-officiel pour le JDR Wasteland (Titam France).
@@ -16,8 +18,9 @@ Les livres du jeu sont nécessaires pour jouer, et sont disponibles ici : http:/
# Credits
Wasteland, le jeu de rôle de Sword & Sorcery, is a property of Titam France/Sombres Projets.
Wasteland is a property of Titam France/Sombres Projets.
# Developmement
LeRatierBretonnien
Code, CSS and automations : LeRatierBretonnien
Compendiums : Pretre, LeRatierBretonnien

BIN
assets/icons/don.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

BIN
assets/icons/hubris.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@@ -43,17 +43,24 @@ export class WastelandActorSheet extends ActorSheet {
armes: duplicate(this.actor.getWeapons()),
protections: duplicate(this.actor.getArmors()),
pouvoirs:duplicate(this.actor.getPouvoirs()),
dons: duplicate(this.actor.getDons()),
hubrises: duplicate(this.actor.getHubris()),
tours:duplicate(this.actor.getTours()),
artifex: duplicate(this.actor.getArtifex()),
charmes:duplicate(this.actor.getCharmes()),
peuple: duplicate(this.actor.getPeuple() || {}),
origine: duplicate(this.actor.getOrigine() || {}),
heritage: duplicate(this.actor.getHeritage() || {}),
metier: duplicate(this.actor.getMetier() || {}),
combat: this.actor.getCombatValues(),
config: duplicate(game.system.wasteland.config),
capacites: duplicate(this.actor.getCapacites()),
equipements: duplicate(this.actor.getEquipments()),
monnaies: duplicate(this.actor.getMonnaies()),
mutations: duplicate(this.actor.getMutations()),
description: await TextEditor.enrichHTML(this.object.system.biodata.description, {async: true}),
comportement: await TextEditor.enrichHTML(this.object.system.biodata.comportement, {async: true}),
habitat: await TextEditor.enrichHTML(this.object.system.biodata.habitat, {async: true}),
options: this.options,
owner: this.document.isOwner,
editScore: this.options.editScore,

View File

@@ -37,11 +37,12 @@ export class WastelandActor extends Actor {
return actor;
}
const skills = await WastelandUtility.loadCompendium("fvtt-wasteland.skills")
if (data.type == 'personnage') {
const skills = await WastelandUtility.loadCompendium("fvtt-wasteland.skills")
data.items = skills.map(i => i.toObject())
}
if (data.type == 'pnj') {
if (data.type == 'creature') {
data.items = skills.filter(i=>i.name.toLowerCase().includes("mêlée")).map(i => i.toObject())
}
return super.create(data, options);
@@ -119,18 +120,33 @@ export class WastelandActor extends Actor {
getArtifex() {
return this.getItemSorted(["artifex"])
}
getCapacites() {
return this.getItemSorted(["capacite"])
}
getPouvoirs() {
return this.getItemSorted(["pouvoir"])
}
getDons() {
return this.getItemSorted(["don"])
}
getHubris() {
return this.getItemSorted(["hubris"])
}
getEquipments() {
return this.getItemSorted(["equipement"])
}
getMonnaies() {
return this.getItemSorted(["monnaie"])
}
getMutations() {
return this.getItemSorted(["mutation"])
}
getArmors() {
return this.getItemSorted(["protection"])
}
getPeuple() {
return this.items.find(item => item.type == "peuple")
}
getOrigine() {
return this.items.find(item => item.type == "origine")
}
@@ -206,7 +222,7 @@ export class WastelandActor extends Actor {
if (this.system.sante.base != newSante) {
this.update({ 'system.sante.base': newSante })
}
let newPsyche = (this.system.attributs.cla.value + this.system.attributs.tre.value) * this.system.biodata.psychemultiplier + 5
let newPsyche = ((this.system.attributs.cla.value + this.system.attributs.tre.value) * 2) + 5
if (this.system.psyche.fullmax != newPsyche) {
this.update({ 'system.psyche.fullmax': newPsyche })
}

View File

@@ -14,6 +14,10 @@ export const WASTELAND_CONFIG = {
"nuit": "Chemin des Nuits",
"oiseaux": "Chemin des Oiseaux"
},
hubrisType: {
"mental": "Mental",
"physique": "Physique",
},
charmetype: {
tour: "Tour",
charme: "Charme",

View File

@@ -0,0 +1,26 @@
/**
* Extend the basic ActorSheet with some very simple modifications
* @extends {ActorSheet}
*/
import { WastelandUtility } from "./wasteland-utility.js";
import { WastelandActorSheet } from "./wasteland-actor-sheet.js";
/* -------------------------------------------- */
export class WastelandCreatureSheet extends WastelandActorSheet {
/** @override */
static get defaultOptions() {
return mergeObject(super.defaultOptions, {
classes: ["fvtt-wasteland", "sheet", "creature"],
template: "systems/fvtt-wasteland/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

@@ -17,6 +17,8 @@ export const defaultItemImg = {
heritage: "systems/fvtt-wasteland/assets/icons/legacy.webp",
charme: "systems/fvtt-wasteland/assets/icons/charm.webp",
peuple: "systems/fvtt-wasteland/assets/icons/people.webp",
don: "systems/fvtt-wasteland/assets/icons/don.webp",
hubris: "systems/fvtt-wasteland/assets/icons/hubris.webp",
}
/**

View File

@@ -11,7 +11,7 @@
import { WastelandActor } from "./wasteland-actor.js";
import { WastelandItemSheet } from "./wasteland-item-sheet.js";
import { WastelandActorSheet } from "./wasteland-actor-sheet.js";
//import { WastelandNPCSheet } from "./wasteland-npc-sheet.js";
import { WastelandCreatureSheet } from "./wasteland-creature-sheet.js";
import { WastelandUtility } from "./wasteland-utility.js";
import { WastelandCombat } from "./wasteland-combat.js";
import { WastelandItem } from "./wasteland-item.js";
@@ -28,7 +28,7 @@ Hooks.once("init", async function () {
/* -------------------------------------------- */
// preload handlebars templates
WastelandUtility.preloadHandlebarsTemplates();
/* -------------------------------------------- */
// Set an initiative formula for the system
CONFIG.Combat.initiative = {
@@ -54,13 +54,13 @@ Hooks.once("init", async function () {
// Register sheet application classes
Actors.unregisterSheet("core", ActorSheet);
Actors.registerSheet("fvtt-wasteland", WastelandActorSheet, { types: ["personnage"], makeDefault: true })
//Actors.registerSheet("fvtt-wasteland", WastelandNPCSheet, { types: ["npc"], makeDefault: false });
Actors.registerSheet("fvtt-wasteland", WastelandCreatureSheet, { types: ["creature"], makeDefault: false });
Items.unregisterSheet("core", ItemSheet);
Items.registerSheet("fvtt-wasteland", WastelandItemSheet, { makeDefault: true })
WastelandUtility.init();
});
/* -------------------------------------------- */
@@ -72,14 +72,14 @@ function welcomeMessage() {
<strong>Bienvenue dans les Wasteland !</strong>
<p>Les livres de Wasteland sont nécessaires pour jouer : https://www.titam-france.fr</p>
<p>Wasteland est jeu de rôle publié par Titam France/Sombres projets, tout les droits leur appartiennent.</p>
<p>Système développé par LeRatierBretonnien, support sur le <a href="https://discord.gg/pPSDNJk">Discord FR de Foundry</a>.</p>
<p>Système développé par LeRatierBretonnien, avec le support de Prêtre. Plus d'infos et aides sur le <a href="https://discord.gg/pPSDNJk">Discord FR de Foundry</a>.</p>
` });
}
/* -------------------------------------------- */
// Register world usage statistics
function registerUsageCount( registerKey ) {
if ( game.user.isGM ) {
function registerUsageCount(registerKey) {
if (game.user.isGM) {
game.settings.register(registerKey, "world-key", {
name: "Unique world key",
scope: "world",
@@ -89,25 +89,40 @@ function registerUsageCount( registerKey ) {
});
let worldKey = game.settings.get(registerKey, "world-key")
if ( worldKey == undefined || worldKey == "" ) {
if (worldKey == undefined || worldKey == "") {
worldKey = randomID(32)
game.settings.set(registerKey, "world-key", worldKey )
game.settings.set(registerKey, "world-key", worldKey)
}
// Simple API counter
let regURL = `https://www.uberwald.me/fvtt_appcount/count.php?name="${registerKey}"&worldKey="${worldKey}"&version="${game.release.generation}.${game.release.build}"&system="${game.system.id}"&systemversion="${game.system.version}"`
//$.ajaxSetup({
//headers: { 'Access-Control-Allow-Origin': '*' }
//headers: { 'Access-Control-Allow-Origin': '*' }
//})
$.ajax(regURL)
}
}
/* -------------------------------------------- */
async function importDefaultScene() {
let exists = game.scenes.find(j => j.name == "Accueil");
if (!exists) {
const scenes = await WastelandUtility.loadCompendium("fvtt-wasteland.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 */
/* -------------------------------------------- */
Hooks.once("ready", function () {
WastelandUtility.ready();
registerUsageCount('fvtt-wasteland')
welcomeMessage();
// User warning
if (!game.user.isGM && game.user.character == undefined) {
ui.notifications.info("Attention ! Aucun personnage n'est relié au joueur !");
@@ -116,9 +131,16 @@ Hooks.once("ready", function () {
user: game.user._id
});
}
registerUsageCount('fvtt-wasteland')
welcomeMessage();
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
});
}
importDefaultScene();
});
/* -------------------------------------------- */

View File

@@ -4,16 +4,16 @@ import { WastelandCommands } from "./wasteland-commands.js";
/* -------------------------------------------- */
const __contrecouptCharme = {
1 : {name: "Effet chromatique", description: "" },
3 : {name: "Enivrement Kobold", description: "" },
5 : {name: "Mutisme superstitieux", description: "" },
7 : {name: "Agité!", description: "" },
9 : {name: "Somnolence", description: "" },
11 : {name: "Manie incontrôlable", description: "" },
13 : {name: "Malédiction des Ternes", description: "" },
15 : {name: "La petite Mort", description: "" },
17 : {name: "Angoisse cauchemardesque", description: "" },
19 : {name: "Anémie Kobold", description: "" }
1 : {name: "Effet chromatique", description: "le corps du kobold prend des teintes aussi étranges que voyantes. L'effet sestompe progressivement et 24 heures plus tard, le kobold retrouve ses couleurs dorigine." },
3 : {name: "Enivrement Kobold", description: "très excité par son premier tour, le kobold doit immédiatement faire un autre tour, pour lequel il emploiera un dé plus gros." },
5 : {name: "Mutisme superstitieux", description: "le kobold ne doit plus parler» pendant les prochaines 24 heures. S'il le fait malgré tout, les effets de son tour sarrêtent." },
7 : {name: "Agité!", description: "le kobold ne tient plus en place. Il ne peut se reposer pendant les prochaines 12 heures. Dès. que 12 heures se sont écoulées, il s'effondre comme une masse et dort 12 heures d'affilée dun sommeil enchanté dont rien ne pourra le réveiller." },
9 : {name: "Somnolence", description: "le kobold devient somnolent. Il narrive pas à se concentrer même sur une tâche simple, bäille sans arrêt, traîne les pieds et nagit plus que de mauvaise grâce. Cela dure jusquà ce qu'il ait dormi au moins 12 heures." },
11 : {name: "Manie incontrôlable", description: "le kobold est pris dune manie incontrôlable. Dès qu'il voit un chapeau rouge, il doit suivre son porteur. Il ne mangera que si son voisin de gauche mange aussi, etc. Cela dure pendant une jour- née puis leffet sinverse pendant une heure : il ne suivra jamais un chapeau rouge, ne mangera jamais si son voi- sin de gauche mange, etc. Le contrecoup prend alors fin." },
13 : {name: "Malédiction des Ternes", description: "le kobold perd cette qualité mystérieuse qui fait que les kobolds sont des kobolds et devient tout. Terne. Il perd 1d20 point(s) de Bonne Aventure (sil doit en perdre plus qu'il nen a, il tombe simplement à 0). Ces points perdus pourront cependant être regagnés normalement." },
15 : {name: "La petite Mort", description: "le kobold s'endort pour 1420 heures. Rien ni personne ne pourra le tirer de ce sommeil enchanté avant que ce contrecoup ne prenne fin." },
17 : {name: "Angoisse cauchemardesque", description: "le kobold a une brève vision de pure horreur. Il perd 1420 points de Psyché {s'il doit en perdre plus qu'il nen a, il tombe à 0)." },
19 : {name: "Anémie Kobold", description: "le kobold se met à saigner du nez, des oreilles et même dautres endroits. Il perd 1420 point(s) de Santé." }
}
/* -------------------------------------------- */
@@ -153,7 +153,8 @@ export class WastelandUtility {
const templatePaths = [
'systems/fvtt-wasteland/templates/editor-notes-gm.html',
'systems/fvtt-wasteland/templates/partial-item-description.html',
'systems/fvtt-wasteland/templates/partial-list-niveau.html'
'systems/fvtt-wasteland/templates/partial-list-niveau.html',
'systems/fvtt-wasteland/templates/partial-list-niveau-creature.html'
]
return loadTemplates(templatePaths);
}

Binary file not shown.

BIN
packs/armes/000140.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000078
MANIFEST-000149

View File

@@ -1,8 +1,8 @@
2023/12/01-09:39:06.657234 7fef57fff6c0 Recovering log #76
2023/12/01-09:39:06.667932 7fef57fff6c0 Delete type=3 #74
2023/12/01-09:39:06.667995 7fef57fff6c0 Delete type=0 #76
2023/12/01-09:50:10.707951 7fef56ffd6c0 Level-0 table #81: started
2023/12/01-09:50:10.707996 7fef56ffd6c0 Level-0 table #81: 0 bytes OK
2023/12/01-09:50:10.726578 7fef56ffd6c0 Delete type=0 #79
2023/12/01-09:50:10.754430 7fef56ffd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2023/12/01-09:50:10.754484 7fef56ffd6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2024/01/06-14:02:35.981333 7fc5b37fe6c0 Recovering log #147
2024/01/06-14:02:35.992081 7fc5b37fe6c0 Delete type=3 #145
2024/01/06-14:02:35.992152 7fc5b37fe6c0 Delete type=0 #147
2024/01/06-14:04:38.350683 7fc331fef6c0 Level-0 table #152: started
2024/01/06-14:04:38.350727 7fc331fef6c0 Level-0 table #152: 0 bytes OK
2024/01/06-14:04:38.358117 7fc331fef6c0 Delete type=0 #150
2024/01/06-14:04:38.358353 7fc331fef6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2024/01/06-14:04:38.358422 7fc331fef6c0 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/01-09:36:46.735204 7fef57fff6c0 Recovering log #72
2023/12/01-09:36:46.745007 7fef57fff6c0 Delete type=3 #70
2023/12/01-09:36:46.745100 7fef57fff6c0 Delete type=0 #72
2023/12/01-09:37:12.141437 7fef56ffd6c0 Level-0 table #77: started
2023/12/01-09:37:12.141461 7fef56ffd6c0 Level-0 table #77: 0 bytes OK
2023/12/01-09:37:12.148157 7fef56ffd6c0 Delete type=0 #75
2023/12/01-09:37:12.155670 7fef56ffd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2023/12/01-09:37:12.155729 7fef56ffd6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2024/01/06-14:01:42.346058 7fc5b2ffd6c0 Recovering log #143
2024/01/06-14:01:42.356967 7fc5b2ffd6c0 Delete type=3 #141
2024/01/06-14:01:42.357089 7fc5b2ffd6c0 Delete type=0 #143
2024/01/06-14:01:56.817472 7fc331fef6c0 Level-0 table #148: started
2024/01/06-14:01:56.817498 7fc331fef6c0 Level-0 table #148: 0 bytes OK
2024/01/06-14:01:56.823602 7fc331fef6c0 Delete type=0 #146
2024/01/06-14:01:56.823756 7fc331fef6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2024/01/06-14:01:56.823787 7fc331fef6c0 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.

BIN
packs/artifex/000005.ldb Normal file

Binary file not shown.

1
packs/artifex/CURRENT Normal file
View File

@@ -0,0 +1 @@
MANIFEST-000010

8
packs/artifex/LOG Normal file
View File

@@ -0,0 +1,8 @@
2024/01/06-14:02:36.018725 7fc5b2ffd6c0 Recovering log #8
2024/01/06-14:02:36.029340 7fc5b2ffd6c0 Delete type=3 #6
2024/01/06-14:02:36.029410 7fc5b2ffd6c0 Delete type=0 #8
2024/01/06-14:04:38.371637 7fc331fef6c0 Level-0 table #13: started
2024/01/06-14:04:38.371664 7fc331fef6c0 Level-0 table #13: 0 bytes OK
2024/01/06-14:04:38.378180 7fc331fef6c0 Delete type=0 #11
2024/01/06-14:04:38.384716 7fc331fef6c0 Manual compaction at level-0 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)
2024/01/06-14:04:38.384782 7fc331fef6c0 Manual compaction at level-1 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)

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

@@ -0,0 +1,8 @@
2024/01/06-14:01:42.385975 7fc5b3fff6c0 Recovering log #4
2024/01/06-14:01:42.396407 7fc5b3fff6c0 Delete type=3 #2
2024/01/06-14:01:42.396463 7fc5b3fff6c0 Delete type=0 #4
2024/01/06-14:01:56.846084 7fc331fef6c0 Level-0 table #9: started
2024/01/06-14:01:56.846133 7fc331fef6c0 Level-0 table #9: 0 bytes OK
2024/01/06-14:01:56.852939 7fc331fef6c0 Delete type=0 #7
2024/01/06-14:01:56.853072 7fc331fef6c0 Manual compaction at level-0 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)
2024/01/06-14:01:56.853110 7fc331fef6c0 Manual compaction at level-1 from '!items!PqP7BWEkK7aK65yH' @ 72057594037927935 : 1 .. '!items!irEA0eyE731viEYl' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/bestiaire/000005.ldb Normal file

Binary file not shown.

1
packs/bestiaire/CURRENT Normal file
View File

@@ -0,0 +1 @@
MANIFEST-000022

8
packs/bestiaire/LOG Normal file
View File

@@ -0,0 +1,8 @@
2024/01/06-14:02:35.878062 7fc5b37fe6c0 Recovering log #20
2024/01/06-14:02:35.888417 7fc5b37fe6c0 Delete type=3 #18
2024/01/06-14:02:35.888514 7fc5b37fe6c0 Delete type=0 #20
2024/01/06-14:04:38.318148 7fc331fef6c0 Level-0 table #25: started
2024/01/06-14:04:38.318174 7fc331fef6c0 Level-0 table #25: 0 bytes OK
2024/01/06-14:04:38.324478 7fc331fef6c0 Delete type=0 #23
2024/01/06-14:04:38.330991 7fc331fef6c0 Manual compaction at level-0 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
2024/01/06-14:04:38.331028 7fc331fef6c0 Manual compaction at level-1 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)

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

@@ -0,0 +1,8 @@
2024/01/06-14:01:42.242252 7fc5b2ffd6c0 Recovering log #16
2024/01/06-14:01:42.253190 7fc5b2ffd6c0 Delete type=3 #14
2024/01/06-14:01:42.253263 7fc5b2ffd6c0 Delete type=0 #16
2024/01/06-14:01:56.748252 7fc331fef6c0 Level-0 table #21: started
2024/01/06-14:01:56.748343 7fc331fef6c0 Level-0 table #21: 0 bytes OK
2024/01/06-14:01:56.755321 7fc331fef6c0 Delete type=0 #19
2024/01/06-14:01:56.755679 7fc331fef6c0 Manual compaction at level-0 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)
2024/01/06-14:01:56.766910 7fc331fef6c0 Manual compaction at level-1 from '!actors!S7FhBajQ5KKhIpj6' @ 72057594037927935 : 1 .. '!folders!BHMWTRHF2lNlAK8u' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
MANIFEST-000010

8
packs/capacreature/LOG Normal file
View File

@@ -0,0 +1,8 @@
2024/01/06-14:02:36.031212 7fc5b37fe6c0 Recovering log #8
2024/01/06-14:02:36.041080 7fc5b37fe6c0 Delete type=3 #6
2024/01/06-14:02:36.041169 7fc5b37fe6c0 Delete type=0 #8
2024/01/06-14:04:38.378297 7fc331fef6c0 Level-0 table #13: started
2024/01/06-14:04:38.378324 7fc331fef6c0 Level-0 table #13: 0 bytes OK
2024/01/06-14:04:38.384506 7fc331fef6c0 Delete type=0 #11
2024/01/06-14:04:38.384734 7fc331fef6c0 Manual compaction at level-0 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)
2024/01/06-14:04:38.384796 7fc331fef6c0 Manual compaction at level-1 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)

View File

@@ -0,0 +1,8 @@
2024/01/06-14:01:42.398117 7fc5b2ffd6c0 Recovering log #4
2024/01/06-14:01:42.407923 7fc5b2ffd6c0 Delete type=3 #2
2024/01/06-14:01:42.407986 7fc5b2ffd6c0 Delete type=0 #4
2024/01/06-14:01:56.831445 7fc331fef6c0 Level-0 table #9: started
2024/01/06-14:01:56.831485 7fc331fef6c0 Level-0 table #9: 0 bytes OK
2024/01/06-14:01:56.837981 7fc331fef6c0 Delete type=0 #7
2024/01/06-14:01:56.853054 7fc331fef6c0 Manual compaction at level-0 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)
2024/01/06-14:01:56.853096 7fc331fef6c0 Manual compaction at level-1 from '!items!JzGNaagJD2jLi9tH' @ 72057594037927935 : 1 .. '!items!LaiHuZ30K4iJr6ce' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

BIN
packs/equipement/000094.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000032
MANIFEST-000103

View File

@@ -1,8 +1,8 @@
2023/12/01-09:39:06.681576 7fef577fe6c0 Recovering log #30
2023/12/01-09:39:06.693076 7fef577fe6c0 Delete type=3 #28
2023/12/01-09:39:06.693136 7fef577fe6c0 Delete type=0 #30
2023/12/01-09:50:10.747791 7fef56ffd6c0 Level-0 table #35: started
2023/12/01-09:50:10.747836 7fef56ffd6c0 Level-0 table #35: 0 bytes OK
2023/12/01-09:50:10.754312 7fef56ffd6c0 Delete type=0 #33
2023/12/01-09:50:10.754473 7fef56ffd6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
2023/12/01-09:50:10.754513 7fef56ffd6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
2024/01/06-14:02:36.006548 7fc5b3fff6c0 Recovering log #101
2024/01/06-14:02:36.016668 7fc5b3fff6c0 Delete type=3 #99
2024/01/06-14:02:36.016734 7fc5b3fff6c0 Delete type=0 #101
2024/01/06-14:04:38.364928 7fc331fef6c0 Level-0 table #106: started
2024/01/06-14:04:38.364954 7fc331fef6c0 Level-0 table #106: 0 bytes OK
2024/01/06-14:04:38.371537 7fc331fef6c0 Delete type=0 #104
2024/01/06-14:04:38.384696 7fc331fef6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
2024/01/06-14:04:38.384768 7fc331fef6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2023/12/01-09:36:46.762028 7ff1ecbfe6c0 Recovering log #25
2023/12/01-09:36:46.771832 7ff1ecbfe6c0 Delete type=3 #23
2023/12/01-09:36:46.771891 7ff1ecbfe6c0 Delete type=0 #25
2023/12/01-09:37:12.127448 7fef56ffd6c0 Level-0 table #31: started
2023/12/01-09:37:12.127484 7fef56ffd6c0 Level-0 table #31: 0 bytes OK
2023/12/01-09:37:12.133959 7fef56ffd6c0 Delete type=0 #29
2023/12/01-09:37:12.155632 7fef56ffd6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
2023/12/01-09:37:12.155701 7fef56ffd6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
2024/01/06-14:01:42.371814 7fc5b27fc6c0 Recovering log #97
2024/01/06-14:01:42.382977 7fc5b27fc6c0 Delete type=3 #95
2024/01/06-14:01:42.383043 7fc5b27fc6c0 Delete type=0 #97
2024/01/06-14:01:56.823868 7fc331fef6c0 Level-0 table #102: started
2024/01/06-14:01:56.823891 7fc331fef6c0 Level-0 table #102: 0 bytes OK
2024/01/06-14:01:56.831270 7fc331fef6c0 Delete type=0 #100
2024/01/06-14:01:56.853043 7fc331fef6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
2024/01/06-14:01:56.853082 7fc331fef6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
packs/heritages/000164.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000102
MANIFEST-000173

View File

@@ -1,8 +1,8 @@
2023/12/01-09:39:06.620746 7ff1ecbfe6c0 Recovering log #100
2023/12/01-09:39:06.631263 7ff1ecbfe6c0 Delete type=3 #98
2023/12/01-09:39:06.631327 7ff1ecbfe6c0 Delete type=0 #100
2023/12/01-09:50:10.694250 7fef56ffd6c0 Level-0 table #105: started
2023/12/01-09:50:10.694272 7fef56ffd6c0 Level-0 table #105: 0 bytes OK
2023/12/01-09:50:10.700492 7fef56ffd6c0 Delete type=0 #103
2023/12/01-09:50:10.707781 7fef56ffd6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2023/12/01-09:50:10.707812 7fef56ffd6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2024/01/06-14:02:35.943568 7fc5b27fc6c0 Recovering log #171
2024/01/06-14:02:35.954177 7fc5b27fc6c0 Delete type=3 #169
2024/01/06-14:02:35.954302 7fc5b27fc6c0 Delete type=0 #171
2024/01/06-14:04:38.324678 7fc331fef6c0 Level-0 table #176: started
2024/01/06-14:04:38.324702 7fc331fef6c0 Level-0 table #176: 0 bytes OK
2024/01/06-14:04:38.330845 7fc331fef6c0 Delete type=0 #174
2024/01/06-14:04:38.331005 7fc331fef6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2024/01/06-14:04:38.331020 7fc331fef6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2023/12/01-09:36:46.695660 7fef577fe6c0 Recovering log #96
2023/12/01-09:36:46.705301 7fef577fe6c0 Delete type=3 #94
2023/12/01-09:36:46.705365 7fef577fe6c0 Delete type=0 #96
2023/12/01-09:37:12.112938 7fef56ffd6c0 Level-0 table #101: started
2023/12/01-09:37:12.112983 7fef56ffd6c0 Level-0 table #101: 0 bytes OK
2023/12/01-09:37:12.120632 7fef56ffd6c0 Delete type=0 #99
2023/12/01-09:37:12.127253 7fef56ffd6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2023/12/01-09:37:12.127284 7fef56ffd6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2024/01/06-14:01:42.306371 7fc5b37fe6c0 Recovering log #167
2024/01/06-14:01:42.319696 7fc5b37fe6c0 Delete type=3 #165
2024/01/06-14:01:42.319750 7fc5b37fe6c0 Delete type=0 #167
2024/01/06-14:01:56.795171 7fc331fef6c0 Level-0 table #172: started
2024/01/06-14:01:56.795214 7fc331fef6c0 Level-0 table #172: 0 bytes OK
2024/01/06-14:01:56.802611 7fc331fef6c0 Delete type=0 #170
2024/01/06-14:01:56.823728 7fc331fef6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2024/01/06-14:01:56.823763 7fc331fef6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

BIN
packs/heros/000005.ldb Normal file

Binary file not shown.

1
packs/heros/CURRENT Normal file
View File

@@ -0,0 +1 @@
MANIFEST-000010

8
packs/heros/LOG Normal file
View File

@@ -0,0 +1,8 @@
2024/01/06-14:02:35.890662 7fc5b27fc6c0 Recovering log #8
2024/01/06-14:02:35.901254 7fc5b27fc6c0 Delete type=3 #6
2024/01/06-14:02:35.901321 7fc5b27fc6c0 Delete type=0 #8
2024/01/06-14:04:38.287507 7fc331fef6c0 Level-0 table #13: started
2024/01/06-14:04:38.287560 7fc331fef6c0 Level-0 table #13: 0 bytes OK
2024/01/06-14:04:38.294328 7fc331fef6c0 Delete type=0 #11
2024/01/06-14:04:38.294611 7fc331fef6c0 Manual compaction at level-0 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)
2024/01/06-14:04:38.304483 7fc331fef6c0 Manual compaction at level-1 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)

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

@@ -0,0 +1,8 @@
2024/01/06-14:01:42.255639 7fc5b37fe6c0 Recovering log #4
2024/01/06-14:01:42.265512 7fc5b37fe6c0 Delete type=3 #2
2024/01/06-14:01:42.265637 7fc5b37fe6c0 Delete type=0 #4
2024/01/06-14:01:56.773277 7fc331fef6c0 Level-0 table #9: started
2024/01/06-14:01:56.773302 7fc331fef6c0 Level-0 table #9: 0 bytes OK
2024/01/06-14:01:56.780579 7fc331fef6c0 Delete type=0 #7
2024/01/06-14:01:56.788099 7fc331fef6c0 Manual compaction at level-0 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)
2024/01/06-14:01:56.794978 7fc331fef6c0 Manual compaction at level-1 from '!actors!2UqntsuFwDpHOKJ6' @ 72057594037927935 : 1 .. '!actors.items!hJb4itLSBq7V4ite.yaFBnMJeBvED0JeP' @ 0 : 0; will stop at (end)

BIN
packs/heros/MANIFEST-000010 Normal file

Binary file not shown.

Binary file not shown.

BIN
packs/metiers/000164.ldb Normal file

Binary file not shown.

0
packs/metiers/000175.log Normal file
View File

View File

@@ -1 +1 @@
MANIFEST-000102
MANIFEST-000173

View File

@@ -1,8 +1,8 @@
2023/12/01-09:39:06.633401 7fef577fe6c0 Recovering log #100
2023/12/01-09:39:06.643130 7fef577fe6c0 Delete type=3 #98
2023/12/01-09:39:06.643178 7fef577fe6c0 Delete type=0 #100
2023/12/01-09:50:10.700604 7fef56ffd6c0 Level-0 table #105: started
2023/12/01-09:50:10.700627 7fef56ffd6c0 Level-0 table #105: 0 bytes OK
2023/12/01-09:50:10.707633 7fef56ffd6c0 Delete type=0 #103
2023/12/01-09:50:10.707791 7fef56ffd6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2023/12/01-09:50:10.707820 7fef56ffd6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2024/01/06-14:02:35.956163 7fc5b3fff6c0 Recovering log #171
2024/01/06-14:02:35.966944 7fc5b3fff6c0 Delete type=3 #169
2024/01/06-14:02:35.967042 7fc5b3fff6c0 Delete type=0 #171
2024/01/06-14:04:38.337558 7fc331fef6c0 Level-0 table #176: started
2024/01/06-14:04:38.337600 7fc331fef6c0 Level-0 table #176: 0 bytes OK
2024/01/06-14:04:38.343987 7fc331fef6c0 Delete type=0 #174
2024/01/06-14:04:38.358301 7fc331fef6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2024/01/06-14:04:38.358386 7fc331fef6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2023/12/01-09:36:46.708601 7ff1ecbfe6c0 Recovering log #96
2023/12/01-09:36:46.718654 7ff1ecbfe6c0 Delete type=3 #94
2023/12/01-09:36:46.718767 7ff1ecbfe6c0 Delete type=0 #96
2023/12/01-09:37:12.099976 7fef56ffd6c0 Level-0 table #101: started
2023/12/01-09:37:12.100003 7fef56ffd6c0 Level-0 table #101: 0 bytes OK
2023/12/01-09:37:12.106417 7fef56ffd6c0 Delete type=0 #99
2023/12/01-09:37:12.127232 7fef56ffd6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2023/12/01-09:37:12.127277 7fef56ffd6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2024/01/06-14:01:42.321425 7fc5b27fc6c0 Recovering log #167
2024/01/06-14:01:42.331552 7fc5b27fc6c0 Delete type=3 #165
2024/01/06-14:01:42.331610 7fc5b27fc6c0 Delete type=0 #167
2024/01/06-14:01:56.809288 7fc331fef6c0 Level-0 table #172: started
2024/01/06-14:01:56.809323 7fc331fef6c0 Level-0 table #172: 0 bytes OK
2024/01/06-14:01:56.817337 7fc331fef6c0 Delete type=0 #170
2024/01/06-14:01:56.823747 7fc331fef6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2024/01/06-14:01:56.823780 7fc331fef6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

BIN
packs/mutations/000005.ldb Normal file

Binary file not shown.

View File

1
packs/mutations/CURRENT Normal file
View File

@@ -0,0 +1 @@
MANIFEST-000010

0
packs/mutations/LOCK Normal file
View File

8
packs/mutations/LOG Normal file
View File

@@ -0,0 +1,8 @@
2024/01/06-14:02:36.042818 7fc5b27fc6c0 Recovering log #8
2024/01/06-14:02:36.053122 7fc5b27fc6c0 Delete type=3 #6
2024/01/06-14:02:36.053189 7fc5b27fc6c0 Delete type=0 #8
2024/01/06-14:04:38.392638 7fc331fef6c0 Level-0 table #13: started
2024/01/06-14:04:38.392680 7fc331fef6c0 Level-0 table #13: 0 bytes OK
2024/01/06-14:04:38.398985 7fc331fef6c0 Delete type=0 #11
2024/01/06-14:04:38.413205 7fc331fef6c0 Manual compaction at level-0 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)
2024/01/06-14:04:38.413234 7fc331fef6c0 Manual compaction at level-1 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)

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

@@ -0,0 +1,8 @@
2024/01/06-14:01:42.409571 7fc5b37fe6c0 Recovering log #4
2024/01/06-14:01:42.420139 7fc5b37fe6c0 Delete type=3 #2
2024/01/06-14:01:42.420191 7fc5b37fe6c0 Delete type=0 #4
2024/01/06-14:01:56.853200 7fc331fef6c0 Level-0 table #9: started
2024/01/06-14:01:56.853254 7fc331fef6c0 Level-0 table #9: 0 bytes OK
2024/01/06-14:01:56.860268 7fc331fef6c0 Delete type=0 #7
2024/01/06-14:01:56.880844 7fc331fef6c0 Manual compaction at level-0 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)
2024/01/06-14:01:56.880959 7fc331fef6c0 Manual compaction at level-1 from '!items!Vnpf6cKVHyd3ugnY' @ 72057594037927935 : 1 .. '!items!Vnpf6cKVHyd3ugnY' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

BIN
packs/origines/000165.ldb Normal file

Binary file not shown.

View File

View File

@@ -1 +1 @@
MANIFEST-000103
MANIFEST-000174

View File

@@ -1,8 +1,8 @@
2023/12/01-09:39:06.608385 7fef57fff6c0 Recovering log #101
2023/12/01-09:39:06.618559 7fef57fff6c0 Delete type=3 #99
2023/12/01-09:39:06.618628 7fef57fff6c0 Delete type=0 #101
2023/12/01-09:50:10.687428 7fef56ffd6c0 Level-0 table #106: started
2023/12/01-09:50:10.687455 7fef56ffd6c0 Level-0 table #106: 0 bytes OK
2023/12/01-09:50:10.694138 7fef56ffd6c0 Delete type=0 #104
2023/12/01-09:50:10.707759 7fef56ffd6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2023/12/01-09:50:10.707828 7fef56ffd6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2024/01/06-14:02:35.930638 7fc5b37fe6c0 Recovering log #172
2024/01/06-14:02:35.940616 7fc5b37fe6c0 Delete type=3 #170
2024/01/06-14:02:35.940695 7fc5b37fe6c0 Delete type=0 #172
2024/01/06-14:04:38.331081 7fc331fef6c0 Level-0 table #177: started
2024/01/06-14:04:38.331108 7fc331fef6c0 Level-0 table #177: 0 bytes OK
2024/01/06-14:04:38.337400 7fc331fef6c0 Delete type=0 #175
2024/01/06-14:04:38.358281 7fc331fef6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2024/01/06-14:04:38.358372 7fc331fef6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2023/12/01-09:36:46.681142 7fef57fff6c0 Recovering log #97
2023/12/01-09:36:46.692047 7fef57fff6c0 Delete type=3 #95
2023/12/01-09:36:46.692102 7fef57fff6c0 Delete type=0 #97
2023/12/01-09:37:12.120793 7fef56ffd6c0 Level-0 table #102: started
2023/12/01-09:37:12.120840 7fef56ffd6c0 Level-0 table #102: 0 bytes OK
2023/12/01-09:37:12.127110 7fef56ffd6c0 Delete type=0 #100
2023/12/01-09:37:12.127263 7fef56ffd6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2023/12/01-09:37:12.127292 7fef56ffd6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2024/01/06-14:01:42.294721 7fc5b2ffd6c0 Recovering log #168
2024/01/06-14:01:42.304461 7fc5b2ffd6c0 Delete type=3 #166
2024/01/06-14:01:42.304514 7fc5b2ffd6c0 Delete type=0 #168
2024/01/06-14:01:56.788115 7fc331fef6c0 Level-0 table #173: started
2024/01/06-14:01:56.788149 7fc331fef6c0 Level-0 table #173: 0 bytes OK
2024/01/06-14:01:56.794846 7fc331fef6c0 Delete type=0 #171
2024/01/06-14:01:56.794998 7fc331fef6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2024/01/06-14:01:56.795021 7fc331fef6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

BIN
packs/peuples/000005.ldb Normal file

Binary file not shown.

0
packs/peuples/000012.log Normal file
View File

1
packs/peuples/CURRENT Normal file
View File

@@ -0,0 +1 @@
MANIFEST-000010

0
packs/peuples/LOCK Normal file
View File

8
packs/peuples/LOG Normal file
View File

@@ -0,0 +1,8 @@
2024/01/06-14:02:36.055446 7fc5b3fff6c0 Recovering log #8
2024/01/06-14:02:36.065436 7fc5b3fff6c0 Delete type=3 #6
2024/01/06-14:02:36.065503 7fc5b3fff6c0 Delete type=0 #8
2024/01/06-14:04:38.384874 7fc331fef6c0 Level-0 table #13: started
2024/01/06-14:04:38.384923 7fc331fef6c0 Level-0 table #13: 0 bytes OK
2024/01/06-14:04:38.392491 7fc331fef6c0 Delete type=0 #11
2024/01/06-14:04:38.413191 7fc331fef6c0 Manual compaction at level-0 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)
2024/01/06-14:04:38.413242 7fc331fef6c0 Manual compaction at level-1 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)

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

@@ -0,0 +1,8 @@
2024/01/06-14:01:42.422174 7fc5b27fc6c0 Recovering log #4
2024/01/06-14:01:42.431754 7fc5b27fc6c0 Delete type=3 #2
2024/01/06-14:01:42.431814 7fc5b27fc6c0 Delete type=0 #4
2024/01/06-14:01:56.860646 7fc331fef6c0 Level-0 table #9: started
2024/01/06-14:01:56.860683 7fc331fef6c0 Level-0 table #9: 0 bytes OK
2024/01/06-14:01:56.867289 7fc331fef6c0 Delete type=0 #7
2024/01/06-14:01:56.880892 7fc331fef6c0 Manual compaction at level-0 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)
2024/01/06-14:01:56.880982 7fc331fef6c0 Manual compaction at level-1 from '!items!5onfuCZmzugZ3PMs' @ 72057594037927935 : 1 .. '!items!qAmsD4MHgywYj6XV' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

BIN
packs/pouvoirs/000082.ldb Normal file

Binary file not shown.

View File

View File

@@ -1 +1 @@
MANIFEST-000018
MANIFEST-000091

View File

@@ -1,8 +1,8 @@
2023/12/01-09:39:06.595181 7ff1ed3ff6c0 Recovering log #16
2023/12/01-09:39:06.605896 7ff1ed3ff6c0 Delete type=3 #14
2023/12/01-09:39:06.605998 7ff1ed3ff6c0 Delete type=0 #16
2023/12/01-09:50:10.680999 7fef56ffd6c0 Level-0 table #21: started
2023/12/01-09:50:10.681032 7fef56ffd6c0 Level-0 table #21: 0 bytes OK
2023/12/01-09:50:10.687287 7fef56ffd6c0 Delete type=0 #19
2023/12/01-09:50:10.694237 7fef56ffd6c0 Manual compaction at level-0 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 0 : 0; will stop at (end)
2023/12/01-09:50:10.707771 7fef56ffd6c0 Manual compaction at level-1 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 0 : 0; will stop at (end)
2024/01/06-14:02:35.917261 7fc5b2ffd6c0 Recovering log #89
2024/01/06-14:02:35.927586 7fc5b2ffd6c0 Delete type=3 #87
2024/01/06-14:02:35.927635 7fc5b2ffd6c0 Delete type=0 #89
2024/01/06-14:04:38.311420 7fc331fef6c0 Level-0 table #94: started
2024/01/06-14:04:38.311468 7fc331fef6c0 Level-0 table #94: 0 bytes OK
2024/01/06-14:04:38.318055 7fc331fef6c0 Delete type=0 #92
2024/01/06-14:04:38.330965 7fc331fef6c0 Manual compaction at level-0 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
2024/01/06-14:04:38.331012 7fc331fef6c0 Manual compaction at level-1 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2023/12/01-09:36:46.666596 7ff1ed3ff6c0 Recovering log #12
2023/12/01-09:36:46.677154 7ff1ed3ff6c0 Delete type=3 #10
2023/12/01-09:36:46.677264 7ff1ed3ff6c0 Delete type=0 #12
2023/12/01-09:37:12.106537 7fef56ffd6c0 Level-0 table #17: started
2023/12/01-09:37:12.106566 7fef56ffd6c0 Level-0 table #17: 0 bytes OK
2023/12/01-09:37:12.112749 7fef56ffd6c0 Delete type=0 #15
2023/12/01-09:37:12.127244 7fef56ffd6c0 Manual compaction at level-0 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 0 : 0; will stop at (end)
2023/12/01-09:37:12.127270 7fef56ffd6c0 Manual compaction at level-1 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 0 : 0; will stop at (end)
2024/01/06-14:01:42.281497 7fc5b3fff6c0 Recovering log #85
2024/01/06-14:01:42.291356 7fc5b3fff6c0 Delete type=3 #83
2024/01/06-14:01:42.291410 7fc5b3fff6c0 Delete type=0 #85
2024/01/06-14:01:56.781086 7fc331fef6c0 Level-0 table #90: started
2024/01/06-14:01:56.781132 7fc331fef6c0 Level-0 table #90: 0 bytes OK
2024/01/06-14:01:56.787863 7fc331fef6c0 Delete type=0 #88
2024/01/06-14:01:56.794958 7fc331fef6c0 Manual compaction at level-0 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)
2024/01/06-14:01:56.795004 7fc331fef6c0 Manual compaction at level-1 from '!folders!1JlatZ9Wfu0qUH6Y' @ 72057594037927935 : 1 .. '!items!zmaCOCCpgO3YtEn6' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

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