Compare commits
27 Commits
fvtt-dark-
...
fvtt-dark-
Author | SHA1 | Date | |
---|---|---|---|
9786c07f1b | |||
2520bec30f | |||
9ad34b4672 | |||
ae36be975d | |||
69eaa8fc66 | |||
b741cffd96 | |||
e5296a4bcd | |||
9f93849a9d | |||
14c7e54b3d | |||
ce3359b2f0 | |||
02bf6cc10a | |||
dc5a1056b7 | |||
c7ccc50db0 | |||
1f8275e153 | |||
e19e6df228 | |||
714485b688 | |||
ceed6efc0b | |||
06e265586b | |||
78edf6b80b | |||
60112d1a79 | |||
652f24b863 | |||
69322cccfe | |||
5d0c53f52b | |||
9557f18eb2 | |||
c3758da16b | |||
7dbc5e44b7 | |||
880109f189 |
BIN
images/icons/magic.webp
Normal file
BIN
images/icons/magic.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.7 KiB |
BIN
images/icons/psychicpowers.webp
Normal file
BIN
images/icons/psychicpowers.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.2 KiB |
@ -40,10 +40,15 @@ export class DarkStarsActorSheet extends ActorSheet {
|
|||||||
skills: this.actor.getSkills( ),
|
skills: this.actor.getSkills( ),
|
||||||
perks: this.actor.getPerks( ),
|
perks: this.actor.getPerks( ),
|
||||||
weapons: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getWeapons()) ),
|
weapons: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getWeapons()) ),
|
||||||
|
ammos: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getAmmos()) ),
|
||||||
|
spells: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getSpells()) ),
|
||||||
|
powers: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getPowers()) ),
|
||||||
armors: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getArmors())),
|
armors: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getArmors())),
|
||||||
shields: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getShields())),
|
shields: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getShields())),
|
||||||
equipments: this.actor.checkAndPrepareEquipments(duplicate(this.actor.getEquipmentsOnly()) ),
|
equipments: this.actor.checkAndPrepareEquipments(duplicate(this.actor.getEquipmentsOnly()) ),
|
||||||
equippedWeapons: this.actor.checkAndPrepareEquipments(duplicate(this.actor.getEquippedWeapons()) ),
|
equippedWeapons: this.actor.checkAndPrepareEquipments(duplicate(this.actor.getEquippedWeapons()) ),
|
||||||
|
cybers: this.actor.checkAndPrepareEquipments(duplicate(this.actor.getCybers()) ),
|
||||||
|
genetics: this.actor.checkAndPrepareEquipments(duplicate(this.actor.getGenetics()) ),
|
||||||
equippedArmor: this.actor.getEquippedArmor(),
|
equippedArmor: this.actor.getEquippedArmor(),
|
||||||
equippedShield: this.actor.getEquippedShield(),
|
equippedShield: this.actor.getEquippedShield(),
|
||||||
subActors: duplicate(this.actor.getSubActors()),
|
subActors: duplicate(this.actor.getSubActors()),
|
||||||
@ -107,6 +112,11 @@ export class DarkStarsActorSheet extends ActorSheet {
|
|||||||
this.actor.delSubActor(actorId);
|
this.actor.delSubActor(actorId);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
html.find('.edit-weapon-ammo').change(ev => {
|
||||||
|
const li = $(ev.currentTarget).parents(".item")
|
||||||
|
let weaponId = li.data("item-id")
|
||||||
|
this.actor.setWeaponAmmo( weaponId, ev.currentTarget.value )
|
||||||
|
})
|
||||||
html.find('.skill-used-id').change(event => {
|
html.find('.skill-used-id').change(event => {
|
||||||
const li = $(event.currentTarget).parents(".item");
|
const li = $(event.currentTarget).parents(".item");
|
||||||
this.actor.setSkillUsed( li.data("item-id"), event.currentTarget.checked );
|
this.actor.setSkillUsed( li.data("item-id"), event.currentTarget.checked );
|
||||||
|
@ -87,6 +87,11 @@ export class DarkStarsActor extends Actor {
|
|||||||
deriv.si.value = Math.round( ((attr.dex.value + attr.sel.value) / 5) + 0.5) + deriv.si.bonus
|
deriv.si.value = Math.round( ((attr.dex.value + attr.sel.value) / 5) + 0.5) + deriv.si.bonus
|
||||||
|
|
||||||
secondary.hp.max = ((attr.con.value + attr.siz.value ) * 2) + secondary.hp.bonus
|
secondary.hp.max = ((attr.con.value + attr.siz.value ) * 2) + secondary.hp.bonus
|
||||||
|
for(let key in this.system.hitlocations) {
|
||||||
|
let loc = this.system.hitlocations[key]
|
||||||
|
loc.max = Math.floor(secondary.hp.max * loc.ratio)
|
||||||
|
}
|
||||||
|
|
||||||
secondary.fp.max = 10 + attr.str.value + attr.con.value + secondary.fp.bonus
|
secondary.fp.max = 10 + attr.str.value + attr.con.value + secondary.fp.bonus
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -125,6 +130,16 @@ export class DarkStarsActor extends Actor {
|
|||||||
DarkStarsUtility.sortArrayObjectsByName(comp)
|
DarkStarsUtility.sortArrayObjectsByName(comp)
|
||||||
return comp;
|
return comp;
|
||||||
}
|
}
|
||||||
|
getSpells() {
|
||||||
|
let comp = duplicate(this.items.filter(item => item.type == 'spell') || []);
|
||||||
|
DarkStarsUtility.sortArrayObjectsByName(comp)
|
||||||
|
return comp;
|
||||||
|
}
|
||||||
|
getPowers() {
|
||||||
|
let comp = duplicate(this.items.filter(item => item.type == 'psychic') || []);
|
||||||
|
DarkStarsUtility.sortArrayObjectsByName(comp)
|
||||||
|
return comp;
|
||||||
|
}
|
||||||
getEquippedArmor() {
|
getEquippedArmor() {
|
||||||
let comp = this.items.find(item => item.type == 'armor' && item.system.equipped)
|
let comp = this.items.find(item => item.type == 'armor' && item.system.equipped)
|
||||||
if (comp) {
|
if (comp) {
|
||||||
@ -133,6 +148,17 @@ export class DarkStarsActor extends Actor {
|
|||||||
return undefined
|
return undefined
|
||||||
}
|
}
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
|
getCybers() {
|
||||||
|
let comp = duplicate(this.items.filter(item => item.type == 'cyber') || []);
|
||||||
|
DarkStarsUtility.sortArrayObjectsByName(comp)
|
||||||
|
return comp;
|
||||||
|
}
|
||||||
|
getGenetics() {
|
||||||
|
let comp = duplicate(this.items.filter(item => item.type == 'genetic') || []);
|
||||||
|
DarkStarsUtility.sortArrayObjectsByName(comp)
|
||||||
|
return comp;
|
||||||
|
}
|
||||||
|
/* -------------------------------------------- */
|
||||||
getShields() {
|
getShields() {
|
||||||
let comp = duplicate(this.items.filter(item => item.type == 'shield') || []);
|
let comp = duplicate(this.items.filter(item => item.type == 'shield') || []);
|
||||||
DarkStarsUtility.sortArrayObjectsByName(comp)
|
DarkStarsUtility.sortArrayObjectsByName(comp)
|
||||||
@ -147,6 +173,13 @@ export class DarkStarsActor extends Actor {
|
|||||||
}
|
}
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
checkAndPrepareEquipment(item) {
|
checkAndPrepareEquipment(item) {
|
||||||
|
// Dynamic assign ammo for the weapon
|
||||||
|
if (item.type == "weapon" && item.system.needammo) {
|
||||||
|
let ammo = this.items.find(ammo => ammo.type == "ammo" && item.system.ammoid == ammo.id)
|
||||||
|
if (ammo) {
|
||||||
|
item.ammo = duplicate(ammo)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
@ -170,6 +203,12 @@ export class DarkStarsActor extends Actor {
|
|||||||
return comp;
|
return comp;
|
||||||
}
|
}
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
|
getAmmos() {
|
||||||
|
let comp = duplicate(this.items.filter(item => item.type == 'ammo') || []);
|
||||||
|
DarkStarsUtility.sortArrayObjectsByName(comp)
|
||||||
|
return comp;
|
||||||
|
}
|
||||||
|
/* -------------------------------------------- */
|
||||||
getItemById(id) {
|
getItemById(id) {
|
||||||
let item = this.items.find(item => item.id == id);
|
let item = this.items.find(item => item.id == id);
|
||||||
if (item) {
|
if (item) {
|
||||||
@ -177,7 +216,13 @@ export class DarkStarsActor extends Actor {
|
|||||||
}
|
}
|
||||||
return item;
|
return item;
|
||||||
}
|
}
|
||||||
|
/* -------------------------------------------- */
|
||||||
|
setWeaponAmmo(weaponId, ammoId) {
|
||||||
|
let weapon = this.items.get(weaponId)
|
||||||
|
if(weapon) {
|
||||||
|
this.updateEmbeddedDocuments('Item', [ {_id: weapon.id, 'system.ammoid': ammoId} ])
|
||||||
|
}
|
||||||
|
}
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
setSkillUsed( skillId, checked) {
|
setSkillUsed( skillId, checked) {
|
||||||
let skill = this.items.get(skillId)
|
let skill = this.items.get(skillId)
|
||||||
@ -380,12 +425,14 @@ export class DarkStarsActor extends Actor {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
getInitiativeScore(combatId, combatantId) {
|
hasLastWord() {
|
||||||
if (this.type == 'character') {
|
return this.items.find(i => i.type == "perk" && i.name.toLowerCase() === "last word")
|
||||||
this.rollMR(true, combatId, combatantId)
|
|
||||||
}
|
}
|
||||||
console.log("Init required !!!!")
|
/* -------------------------------------------- */
|
||||||
return -1;
|
getInitiativeScore() {
|
||||||
|
let initFormula = (this.system.derivated.si.value + this.system.derivated.si.bonus) + "d6"
|
||||||
|
let initRoll = new Roll(initFormula).roll({ async: false })
|
||||||
|
return initRoll.total
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
@ -611,6 +658,7 @@ export class DarkStarsActor extends Actor {
|
|||||||
rollData.mode = "weapon"
|
rollData.mode = "weapon"
|
||||||
rollData.skill = skill
|
rollData.skill = skill
|
||||||
rollData.weapon = weapon
|
rollData.weapon = weapon
|
||||||
|
this.checkAndPrepareEquipment(weapon)
|
||||||
rollData.img = weapon.img
|
rollData.img = weapon.img
|
||||||
this.startRoll(rollData)
|
this.startRoll(rollData)
|
||||||
} else {
|
} else {
|
||||||
|
@ -4,27 +4,44 @@ import { DarkStarsUtility } from "./dark-stars-utility.js";
|
|||||||
export class DarkStarsCombat extends Combat {
|
export class DarkStarsCombat extends Combat {
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
async rollInitiative(ids, formula = undefined, messageOptions = {} ) {
|
processOtherTurns(c, initScore) {
|
||||||
ids = typeof ids === "string" ? [ids] : ids;
|
let toCreate = []
|
||||||
for (let cId = 0; cId < ids.length; cId++) {
|
let token = canvas.tokens.get(c.tokenId)
|
||||||
const c = this.combatants.get(ids[cId]);
|
let hasLastWord = token.actor.hasLastWord()
|
||||||
let id = c._id || c.id;
|
while ( (initScore > 5) || (hasLastWord && initScore >= 5)) {
|
||||||
let initBonus = c.actor ? c.actor.getInitiativeScore( this.id, id ) : -1;
|
initScore -= 5;
|
||||||
await this.updateEmbeddedDocuments("Combatant", [ { _id: id, initiative: initBonus } ]);
|
toCreate.push({tokenId: c.tokenId, sceneId: c.sceneId, actorId: c.actorId, hidden: c.hidden, initiative: initScore, flags: { world: { isDuplicated: true} } } );
|
||||||
|
}
|
||||||
|
this.createEmbeddedDocuments("Combatant", toCreate);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* -------------------------------------------- */
|
||||||
|
async rollInitiative(ids, formula = undefined, messageOptions = {}) {
|
||||||
|
ids = typeof ids === "string" ? [ids] : ids;
|
||||||
|
for (let cId of ids) {
|
||||||
|
const c = this.combatants.get(cId);
|
||||||
|
let id = c._id || c.id;
|
||||||
|
let initScore = c.actor ? c.actor.getInitiativeScore(this.id, id) : -1;
|
||||||
|
await this.updateEmbeddedDocuments("Combatant", [{ _id: id, initiative: initScore }]);
|
||||||
|
setTimeout(() => this.processOtherTurns(c, initScore), 400)
|
||||||
|
}
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* -------------------------------------------- */
|
||||||
|
nextRound() {
|
||||||
|
super.nextRound()
|
||||||
|
let toDelete = []
|
||||||
|
for (let c of this.combatants) {
|
||||||
|
if (c.flags?.world?.isDuplicated) {
|
||||||
|
toDelete.push(c._id)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.deleteEmbeddedDocuments("Combatant", toDelete);
|
||||||
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
_onUpdate(changed, options, userId) {
|
_onUpdate(changed, options, userId) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
|
||||||
static async checkTurnPosition() {
|
|
||||||
while (game.combat.turn > 0) {
|
|
||||||
await game.combat.previousTurn()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,22 @@ export const DARKSTARS_CONFIG = {
|
|||||||
perktypes: {
|
perktypes: {
|
||||||
"normal": "Normal",
|
"normal": "Normal",
|
||||||
"advanced": "Advanced",
|
"advanced": "Advanced",
|
||||||
"role": "Role"
|
"role": "Role",
|
||||||
|
"job": "Job"
|
||||||
|
},
|
||||||
|
magicTypes: {
|
||||||
|
"lemurian": "Lemurian",
|
||||||
|
"bloodmagic": "Blood Magic Ritual",
|
||||||
|
"ritual": "Ritual",
|
||||||
|
"miracle": "Miracle"
|
||||||
|
},
|
||||||
|
cyberTypes: {
|
||||||
|
"I": "I",
|
||||||
|
"P": "P",
|
||||||
|
"U": "U",
|
||||||
|
"W": "W",
|
||||||
|
"E": "E",
|
||||||
|
"GS": "GS"
|
||||||
},
|
},
|
||||||
range: {
|
range: {
|
||||||
"1": "Close",
|
"1": "Close",
|
||||||
|
@ -8,7 +8,9 @@ export const defaultItemImg = {
|
|||||||
perk: "systems/fvtt-dark-stars/images/icons/perk.webp",
|
perk: "systems/fvtt-dark-stars/images/icons/perk.webp",
|
||||||
ability: "systems/fvtt-dark-stars/images/icons/ability.webp",
|
ability: "systems/fvtt-dark-stars/images/icons/ability.webp",
|
||||||
genetic: "systems/fvtt-dark-stars/images/icons/genetic.webp",
|
genetic: "systems/fvtt-dark-stars/images/icons/genetic.webp",
|
||||||
cyber: "systems/fvtt-dark-stars/images/icons/cyber.webp"
|
cyber: "systems/fvtt-dark-stars/images/icons/cyber.webp",
|
||||||
|
spell: "systems/fvtt-dark-stars/images/icons/magic.webp",
|
||||||
|
psychic: "systems/fvtt-dark-stars/images/icons/psychicpowers.webp",
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -18,6 +18,7 @@ import { DarkStarsItem } from "./dark-stars-item.js";
|
|||||||
import { DarkStarsHotbar } from "./dark-stars-hotbar.js"
|
import { DarkStarsHotbar } from "./dark-stars-hotbar.js"
|
||||||
import { DarkStarsCommands } from "./dark-stars-commands.js"
|
import { DarkStarsCommands } from "./dark-stars-commands.js"
|
||||||
import { DARKSTARS_CONFIG } from "./dark-stars-config.js";
|
import { DARKSTARS_CONFIG } from "./dark-stars-config.js";
|
||||||
|
import { ClassCounter} from "https://www.uberwald.me/fvtt_appcount/count-class-ready.js"
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
/* Foundry VTT Initialization */
|
/* Foundry VTT Initialization */
|
||||||
@ -91,15 +92,11 @@ Hooks.once("ready", function () {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// CSS patch for v9
|
|
||||||
if (game.version) {
|
|
||||||
let sidebar = document.getElementById("sidebar");
|
|
||||||
sidebar.style.width = "min-content";
|
|
||||||
}
|
|
||||||
|
|
||||||
welcomeMessage();
|
welcomeMessage();
|
||||||
DarkStarsUtility.ready()
|
DarkStarsUtility.ready()
|
||||||
DarkStarsCommands.init()
|
DarkStarsCommands.init()
|
||||||
|
ClassCounter.registerUsageCount()
|
||||||
})
|
})
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
|
@ -263,6 +263,14 @@ export class DarkStarsUtility {
|
|||||||
if (roll == 10) return "leftleg"
|
if (roll == 10) return "leftleg"
|
||||||
return "abdomen"
|
return "abdomen"
|
||||||
}
|
}
|
||||||
|
/* -------------------------------------------- */
|
||||||
|
static locationMultiplier(location) {
|
||||||
|
if (location == "head") return 0.3
|
||||||
|
if (location.includes("arm")) return 0.2
|
||||||
|
if (location.includes("leg")) return 0.4
|
||||||
|
if (location == "chest") return 0.5
|
||||||
|
return 0.3 // Abdomen case
|
||||||
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
static async rollDarkStars(rollData) {
|
static async rollDarkStars(rollData) {
|
||||||
@ -300,16 +308,21 @@ export class DarkStarsUtility {
|
|||||||
rollData.isSuccess = rollData.diceResult == 1 || rollData.diceResult <= rollData.percentValue
|
rollData.isSuccess = rollData.diceResult == 1 || rollData.diceResult <= rollData.percentValue
|
||||||
rollData.isFailure = rollData.diceResult == 100 || rollData.diceResult > rollData.percentValue
|
rollData.isFailure = rollData.diceResult == 100 || rollData.diceResult > rollData.percentValue
|
||||||
rollData.degrees = Math.floor(rollData.percentValue / 10) - Math.floor(rollData.diceResult / 10)
|
rollData.degrees = Math.floor(rollData.percentValue / 10) - Math.floor(rollData.diceResult / 10)
|
||||||
|
rollData.damageMultiplier = rollData.isCriticalSuccess ? 2 : 1
|
||||||
|
|
||||||
if (rollData.reroll) {
|
if (rollData.reroll) {
|
||||||
actor.modifyRerolls(-1)
|
actor.modifyRerolls(-1)
|
||||||
rollData.rerolls = 0 // DIsable rerolls
|
rollData.rerolls = 0 // DIsable rerolls
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (rollData.mode == "weapon") {
|
||||||
if (rollData.weaponAiming == "none") {
|
if (rollData.weaponAiming == "none") {
|
||||||
let rollLoc = new Roll("1d10").roll({ async: false })
|
let rollLoc = new Roll("1d10").roll({ async: false })
|
||||||
rollData.weaponAiming = this.getAimingLocation(rollLoc.total)
|
rollData.weaponAiming = this.getAimingLocation(rollLoc.total)
|
||||||
}
|
}
|
||||||
|
// Compute
|
||||||
|
rollData.locationMultiplier = this.locationMultiplier(rollData.weaponAiming)
|
||||||
|
}
|
||||||
|
|
||||||
let msg = await this.createChatWithRollMode(rollData.alias, {
|
let msg = await this.createChatWithRollMode(rollData.alias, {
|
||||||
content: await renderTemplate(`systems/fvtt-dark-stars/templates/chat/chat-generic-result.hbs`, rollData)
|
content: await renderTemplate(`systems/fvtt-dark-stars/templates/chat/chat-generic-result.hbs`, rollData)
|
||||||
|
6
packs/.directory
Normal file
6
packs/.directory
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
[Dolphin]
|
||||||
|
HeaderColumnWidths=301,118,148,122
|
||||||
|
Timestamp=2024,1,26,8,35,29.906
|
||||||
|
Version=4
|
||||||
|
ViewMode=1
|
||||||
|
VisibleRoles=Details_text,Details_size,Details_modificationtime,Details_creationtime,CustomizedDetails
|
BIN
packs/aldebaran/000119.ldb
Normal file
BIN
packs/aldebaran/000119.ldb
Normal file
Binary file not shown.
0
packs/aldebaran/000158.log
Normal file
0
packs/aldebaran/000158.log
Normal file
1
packs/aldebaran/CURRENT
Normal file
1
packs/aldebaran/CURRENT
Normal file
@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000156
|
0
packs/aldebaran/LOCK
Normal file
0
packs/aldebaran/LOCK
Normal file
7
packs/aldebaran/LOG
Normal file
7
packs/aldebaran/LOG
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
2024/02/25-13:15:17.040923 7f0428e006c0 Recovering log #154
|
||||||
|
2024/02/25-13:15:17.050889 7f0428e006c0 Delete type=3 #152
|
||||||
|
2024/02/25-13:15:17.051016 7f0428e006c0 Delete type=0 #154
|
||||||
|
2024/02/25-13:15:44.030181 7f0421a006c0 Level-0 table #159: started
|
||||||
|
2024/02/25-13:15:44.030239 7f0421a006c0 Level-0 table #159: 0 bytes OK
|
||||||
|
2024/02/25-13:15:44.051396 7f0421a006c0 Delete type=0 #157
|
||||||
|
2024/02/25-13:15:44.070454 7f0421a006c0 Manual compaction at level-0 from '!folders!MA6uFJMVebGeayIk' @ 72057594037927935 : 1 .. '!items!zhjdppKgrON7wJn7' @ 0 : 0; will stop at (end)
|
7
packs/aldebaran/LOG.old
Normal file
7
packs/aldebaran/LOG.old
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
2024/02/25-13:11:04.967786 7f0423e006c0 Recovering log #150
|
||||||
|
2024/02/25-13:11:04.979090 7f0423e006c0 Delete type=3 #148
|
||||||
|
2024/02/25-13:11:04.979164 7f0423e006c0 Delete type=0 #150
|
||||||
|
2024/02/25-13:14:07.621628 7f0421a006c0 Level-0 table #155: started
|
||||||
|
2024/02/25-13:14:07.621670 7f0421a006c0 Level-0 table #155: 0 bytes OK
|
||||||
|
2024/02/25-13:14:07.627835 7f0421a006c0 Delete type=0 #153
|
||||||
|
2024/02/25-13:14:07.628028 7f0421a006c0 Manual compaction at level-0 from '!folders!MA6uFJMVebGeayIk' @ 72057594037927935 : 1 .. '!items!zhjdppKgrON7wJn7' @ 0 : 0; will stop at (end)
|
BIN
packs/aldebaran/MANIFEST-000156
Normal file
BIN
packs/aldebaran/MANIFEST-000156
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/armor/000186.ldb
Normal file
BIN
packs/armor/000186.ldb
Normal file
Binary file not shown.
0
packs/armor/000201.log
Normal file
0
packs/armor/000201.log
Normal file
@ -1 +1 @@
|
|||||||
MANIFEST-000034
|
MANIFEST-000199
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/10/02-23:14:23.347986 7f9ff37fe6c0 Recovering log #32
|
2024/02/25-13:11:04.806524 7f0422a006c0 Recovering log #197
|
||||||
2023/10/02-23:14:23.358654 7f9ff37fe6c0 Delete type=3 #30
|
2024/02/25-13:11:04.817703 7f0422a006c0 Delete type=3 #195
|
||||||
2023/10/02-23:14:23.358719 7f9ff37fe6c0 Delete type=0 #32
|
2024/02/25-13:11:04.817799 7f0422a006c0 Delete type=0 #197
|
||||||
2023/10/02-23:14:38.403000 7f9d71bff6c0 Level-0 table #37: started
|
2024/02/25-13:14:07.532693 7f0421a006c0 Level-0 table #202: started
|
||||||
2023/10/02-23:14:38.403060 7f9d71bff6c0 Level-0 table #37: 0 bytes OK
|
2024/02/25-13:14:07.532731 7f0421a006c0 Level-0 table #202: 0 bytes OK
|
||||||
2023/10/02-23:14:38.409459 7f9d71bff6c0 Delete type=0 #35
|
2024/02/25-13:14:07.539153 7f0421a006c0 Delete type=0 #200
|
||||||
2023/10/02-23:14:38.416094 7f9d71bff6c0 Manual compaction at level-0 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
|
2024/02/25-13:14:07.539281 7f0421a006c0 Manual compaction at level-0 from '!items!0JWjCJaD6OOouqTj' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||||
2023/10/02-23:14:38.416119 7f9d71bff6c0 Manual compaction at level-1 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
|
2024/02/25-13:14:07.539306 7f0421a006c0 Manual compaction at level-1 from '!items!0JWjCJaD6OOouqTj' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/10/02-23:10:18.443082 7f9ff27fc6c0 Recovering log #28
|
2024/02/25-13:04:05.224949 7f0428e006c0 Recovering log #193
|
||||||
2023/10/02-23:10:18.496390 7f9ff27fc6c0 Delete type=3 #26
|
2024/02/25-13:04:05.236046 7f0428e006c0 Delete type=3 #191
|
||||||
2023/10/02-23:10:18.496457 7f9ff27fc6c0 Delete type=0 #28
|
2024/02/25-13:04:05.236134 7f0428e006c0 Delete type=0 #193
|
||||||
2023/10/02-23:10:47.651296 7f9d71bff6c0 Level-0 table #33: started
|
2024/02/25-13:10:09.480522 7f0421a006c0 Level-0 table #198: started
|
||||||
2023/10/02-23:10:47.651362 7f9d71bff6c0 Level-0 table #33: 0 bytes OK
|
2024/02/25-13:10:09.480555 7f0421a006c0 Level-0 table #198: 0 bytes OK
|
||||||
2023/10/02-23:10:47.687557 7f9d71bff6c0 Delete type=0 #31
|
2024/02/25-13:10:09.486678 7f0421a006c0 Delete type=0 #196
|
||||||
2023/10/02-23:10:47.767121 7f9d71bff6c0 Manual compaction at level-0 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
|
2024/02/25-13:10:09.493365 7f0421a006c0 Manual compaction at level-0 from '!items!0JWjCJaD6OOouqTj' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||||
2023/10/02-23:10:47.767168 7f9d71bff6c0 Manual compaction at level-1 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
|
2024/02/25-13:10:09.499939 7f0421a006c0 Manual compaction at level-1 from '!items!0JWjCJaD6OOouqTj' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||||
|
BIN
packs/armor/MANIFEST-000199
Normal file
BIN
packs/armor/MANIFEST-000199
Normal file
Binary file not shown.
BIN
packs/beyondtheblacksea/000124.ldb
Normal file
BIN
packs/beyondtheblacksea/000124.ldb
Normal file
Binary file not shown.
0
packs/beyondtheblacksea/000151.log
Normal file
0
packs/beyondtheblacksea/000151.log
Normal file
1
packs/beyondtheblacksea/CURRENT
Normal file
1
packs/beyondtheblacksea/CURRENT
Normal file
@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000149
|
0
packs/beyondtheblacksea/LOCK
Normal file
0
packs/beyondtheblacksea/LOCK
Normal file
7
packs/beyondtheblacksea/LOG
Normal file
7
packs/beyondtheblacksea/LOG
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
2024/02/25-13:15:17.054012 7f04234006c0 Recovering log #147
|
||||||
|
2024/02/25-13:15:17.064378 7f04234006c0 Delete type=3 #145
|
||||||
|
2024/02/25-13:15:17.064428 7f04234006c0 Delete type=0 #147
|
||||||
|
2024/02/25-13:15:44.051513 7f0421a006c0 Level-0 table #152: started
|
||||||
|
2024/02/25-13:15:44.051546 7f0421a006c0 Level-0 table #152: 0 bytes OK
|
||||||
|
2024/02/25-13:15:44.070330 7f0421a006c0 Delete type=0 #150
|
||||||
|
2024/02/25-13:15:44.070463 7f0421a006c0 Manual compaction at level-0 from '!folders!47aGmBuk1mHtbFFU' @ 72057594037927935 : 1 .. '!items!zwMpjsE84sk26eej' @ 0 : 0; will stop at (end)
|
7
packs/beyondtheblacksea/LOG.old
Normal file
7
packs/beyondtheblacksea/LOG.old
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
2024/02/25-13:11:04.982101 7f04234006c0 Recovering log #143
|
||||||
|
2024/02/25-13:11:04.992135 7f04234006c0 Delete type=3 #141
|
||||||
|
2024/02/25-13:11:04.992245 7f04234006c0 Delete type=0 #143
|
||||||
|
2024/02/25-13:14:07.628110 7f0421a006c0 Level-0 table #148: started
|
||||||
|
2024/02/25-13:14:07.628142 7f0421a006c0 Level-0 table #148: 0 bytes OK
|
||||||
|
2024/02/25-13:14:07.634699 7f0421a006c0 Delete type=0 #146
|
||||||
|
2024/02/25-13:14:07.647484 7f0421a006c0 Manual compaction at level-0 from '!folders!47aGmBuk1mHtbFFU' @ 72057594037927935 : 1 .. '!items!zwMpjsE84sk26eej' @ 0 : 0; will stop at (end)
|
BIN
packs/beyondtheblacksea/MANIFEST-000149
Normal file
BIN
packs/beyondtheblacksea/MANIFEST-000149
Normal file
Binary file not shown.
0
packs/conditions/000204.log
Normal file
0
packs/conditions/000204.log
Normal file
@ -1 +1 @@
|
|||||||
MANIFEST-000034
|
MANIFEST-000202
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
2023/10/02-23:14:23.402486 7f9ff37fe6c0 Recovering log #32
|
2024/02/25-13:15:16.986750 7f0428e006c0 Recovering log #200
|
||||||
2023/10/02-23:14:23.413596 7f9ff37fe6c0 Delete type=3 #30
|
2024/02/25-13:15:16.997344 7f0428e006c0 Delete type=3 #198
|
||||||
2023/10/02-23:14:23.413697 7f9ff37fe6c0 Delete type=0 #32
|
2024/02/25-13:15:16.997484 7f0428e006c0 Delete type=0 #200
|
||||||
2023/10/02-23:14:38.416250 7f9d71bff6c0 Level-0 table #37: started
|
2024/02/25-13:15:43.963770 7f0421a006c0 Level-0 table #205: started
|
||||||
2023/10/02-23:14:38.416269 7f9d71bff6c0 Level-0 table #37: 0 bytes OK
|
2024/02/25-13:15:43.963794 7f0421a006c0 Level-0 table #205: 0 bytes OK
|
||||||
2023/10/02-23:14:38.423340 7f9d71bff6c0 Delete type=0 #35
|
2024/02/25-13:15:43.987787 7f0421a006c0 Delete type=0 #203
|
||||||
2023/10/02-23:14:38.443073 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/02/25-13:15:44.009750 7f0421a006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
2023/10/02-23:10:18.665551 7f9ff27fc6c0 Recovering log #28
|
2024/02/25-13:11:04.860075 7f0422a006c0 Recovering log #196
|
||||||
2023/10/02-23:10:18.724044 7f9ff27fc6c0 Delete type=3 #26
|
2024/02/25-13:11:04.869800 7f0422a006c0 Delete type=3 #194
|
||||||
2023/10/02-23:10:18.724179 7f9ff27fc6c0 Delete type=0 #28
|
2024/02/25-13:11:04.869852 7f0422a006c0 Delete type=0 #196
|
||||||
2023/10/02-23:10:47.847150 7f9d71bff6c0 Level-0 table #33: started
|
2024/02/25-13:14:07.552154 7f0421a006c0 Level-0 table #201: started
|
||||||
2023/10/02-23:10:47.847205 7f9d71bff6c0 Level-0 table #33: 0 bytes OK
|
2024/02/25-13:14:07.552177 7f0421a006c0 Level-0 table #201: 0 bytes OK
|
||||||
2023/10/02-23:10:47.883834 7f9d71bff6c0 Delete type=0 #31
|
2024/02/25-13:14:07.559163 7f0421a006c0 Delete type=0 #199
|
||||||
2023/10/02-23:10:47.926716 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/02/25-13:14:07.565509 7f0421a006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
|
BIN
packs/conditions/MANIFEST-000202
Normal file
BIN
packs/conditions/MANIFEST-000202
Normal file
Binary file not shown.
0
packs/currency/000204.log
Normal file
0
packs/currency/000204.log
Normal file
@ -1 +1 @@
|
|||||||
MANIFEST-000034
|
MANIFEST-000202
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
2023/10/02-23:14:23.415539 7f9ff27fc6c0 Recovering log #32
|
2024/02/25-13:15:16.998964 7f04234006c0 Recovering log #200
|
||||||
2023/10/02-23:14:23.426966 7f9ff27fc6c0 Delete type=3 #30
|
2024/02/25-13:15:17.009159 7f04234006c0 Delete type=3 #198
|
||||||
2023/10/02-23:14:23.427019 7f9ff27fc6c0 Delete type=0 #32
|
2024/02/25-13:15:17.009311 7f04234006c0 Delete type=0 #200
|
||||||
2023/10/02-23:14:38.423526 7f9d71bff6c0 Level-0 table #37: started
|
2024/02/25-13:15:43.941048 7f0421a006c0 Level-0 table #205: started
|
||||||
2023/10/02-23:14:38.423560 7f9d71bff6c0 Level-0 table #37: 0 bytes OK
|
2024/02/25-13:15:43.941078 7f0421a006c0 Level-0 table #205: 0 bytes OK
|
||||||
2023/10/02-23:14:38.429512 7f9d71bff6c0 Delete type=0 #35
|
2024/02/25-13:15:43.963666 7f0421a006c0 Delete type=0 #203
|
||||||
2023/10/02-23:14:38.443085 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/02/25-13:15:44.009720 7f0421a006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
2023/10/02-23:10:18.726340 7f9ff37fe6c0 Recovering log #28
|
2024/02/25-13:11:04.872978 7f0428e006c0 Recovering log #196
|
||||||
2023/10/02-23:10:18.791256 7f9ff37fe6c0 Delete type=3 #26
|
2024/02/25-13:11:04.883896 7f0428e006c0 Delete type=3 #194
|
||||||
2023/10/02-23:10:18.791336 7f9ff37fe6c0 Delete type=0 #28
|
2024/02/25-13:11:04.884016 7f0428e006c0 Delete type=0 #196
|
||||||
2023/10/02-23:10:47.767271 7f9d71bff6c0 Level-0 table #33: started
|
2024/02/25-13:14:07.559262 7f0421a006c0 Level-0 table #201: started
|
||||||
2023/10/02-23:10:47.767300 7f9d71bff6c0 Level-0 table #33: 0 bytes OK
|
2024/02/25-13:14:07.559282 7f0421a006c0 Level-0 table #201: 0 bytes OK
|
||||||
2023/10/02-23:10:47.804530 7f9d71bff6c0 Delete type=0 #31
|
2024/02/25-13:14:07.565222 7f0421a006c0 Delete type=0 #199
|
||||||
2023/10/02-23:10:47.926630 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/02/25-13:14:07.565521 7f0421a006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
|
BIN
packs/currency/MANIFEST-000202
Normal file
BIN
packs/currency/MANIFEST-000202
Normal file
Binary file not shown.
BIN
packs/cybernetics/000115.ldb
Normal file
BIN
packs/cybernetics/000115.ldb
Normal file
Binary file not shown.
0
packs/cybernetics/000130.log
Normal file
0
packs/cybernetics/000130.log
Normal file
1
packs/cybernetics/CURRENT
Normal file
1
packs/cybernetics/CURRENT
Normal file
@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000128
|
0
packs/cybernetics/LOCK
Normal file
0
packs/cybernetics/LOCK
Normal file
8
packs/cybernetics/LOG
Normal file
8
packs/cybernetics/LOG
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
2024/02/25-13:11:04.911848 7f0422a006c0 Recovering log #126
|
||||||
|
2024/02/25-13:11:04.922320 7f0422a006c0 Delete type=3 #124
|
||||||
|
2024/02/25-13:11:04.922392 7f0422a006c0 Delete type=0 #126
|
||||||
|
2024/02/25-13:14:07.578457 7f0421a006c0 Level-0 table #131: started
|
||||||
|
2024/02/25-13:14:07.578513 7f0421a006c0 Level-0 table #131: 0 bytes OK
|
||||||
|
2024/02/25-13:14:07.585654 7f0421a006c0 Delete type=0 #129
|
||||||
|
2024/02/25-13:14:07.592632 7f0421a006c0 Manual compaction at level-0 from '!items!0SbSmYdxJSlcNr6x' @ 72057594037927935 : 1 .. '!items!yyCPVVl8vmMOfPcN' @ 0 : 0; will stop at (end)
|
||||||
|
2024/02/25-13:14:07.592676 7f0421a006c0 Manual compaction at level-1 from '!items!0SbSmYdxJSlcNr6x' @ 72057594037927935 : 1 .. '!items!yyCPVVl8vmMOfPcN' @ 0 : 0; will stop at (end)
|
8
packs/cybernetics/LOG.old
Normal file
8
packs/cybernetics/LOG.old
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
2024/02/25-13:04:05.332283 7f0428e006c0 Recovering log #122
|
||||||
|
2024/02/25-13:04:05.343337 7f0428e006c0 Delete type=3 #120
|
||||||
|
2024/02/25-13:04:05.343387 7f0428e006c0 Delete type=0 #122
|
||||||
|
2024/02/25-13:10:09.539934 7f0421a006c0 Level-0 table #127: started
|
||||||
|
2024/02/25-13:10:09.539956 7f0421a006c0 Level-0 table #127: 0 bytes OK
|
||||||
|
2024/02/25-13:10:09.546327 7f0421a006c0 Delete type=0 #125
|
||||||
|
2024/02/25-13:10:09.552649 7f0421a006c0 Manual compaction at level-0 from '!items!0SbSmYdxJSlcNr6x' @ 72057594037927935 : 1 .. '!items!yyCPVVl8vmMOfPcN' @ 0 : 0; will stop at (end)
|
||||||
|
2024/02/25-13:10:09.552755 7f0421a006c0 Manual compaction at level-1 from '!items!0SbSmYdxJSlcNr6x' @ 72057594037927935 : 1 .. '!items!yyCPVVl8vmMOfPcN' @ 0 : 0; will stop at (end)
|
BIN
packs/cybernetics/MANIFEST-000128
Normal file
BIN
packs/cybernetics/MANIFEST-000128
Normal file
Binary file not shown.
BIN
packs/darkstars-sf/000005.ldb
Normal file
BIN
packs/darkstars-sf/000005.ldb
Normal file
Binary file not shown.
0
packs/darkstars-sf/000016.log
Normal file
0
packs/darkstars-sf/000016.log
Normal file
1
packs/darkstars-sf/CURRENT
Normal file
1
packs/darkstars-sf/CURRENT
Normal file
@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000014
|
0
packs/darkstars-sf/LOCK
Normal file
0
packs/darkstars-sf/LOCK
Normal file
8
packs/darkstars-sf/LOG
Normal file
8
packs/darkstars-sf/LOG
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
2024/02/25-13:15:17.025547 7f0428e006c0 Recovering log #12
|
||||||
|
2024/02/25-13:15:17.036390 7f0428e006c0 Delete type=3 #10
|
||||||
|
2024/02/25-13:15:17.036450 7f0428e006c0 Delete type=0 #12
|
||||||
|
2024/02/25-13:15:44.009772 7f0421a006c0 Level-0 table #17: started
|
||||||
|
2024/02/25-13:15:44.009828 7f0421a006c0 Level-0 table #17: 0 bytes OK
|
||||||
|
2024/02/25-13:15:44.030032 7f0421a006c0 Delete type=0 #15
|
||||||
|
2024/02/25-13:15:44.070434 7f0421a006c0 Manual compaction at level-0 from '!folders!La3YsNYFddQnmsba' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||||
|
2024/02/25-13:15:44.070475 7f0421a006c0 Manual compaction at level-1 from '!folders!La3YsNYFddQnmsba' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
8
packs/darkstars-sf/LOG.old
Normal file
8
packs/darkstars-sf/LOG.old
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
2024/02/25-13:11:04.952348 7f0423e006c0 Recovering log #8
|
||||||
|
2024/02/25-13:11:04.963140 7f0423e006c0 Delete type=3 #6
|
||||||
|
2024/02/25-13:11:04.963202 7f0423e006c0 Delete type=0 #8
|
||||||
|
2024/02/25-13:14:07.608374 7f0421a006c0 Level-0 table #13: started
|
||||||
|
2024/02/25-13:14:07.608400 7f0421a006c0 Level-0 table #13: 0 bytes OK
|
||||||
|
2024/02/25-13:14:07.614467 7f0421a006c0 Delete type=0 #11
|
||||||
|
2024/02/25-13:14:07.627999 7f0421a006c0 Manual compaction at level-0 from '!folders!La3YsNYFddQnmsba' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||||
|
2024/02/25-13:14:07.628036 7f0421a006c0 Manual compaction at level-1 from '!folders!La3YsNYFddQnmsba' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
BIN
packs/darkstars-sf/MANIFEST-000014
Normal file
BIN
packs/darkstars-sf/MANIFEST-000014
Normal file
Binary file not shown.
BIN
packs/equipment/000186.ldb
Normal file
BIN
packs/equipment/000186.ldb
Normal file
Binary file not shown.
0
packs/equipment/000201.log
Normal file
0
packs/equipment/000201.log
Normal file
@ -1 +1 @@
|
|||||||
MANIFEST-000034
|
MANIFEST-000199
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
2023/10/02-23:14:23.361211 7f9ff27fc6c0 Recovering log #32
|
2024/02/25-13:11:04.819236 7f0428e006c0 Recovering log #197
|
||||||
2023/10/02-23:14:23.373216 7f9ff27fc6c0 Delete type=3 #30
|
2024/02/25-13:11:04.829162 7f0428e006c0 Delete type=3 #195
|
||||||
2023/10/02-23:14:23.373318 7f9ff27fc6c0 Delete type=0 #32
|
2024/02/25-13:11:04.829232 7f0428e006c0 Delete type=0 #197
|
||||||
2023/10/02-23:14:38.409553 7f9d71bff6c0 Level-0 table #37: started
|
2024/02/25-13:14:07.545758 7f0421a006c0 Level-0 table #202: started
|
||||||
2023/10/02-23:14:38.409576 7f9d71bff6c0 Level-0 table #37: 0 bytes OK
|
2024/02/25-13:14:07.545813 7f0421a006c0 Level-0 table #202: 0 bytes OK
|
||||||
2023/10/02-23:14:38.415960 7f9d71bff6c0 Delete type=0 #35
|
2024/02/25-13:14:07.552067 7f0421a006c0 Delete type=0 #200
|
||||||
2023/10/02-23:14:38.416104 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/02/25-13:14:07.565492 7f0421a006c0 Manual compaction at level-0 from '!items!05RVU3UcRabogEvL' @ 72057594037927935 : 1 .. '!items!zaxcUsWUZ1vvl0p8' @ 0 : 0; will stop at (end)
|
||||||
|
2024/02/25-13:14:07.565529 7f0421a006c0 Manual compaction at level-1 from '!items!05RVU3UcRabogEvL' @ 72057594037927935 : 1 .. '!items!zaxcUsWUZ1vvl0p8' @ 0 : 0; will stop at (end)
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
2023/10/02-23:10:18.498716 7f9ff37fe6c0 Recovering log #28
|
2024/02/25-13:04:05.239972 7f0423e006c0 Recovering log #193
|
||||||
2023/10/02-23:10:18.553677 7f9ff37fe6c0 Delete type=3 #26
|
2024/02/25-13:04:05.249512 7f0423e006c0 Delete type=3 #191
|
||||||
2023/10/02-23:10:18.553743 7f9ff37fe6c0 Delete type=0 #28
|
2024/02/25-13:04:05.249560 7f0423e006c0 Delete type=0 #193
|
||||||
2023/10/02-23:10:47.687666 7f9d71bff6c0 Level-0 table #33: started
|
2024/02/25-13:10:09.473431 7f0421a006c0 Level-0 table #198: started
|
||||||
2023/10/02-23:10:47.687692 7f9d71bff6c0 Level-0 table #33: 0 bytes OK
|
2024/02/25-13:10:09.473459 7f0421a006c0 Level-0 table #198: 0 bytes OK
|
||||||
2023/10/02-23:10:47.730820 7f9d71bff6c0 Delete type=0 #31
|
2024/02/25-13:10:09.480345 7f0421a006c0 Delete type=0 #196
|
||||||
2023/10/02-23:10:47.767133 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/02/25-13:10:09.493344 7f0421a006c0 Manual compaction at level-0 from '!items!05RVU3UcRabogEvL' @ 72057594037927935 : 1 .. '!items!zaxcUsWUZ1vvl0p8' @ 0 : 0; will stop at (end)
|
||||||
|
2024/02/25-13:10:09.499930 7f0421a006c0 Manual compaction at level-1 from '!items!05RVU3UcRabogEvL' @ 72057594037927935 : 1 .. '!items!zaxcUsWUZ1vvl0p8' @ 0 : 0; will stop at (end)
|
||||||
|
BIN
packs/equipment/MANIFEST-000199
Normal file
BIN
packs/equipment/MANIFEST-000199
Normal file
Binary file not shown.
BIN
packs/genetics/000014.ldb
Normal file
BIN
packs/genetics/000014.ldb
Normal file
Binary file not shown.
0
packs/genetics/000077.log
Normal file
0
packs/genetics/000077.log
Normal file
1
packs/genetics/CURRENT
Normal file
1
packs/genetics/CURRENT
Normal file
@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000075
|
0
packs/genetics/LOCK
Normal file
0
packs/genetics/LOCK
Normal file
8
packs/genetics/LOG
Normal file
8
packs/genetics/LOG
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
2024/02/25-13:11:04.925036 7f0428e006c0 Recovering log #73
|
||||||
|
2024/02/25-13:11:04.935090 7f0428e006c0 Delete type=3 #71
|
||||||
|
2024/02/25-13:11:04.935353 7f0428e006c0 Delete type=0 #73
|
||||||
|
2024/02/25-13:14:07.585843 7f0421a006c0 Level-0 table #78: started
|
||||||
|
2024/02/25-13:14:07.585896 7f0421a006c0 Level-0 table #78: 0 bytes OK
|
||||||
|
2024/02/25-13:14:07.592513 7f0421a006c0 Delete type=0 #76
|
||||||
|
2024/02/25-13:14:07.592640 7f0421a006c0 Manual compaction at level-0 from '!items!56A3sVsiN7KI6a45' @ 72057594037927935 : 1 .. '!items!zJiASbV3QqH2oHb1' @ 0 : 0; will stop at (end)
|
||||||
|
2024/02/25-13:14:07.592670 7f0421a006c0 Manual compaction at level-1 from '!items!56A3sVsiN7KI6a45' @ 72057594037927935 : 1 .. '!items!zJiASbV3QqH2oHb1' @ 0 : 0; will stop at (end)
|
8
packs/genetics/LOG.old
Normal file
8
packs/genetics/LOG.old
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
2024/02/25-13:04:05.347457 7f0423e006c0 Recovering log #69
|
||||||
|
2024/02/25-13:04:05.356885 7f0423e006c0 Delete type=3 #67
|
||||||
|
2024/02/25-13:04:05.356934 7f0423e006c0 Delete type=0 #69
|
||||||
|
2024/02/25-13:10:09.533502 7f0421a006c0 Level-0 table #74: started
|
||||||
|
2024/02/25-13:10:09.533526 7f0421a006c0 Level-0 table #74: 0 bytes OK
|
||||||
|
2024/02/25-13:10:09.539823 7f0421a006c0 Delete type=0 #72
|
||||||
|
2024/02/25-13:10:09.552630 7f0421a006c0 Manual compaction at level-0 from '!items!56A3sVsiN7KI6a45' @ 72057594037927935 : 1 .. '!items!zJiASbV3QqH2oHb1' @ 0 : 0; will stop at (end)
|
||||||
|
2024/02/25-13:10:09.552738 7f0421a006c0 Manual compaction at level-1 from '!items!56A3sVsiN7KI6a45' @ 72057594037927935 : 1 .. '!items!zJiASbV3QqH2oHb1' @ 0 : 0; will stop at (end)
|
BIN
packs/genetics/MANIFEST-000075
Normal file
BIN
packs/genetics/MANIFEST-000075
Normal file
Binary file not shown.
BIN
packs/nightborough/000132.ldb
Normal file
BIN
packs/nightborough/000132.ldb
Normal file
Binary file not shown.
0
packs/nightborough/000171.log
Normal file
0
packs/nightborough/000171.log
Normal file
1
packs/nightborough/CURRENT
Normal file
1
packs/nightborough/CURRENT
Normal file
@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000169
|
0
packs/nightborough/LOCK
Normal file
0
packs/nightborough/LOCK
Normal file
7
packs/nightborough/LOG
Normal file
7
packs/nightborough/LOG
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
2024/02/25-13:15:17.069262 7f0428e006c0 Recovering log #167
|
||||||
|
2024/02/25-13:15:17.080017 7f0428e006c0 Delete type=3 #165
|
||||||
|
2024/02/25-13:15:17.080077 7f0428e006c0 Delete type=0 #167
|
||||||
|
2024/02/25-13:15:44.070573 7f0421a006c0 Level-0 table #172: started
|
||||||
|
2024/02/25-13:15:44.070608 7f0421a006c0 Level-0 table #172: 0 bytes OK
|
||||||
|
2024/02/25-13:15:44.096416 7f0421a006c0 Delete type=0 #170
|
||||||
|
2024/02/25-13:15:44.120168 7f0421a006c0 Manual compaction at level-0 from '!folders!2iZtDz80npHPIwkS' @ 72057594037927935 : 1 .. '!items!zyFR9C1jBTeFzbxg' @ 0 : 0; will stop at (end)
|
7
packs/nightborough/LOG.old
Normal file
7
packs/nightborough/LOG.old
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
2024/02/25-13:11:04.996302 7f0423e006c0 Recovering log #163
|
||||||
|
2024/02/25-13:11:05.007254 7f0423e006c0 Delete type=3 #161
|
||||||
|
2024/02/25-13:11:05.007308 7f0423e006c0 Delete type=0 #163
|
||||||
|
2024/02/25-13:14:07.634807 7f0421a006c0 Level-0 table #168: started
|
||||||
|
2024/02/25-13:14:07.634831 7f0421a006c0 Level-0 table #168: 0 bytes OK
|
||||||
|
2024/02/25-13:14:07.640941 7f0421a006c0 Delete type=0 #166
|
||||||
|
2024/02/25-13:14:07.647494 7f0421a006c0 Manual compaction at level-0 from '!folders!2iZtDz80npHPIwkS' @ 72057594037927935 : 1 .. '!items!zyFR9C1jBTeFzbxg' @ 0 : 0; will stop at (end)
|
BIN
packs/nightborough/MANIFEST-000169
Normal file
BIN
packs/nightborough/MANIFEST-000169
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/perks/000186.ldb
Normal file
BIN
packs/perks/000186.ldb
Normal file
Binary file not shown.
0
packs/perks/000201.log
Normal file
0
packs/perks/000201.log
Normal file
@ -1 +1 @@
|
|||||||
MANIFEST-000034
|
MANIFEST-000199
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/10/02-23:14:23.440882 7f9ff3fff6c0 Recovering log #32
|
2024/02/25-13:11:04.899830 7f0428e006c0 Recovering log #197
|
||||||
2023/10/02-23:14:23.451699 7f9ff3fff6c0 Delete type=3 #30
|
2024/02/25-13:11:04.909890 7f0428e006c0 Delete type=3 #195
|
||||||
2023/10/02-23:14:23.451952 7f9ff3fff6c0 Delete type=0 #32
|
2024/02/25-13:11:04.909976 7f0428e006c0 Delete type=0 #197
|
||||||
2023/10/02-23:14:38.450027 7f9d71bff6c0 Level-0 table #37: started
|
2024/02/25-13:14:07.614576 7f0421a006c0 Level-0 table #202: started
|
||||||
2023/10/02-23:14:38.450048 7f9d71bff6c0 Level-0 table #37: 0 bytes OK
|
2024/02/25-13:14:07.614602 7f0421a006c0 Level-0 table #202: 0 bytes OK
|
||||||
2023/10/02-23:14:38.456399 7f9d71bff6c0 Delete type=0 #35
|
2024/02/25-13:14:07.621467 7f0421a006c0 Delete type=0 #200
|
||||||
2023/10/02-23:14:38.456527 7f9d71bff6c0 Manual compaction at level-0 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
2024/02/25-13:14:07.628014 7f0421a006c0 Manual compaction at level-0 from '!items!0K3CVEKsq67oKiYE' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||||
2023/10/02-23:14:38.456542 7f9d71bff6c0 Manual compaction at level-1 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
2024/02/25-13:14:07.628055 7f0421a006c0 Manual compaction at level-1 from '!items!0K3CVEKsq67oKiYE' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/10/02-23:10:18.856824 7f9ff2ffd6c0 Recovering log #28
|
2024/02/25-13:04:05.318599 7f0423e006c0 Recovering log #193
|
||||||
2023/10/02-23:10:18.914305 7f9ff2ffd6c0 Delete type=3 #26
|
2024/02/25-13:04:05.328529 7f0423e006c0 Delete type=3 #191
|
||||||
2023/10/02-23:10:18.914448 7f9ff2ffd6c0 Delete type=0 #28
|
2024/02/25-13:04:05.328597 7f0423e006c0 Delete type=0 #193
|
||||||
2023/10/02-23:10:47.926887 7f9d71bff6c0 Level-0 table #33: started
|
2024/02/25-13:10:09.519595 7f0421a006c0 Level-0 table #198: started
|
||||||
2023/10/02-23:10:47.926952 7f9d71bff6c0 Level-0 table #33: 0 bytes OK
|
2024/02/25-13:10:09.519645 7f0421a006c0 Level-0 table #198: 0 bytes OK
|
||||||
2023/10/02-23:10:47.962319 7f9d71bff6c0 Delete type=0 #31
|
2024/02/25-13:10:09.526863 7f0421a006c0 Delete type=0 #196
|
||||||
2023/10/02-23:10:47.962591 7f9d71bff6c0 Manual compaction at level-0 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
2024/02/25-13:10:09.527031 7f0421a006c0 Manual compaction at level-0 from '!items!0K3CVEKsq67oKiYE' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||||
2023/10/02-23:10:47.962645 7f9d71bff6c0 Manual compaction at level-1 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
2024/02/25-13:10:09.527062 7f0421a006c0 Manual compaction at level-1 from '!items!0K3CVEKsq67oKiYE' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||||
|
BIN
packs/perks/MANIFEST-000199
Normal file
BIN
packs/perks/MANIFEST-000199
Normal file
Binary file not shown.
0
packs/shields/000200.log
Normal file
0
packs/shields/000200.log
Normal file
@ -1 +1 @@
|
|||||||
MANIFEST-000034
|
MANIFEST-000198
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
2023/10/02-23:14:23.375471 7f9ff2ffd6c0 Recovering log #32
|
2024/02/25-13:11:04.832847 7f0422a006c0 Recovering log #196
|
||||||
2023/10/02-23:14:23.386987 7f9ff2ffd6c0 Delete type=3 #30
|
2024/02/25-13:11:04.844534 7f0422a006c0 Delete type=3 #194
|
||||||
2023/10/02-23:14:23.387042 7f9ff2ffd6c0 Delete type=0 #32
|
2024/02/25-13:11:04.844584 7f0422a006c0 Delete type=0 #196
|
||||||
2023/10/02-23:14:38.437035 7f9d71bff6c0 Level-0 table #37: started
|
2024/02/25-13:14:07.539362 7f0421a006c0 Level-0 table #201: started
|
||||||
2023/10/02-23:14:38.437058 7f9d71bff6c0 Level-0 table #37: 0 bytes OK
|
2024/02/25-13:14:07.539386 7f0421a006c0 Level-0 table #201: 0 bytes OK
|
||||||
2023/10/02-23:14:38.442993 7f9d71bff6c0 Delete type=0 #35
|
2024/02/25-13:14:07.545589 7f0421a006c0 Delete type=0 #199
|
||||||
2023/10/02-23:14:38.443105 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/02/25-13:14:07.565459 7f0421a006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
2023/10/02-23:10:18.555858 7f9ff3fff6c0 Recovering log #28
|
2024/02/25-13:04:05.255291 7f0428e006c0 Recovering log #192
|
||||||
2023/10/02-23:10:18.608266 7f9ff3fff6c0 Delete type=3 #26
|
2024/02/25-13:04:05.265834 7f0428e006c0 Delete type=3 #190
|
||||||
2023/10/02-23:10:18.608317 7f9ff3fff6c0 Delete type=0 #28
|
2024/02/25-13:04:05.265885 7f0428e006c0 Delete type=0 #192
|
||||||
2023/10/02-23:10:47.730988 7f9d71bff6c0 Level-0 table #33: started
|
2024/02/25-13:10:09.486767 7f0421a006c0 Level-0 table #197: started
|
||||||
2023/10/02-23:10:47.731029 7f9d71bff6c0 Level-0 table #33: 0 bytes OK
|
2024/02/25-13:10:09.486786 7f0421a006c0 Level-0 table #197: 0 bytes OK
|
||||||
2023/10/02-23:10:47.766999 7f9d71bff6c0 Delete type=0 #31
|
2024/02/25-13:10:09.493210 7f0421a006c0 Delete type=0 #195
|
||||||
2023/10/02-23:10:47.767154 7f9d71bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2024/02/25-13:10:09.499919 7f0421a006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
|
BIN
packs/shields/MANIFEST-000198
Normal file
BIN
packs/shields/MANIFEST-000198
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/skills/000186.ldb
Normal file
BIN
packs/skills/000186.ldb
Normal file
Binary file not shown.
0
packs/skills/000201.log
Normal file
0
packs/skills/000201.log
Normal file
@ -1 +1 @@
|
|||||||
MANIFEST-000034
|
MANIFEST-000199
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/10/02-23:14:23.428388 7f9ff2ffd6c0 Recovering log #32
|
2024/02/25-13:11:04.885568 7f0422a006c0 Recovering log #197
|
||||||
2023/10/02-23:14:23.438828 7f9ff2ffd6c0 Delete type=3 #30
|
2024/02/25-13:11:04.896289 7f0422a006c0 Delete type=3 #195
|
||||||
2023/10/02-23:14:23.438894 7f9ff2ffd6c0 Delete type=0 #32
|
2024/02/25-13:11:04.896428 7f0422a006c0 Delete type=0 #197
|
||||||
2023/10/02-23:14:38.443218 7f9d71bff6c0 Level-0 table #37: started
|
2024/02/25-13:14:07.572202 7f0421a006c0 Level-0 table #202: started
|
||||||
2023/10/02-23:14:38.443238 7f9d71bff6c0 Level-0 table #37: 0 bytes OK
|
2024/02/25-13:14:07.572243 7f0421a006c0 Level-0 table #202: 0 bytes OK
|
||||||
2023/10/02-23:14:38.449738 7f9d71bff6c0 Delete type=0 #35
|
2024/02/25-13:14:07.578291 7f0421a006c0 Delete type=0 #200
|
||||||
2023/10/02-23:14:38.456514 7f9d71bff6c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
|
2024/02/25-13:14:07.592622 7f0421a006c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!z3j0TW0hqigz6UP5' @ 0 : 0; will stop at (end)
|
||||||
2023/10/02-23:14:38.456551 7f9d71bff6c0 Manual compaction at level-1 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
|
2024/02/25-13:14:07.592664 7f0421a006c0 Manual compaction at level-1 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!z3j0TW0hqigz6UP5' @ 0 : 0; will stop at (end)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/10/02-23:10:18.794082 7f9ff3fff6c0 Recovering log #28
|
2024/02/25-13:04:05.306405 7f0428e006c0 Recovering log #193
|
||||||
2023/10/02-23:10:18.853728 7f9ff3fff6c0 Delete type=3 #26
|
2024/02/25-13:04:05.315767 7f0428e006c0 Delete type=3 #191
|
||||||
2023/10/02-23:10:18.853881 7f9ff3fff6c0 Delete type=0 #28
|
2024/02/25-13:04:05.315959 7f0428e006c0 Delete type=0 #193
|
||||||
2023/10/02-23:10:47.884047 7f9d71bff6c0 Level-0 table #33: started
|
2024/02/25-13:10:09.513533 7f0421a006c0 Level-0 table #198: started
|
||||||
2023/10/02-23:10:47.884105 7f9d71bff6c0 Level-0 table #33: 0 bytes OK
|
2024/02/25-13:10:09.513561 7f0421a006c0 Level-0 table #198: 0 bytes OK
|
||||||
2023/10/02-23:10:47.926424 7f9d71bff6c0 Delete type=0 #31
|
2024/02/25-13:10:09.519495 7f0421a006c0 Delete type=0 #196
|
||||||
2023/10/02-23:10:47.926752 7f9d71bff6c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
|
2024/02/25-13:10:09.527015 7f0421a006c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!z3j0TW0hqigz6UP5' @ 0 : 0; will stop at (end)
|
||||||
2023/10/02-23:10:47.926813 7f9d71bff6c0 Manual compaction at level-1 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
|
2024/02/25-13:10:09.527047 7f0421a006c0 Manual compaction at level-1 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!z3j0TW0hqigz6UP5' @ 0 : 0; will stop at (end)
|
||||||
|
BIN
packs/skills/MANIFEST-000199
Normal file
BIN
packs/skills/MANIFEST-000199
Normal file
Binary file not shown.
BIN
packs/sprawl/000005.ldb
Normal file
BIN
packs/sprawl/000005.ldb
Normal file
Binary file not shown.
0
packs/sprawl/000008.log
Normal file
0
packs/sprawl/000008.log
Normal file
1
packs/sprawl/CURRENT
Normal file
1
packs/sprawl/CURRENT
Normal file
@ -0,0 +1 @@
|
|||||||
|
MANIFEST-000006
|
0
packs/sprawl/LOCK
Normal file
0
packs/sprawl/LOCK
Normal file
8
packs/sprawl/LOG
Normal file
8
packs/sprawl/LOG
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
2024/02/25-13:15:17.010976 7f0428e006c0 Recovering log #4
|
||||||
|
2024/02/25-13:15:17.020772 7f0428e006c0 Delete type=3 #2
|
||||||
|
2024/02/25-13:15:17.020952 7f0428e006c0 Delete type=0 #4
|
||||||
|
2024/02/25-13:15:43.987915 7f0421a006c0 Level-0 table #9: started
|
||||||
|
2024/02/25-13:15:43.987946 7f0421a006c0 Level-0 table #9: 0 bytes OK
|
||||||
|
2024/02/25-13:15:44.009466 7f0421a006c0 Delete type=0 #7
|
||||||
|
2024/02/25-13:15:44.030166 7f0421a006c0 Manual compaction at level-0 from '!folders!0XjcJyQMCVYU611t' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||||
|
2024/02/25-13:15:44.070444 7f0421a006c0 Manual compaction at level-1 from '!folders!0XjcJyQMCVYU611t' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
5
packs/sprawl/LOG.old
Normal file
5
packs/sprawl/LOG.old
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
2024/02/25-13:11:04.951128 7f04234006c0 Delete type=3 #1
|
||||||
|
2024/02/25-13:14:07.592789 7f0421a006c0 Level-0 table #5: started
|
||||||
|
2024/02/25-13:14:07.601371 7f0421a006c0 Level-0 table #5: 423771 bytes OK
|
||||||
|
2024/02/25-13:14:07.608089 7f0421a006c0 Delete type=0 #3
|
||||||
|
2024/02/25-13:14:07.627983 7f0421a006c0 Manual compaction at level-0 from '!folders!0XjcJyQMCVYU611t' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user