Compare commits

...

10 Commits

151 changed files with 1287 additions and 385 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,16 +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);
@@ -116,18 +117,36 @@ export class WastelandActor extends Actor {
WastelandUtility.sortArrayObjectsByName(items)
return items
}
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")
}
@@ -203,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

@@ -6,7 +6,17 @@ export const WASTELAND_CONFIG = {
"echo": "Chemin des Échos",
"reflet": "Chemin des Reflets",
"ame": "Chemin des Âmes",
"mort": "Chemin des Morts"
"mort": "Chemin des Morts",
"vie": "Chemin de Vie",
"guerre": "Chemin des guerres",
"horizon": "Chemin vers l'horizon",
"voleurinvisible": "Chemin du Voleur invisible",
"nuit": "Chemin des Nuits",
"oiseaux": "Chemin des Oiseaux"
},
hubrisType: {
"mental": "Mental",
"physique": "Physique",
},
charmetype: {
tour: "Tour",

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

@@ -16,6 +16,9 @@ export const defaultItemImg = {
artifex: "systems/fvtt-wasteland/assets/icons/artifact.webp",
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-000066
MANIFEST-000149

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.391741 7fef57fff6c0 Recovering log #64
2023/11/30-21:15:46.442719 7fef57fff6c0 Delete type=3 #62
2023/11/30-21:15:46.442861 7fef57fff6c0 Delete type=0 #64
2023/11/30-21:27:11.875054 7fef56ffd6c0 Level-0 table #69: started
2023/11/30-21:27:11.875091 7fef56ffd6c0 Level-0 table #69: 0 bytes OK
2023/11/30-21:27:11.883212 7fef56ffd6c0 Delete type=0 #67
2023/11/30-21:27:11.905474 7fef56ffd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.905597 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/11/30-18:21:36.855274 7fef57fff6c0 Recovering log #60
2023/11/30-18:21:36.866688 7fef57fff6c0 Delete type=3 #58
2023/11/30-18:21:36.866781 7fef57fff6c0 Delete type=0 #60
2023/11/30-18:49:35.135280 7fef56ffd6c0 Level-0 table #65: started
2023/11/30-18:49:35.135323 7fef56ffd6c0 Level-0 table #65: 0 bytes OK
2023/11/30-18:49:35.141534 7fef56ffd6c0 Delete type=0 #63
2023/11/30-18:49:35.147977 7fef56ffd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2023/11/30-18:49:35.158510 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-000019
MANIFEST-000103

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.497302 7fef577fe6c0 Recovering log #16
2023/11/30-21:15:46.549019 7fef577fe6c0 Delete type=3 #14
2023/11/30-21:15:46.549163 7fef577fe6c0 Delete type=0 #16
2023/11/30-21:27:11.898240 7fef56ffd6c0 Level-0 table #22: started
2023/11/30-21:27:11.898354 7fef56ffd6c0 Level-0 table #22: 0 bytes OK
2023/11/30-21:27:11.905296 7fef56ffd6c0 Delete type=0 #20
2023/11/30-21:27:11.905567 7fef56ffd6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.905677 7fef56ffd6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 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,15 +1,8 @@
2023/11/30-18:21:36.889079 7fef577fe6c0 Recovering log #12
2023/11/30-18:21:36.901449 7fef577fe6c0 Delete type=3 #10
2023/11/30-18:21:36.901569 7fef577fe6c0 Delete type=0 #12
2023/11/30-18:49:35.147989 7fef56ffd6c0 Level-0 table #17: started
2023/11/30-18:49:35.151764 7fef56ffd6c0 Level-0 table #17: 20487 bytes OK
2023/11/30-18:49:35.158381 7fef56ffd6c0 Delete type=0 #15
2023/11/30-18:49:35.164655 7fef56ffd6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2023/11/30-18:49:35.172440 7fef56ffd6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at '!items!y47dBO3Mf5Pn7tOd' @ 120 : 1
2023/11/30-18:49:35.172458 7fef56ffd6c0 Compacting 1@1 + 1@2 files
2023/11/30-18:49:35.176393 7fef56ffd6c0 Generated table #18@1: 65 keys, 10984 bytes
2023/11/30-18:49:35.176421 7fef56ffd6c0 Compacted 1@1 + 1@2 files => 10984 bytes
2023/11/30-18:49:35.182314 7fef56ffd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2023/11/30-18:49:35.182554 7fef56ffd6c0 Delete type=2 #5
2023/11/30-18:49:35.182658 7fef56ffd6c0 Delete type=2 #17
2023/11/30-18:49:35.182755 7fef56ffd6c0 Manual compaction at level-1 from '!items!y47dBO3Mf5Pn7tOd' @ 120 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 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-000090
MANIFEST-000173

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.230478 7ff1ed3ff6c0 Recovering log #88
2023/11/30-21:15:46.280445 7ff1ed3ff6c0 Delete type=3 #86
2023/11/30-21:15:46.280560 7ff1ed3ff6c0 Delete type=0 #88
2023/11/30-21:27:11.868243 7fef56ffd6c0 Level-0 table #93: started
2023/11/30-21:27:11.868282 7fef56ffd6c0 Level-0 table #93: 0 bytes OK
2023/11/30-21:27:11.874637 7fef56ffd6c0 Delete type=0 #91
2023/11/30-21:27:11.874845 7fef56ffd6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.874886 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/11/30-18:21:36.803753 7ff1ed3ff6c0 Recovering log #84
2023/11/30-18:21:36.814923 7ff1ed3ff6c0 Delete type=3 #82
2023/11/30-18:21:36.815015 7ff1ed3ff6c0 Delete type=0 #84
2023/11/30-18:49:35.114429 7fef56ffd6c0 Level-0 table #89: started
2023/11/30-18:49:35.114452 7fef56ffd6c0 Level-0 table #89: 0 bytes OK
2023/11/30-18:49:35.121805 7fef56ffd6c0 Delete type=0 #87
2023/11/30-18:49:35.128443 7fef56ffd6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2023/11/30-18:49:35.135263 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-000090
MANIFEST-000173

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.283399 7fef577fe6c0 Recovering log #88
2023/11/30-21:15:46.335688 7fef577fe6c0 Delete type=3 #86
2023/11/30-21:15:46.335822 7fef577fe6c0 Delete type=0 #88
2023/11/30-21:27:11.860229 7fef56ffd6c0 Level-0 table #93: started
2023/11/30-21:27:11.860269 7fef56ffd6c0 Level-0 table #93: 0 bytes OK
2023/11/30-21:27:11.868082 7fef56ffd6c0 Delete type=0 #91
2023/11/30-21:27:11.874830 7fef56ffd6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.874872 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/11/30-18:21:36.819958 7fef577fe6c0 Recovering log #84
2023/11/30-18:21:36.830750 7fef577fe6c0 Delete type=3 #82
2023/11/30-18:21:36.830843 7fef577fe6c0 Delete type=0 #84
2023/11/30-18:49:35.122004 7fef56ffd6c0 Level-0 table #89: started
2023/11/30-18:49:35.122052 7fef56ffd6c0 Level-0 table #89: 0 bytes OK
2023/11/30-18:49:35.128309 7fef56ffd6c0 Delete type=0 #87
2023/11/30-18:49:35.135245 7fef56ffd6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2023/11/30-18:49:35.141637 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-000091
MANIFEST-000174

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.184229 7fef57fff6c0 Recovering log #89
2023/11/30-21:15:46.226456 7fef57fff6c0 Delete type=3 #87
2023/11/30-21:15:46.226596 7fef57fff6c0 Delete type=0 #89
2023/11/30-21:27:11.846165 7fef56ffd6c0 Level-0 table #94: started
2023/11/30-21:27:11.846241 7fef56ffd6c0 Level-0 table #94: 0 bytes OK
2023/11/30-21:27:11.853264 7fef56ffd6c0 Delete type=0 #92
2023/11/30-21:27:11.874798 7fef56ffd6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.874859 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/11/30-18:21:36.788559 7fef57fff6c0 Recovering log #85
2023/11/30-18:21:36.800142 7fef57fff6c0 Delete type=3 #83
2023/11/30-18:21:36.800237 7fef57fff6c0 Delete type=0 #85
2023/11/30-18:49:35.108381 7fef56ffd6c0 Level-0 table #90: started
2023/11/30-18:49:35.108404 7fef56ffd6c0 Level-0 table #90: 0 bytes OK
2023/11/30-18:49:35.114322 7fef56ffd6c0 Delete type=0 #88
2023/11/30-18:49:35.121969 7fef56ffd6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2023/11/30-18:49:35.128463 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-000006
MANIFEST-000091

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.128616 7ff1ecbfe6c0 Recovering log #4
2023/11/30-21:15:46.180837 7ff1ecbfe6c0 Delete type=3 #2
2023/11/30-21:15:46.180979 7ff1ecbfe6c0 Delete type=0 #4
2023/11/30-21:27:11.853503 7fef56ffd6c0 Level-0 table #9: started
2023/11/30-21:27:11.853566 7fef56ffd6c0 Level-0 table #9: 0 bytes OK
2023/11/30-21:27:11.860090 7fef56ffd6c0 Delete type=0 #7
2023/11/30-21:27:11.874816 7fef56ffd6c0 Manual compaction at level-0 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.874899 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,5 +1,8 @@
2023/11/30-18:21:36.784020 7ff1ecbfe6c0 Delete type=3 #1
2023/11/30-18:49:35.089939 7fef56ffd6c0 Level-0 table #5: started
2023/11/30-18:49:35.094204 7fef56ffd6c0 Level-0 table #5: 38311 bytes OK
2023/11/30-18:49:35.100869 7fef56ffd6c0 Delete type=0 #3
2023/11/30-18:49:35.114408 7fef56ffd6c0 Manual compaction at level-0 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