Compare commits
21 Commits
fvtt-dark-
...
9ad34b4672
Author | SHA1 | Date | |
---|---|---|---|
9ad34b4672 | |||
ae36be975d | |||
69eaa8fc66 | |||
b741cffd96 | |||
e5296a4bcd | |||
9f93849a9d | |||
14c7e54b3d | |||
ce3359b2f0 | |||
02bf6cc10a | |||
dc5a1056b7 | |||
c7ccc50db0 | |||
1f8275e153 | |||
e19e6df228 | |||
714485b688 | |||
ceed6efc0b | |||
06e265586b | |||
78edf6b80b | |||
60112d1a79 | |||
652f24b863 | |||
69322cccfe | |||
5d0c53f52b |
4
.gitignore
vendored
4
.gitignore
vendored
@ -8,7 +8,3 @@ todo.md
|
||||
/jsconfig.json
|
||||
/package.json
|
||||
/package-lock.json
|
||||
/packs/*/
|
||||
/packs/*/CURRENT
|
||||
/packs/*/LOG
|
||||
/packs/*/LOCK
|
||||
|
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,6 +40,9 @@ export class DarkStarsActorSheet extends ActorSheet {
|
||||
skills: this.actor.getSkills( ),
|
||||
perks: this.actor.getPerks( ),
|
||||
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())),
|
||||
shields: this.actor.checkAndPrepareEquipments( duplicate(this.actor.getShields())),
|
||||
equipments: this.actor.checkAndPrepareEquipments(duplicate(this.actor.getEquipmentsOnly()) ),
|
||||
@ -109,6 +112,11 @@ export class DarkStarsActorSheet extends ActorSheet {
|
||||
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 => {
|
||||
const li = $(event.currentTarget).parents(".item");
|
||||
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
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
@ -125,6 +130,16 @@ export class DarkStarsActor extends Actor {
|
||||
DarkStarsUtility.sortArrayObjectsByName(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() {
|
||||
let comp = this.items.find(item => item.type == 'armor' && item.system.equipped)
|
||||
if (comp) {
|
||||
@ -158,6 +173,13 @@ export class DarkStarsActor extends Actor {
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
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)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@ -177,6 +199,12 @@ export class DarkStarsActor extends Actor {
|
||||
/* -------------------------------------------- */
|
||||
getWeapons() {
|
||||
let comp = duplicate(this.items.filter(item => item.type == 'weapon') || []);
|
||||
DarkStarsUtility.sortArrayObjectsByName(comp)
|
||||
return comp;
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
getAmmos() {
|
||||
let comp = duplicate(this.items.filter(item => item.type == 'ammo') || []);
|
||||
DarkStarsUtility.sortArrayObjectsByName(comp)
|
||||
return comp;
|
||||
}
|
||||
@ -188,7 +216,13 @@ export class DarkStarsActor extends Actor {
|
||||
}
|
||||
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) {
|
||||
let skill = this.items.get(skillId)
|
||||
@ -391,12 +425,14 @@ export class DarkStarsActor extends Actor {
|
||||
}
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
getInitiativeScore(combatId, combatantId) {
|
||||
if (this.type == 'character') {
|
||||
this.rollMR(true, combatId, combatantId)
|
||||
}
|
||||
console.log("Init required !!!!")
|
||||
return -1;
|
||||
hasLastWord() {
|
||||
return this.items.find(i => i.type == "perk" && i.name.toLowerCase() === "last word")
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
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
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
@ -622,6 +658,7 @@ export class DarkStarsActor extends Actor {
|
||||
rollData.mode = "weapon"
|
||||
rollData.skill = skill
|
||||
rollData.weapon = weapon
|
||||
this.checkAndPrepareEquipment(weapon)
|
||||
rollData.img = weapon.img
|
||||
this.startRoll(rollData)
|
||||
} else {
|
||||
|
@ -2,29 +2,46 @@ import { DarkStarsUtility } from "./dark-stars-utility.js";
|
||||
|
||||
/* -------------------------------------------- */
|
||||
export class DarkStarsCombat extends Combat {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
async rollInitiative(ids, formula = undefined, messageOptions = {} ) {
|
||||
ids = typeof ids === "string" ? [ids] : ids;
|
||||
for (let cId = 0; cId < ids.length; cId++) {
|
||||
const c = this.combatants.get(ids[cId]);
|
||||
let id = c._id || c.id;
|
||||
let initBonus = c.actor ? c.actor.getInitiativeScore( this.id, id ) : -1;
|
||||
await this.updateEmbeddedDocuments("Combatant", [ { _id: id, initiative: initBonus } ]);
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
processOtherTurns(c, initScore) {
|
||||
let toCreate = []
|
||||
let token = canvas.tokens.get(c.tokenId)
|
||||
let hasLastWord = token.actor.hasLastWord()
|
||||
while ( (initScore > 5) || (hasLastWord && initScore >= 5)) {
|
||||
initScore -= 5;
|
||||
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;
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
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) {
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static async checkTurnPosition() {
|
||||
while (game.combat.turn > 0) {
|
||||
await game.combat.previousTurn()
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -32,7 +32,14 @@ export const DARKSTARS_CONFIG = {
|
||||
perktypes: {
|
||||
"normal": "Normal",
|
||||
"advanced": "Advanced",
|
||||
"role": "Role"
|
||||
"role": "Role",
|
||||
"job": "Job"
|
||||
},
|
||||
magicTypes: {
|
||||
"lemurian": "Lemurian",
|
||||
"bloodmagic": "Blood Magic Ritual",
|
||||
"ritual": "Ritual",
|
||||
"miracle": "Miracle"
|
||||
},
|
||||
cyberTypes: {
|
||||
"I": "I",
|
||||
|
@ -8,7 +8,9 @@ export const defaultItemImg = {
|
||||
perk: "systems/fvtt-dark-stars/images/icons/perk.webp",
|
||||
ability: "systems/fvtt-dark-stars/images/icons/ability.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 { DarkStarsCommands } from "./dark-stars-commands.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 */
|
||||
@ -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();
|
||||
DarkStarsUtility.ready()
|
||||
DarkStarsCommands.init()
|
||||
ClassCounter.registerUsageCount()
|
||||
})
|
||||
|
||||
/* -------------------------------------------- */
|
||||
|
@ -42,7 +42,7 @@ export class DarkStarsUtility {
|
||||
Handlebars.registerHelper('locationLabel', function (key) {
|
||||
return __locationNames[key]
|
||||
})
|
||||
|
||||
|
||||
|
||||
this.gameSettings()
|
||||
|
||||
@ -240,14 +240,14 @@ export class DarkStarsUtility {
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static getAimingMalus(location) {
|
||||
static getAimingMalus(location) {
|
||||
if (location == "arm" || location == "head") {
|
||||
return -50
|
||||
}
|
||||
if (location == "torso" || location == "leg") {
|
||||
return -30
|
||||
}
|
||||
if (location == "hand" ) {
|
||||
if (location == "hand") {
|
||||
return -70
|
||||
}
|
||||
return 0
|
||||
@ -255,14 +255,22 @@ export class DarkStarsUtility {
|
||||
/* -------------------------------------------- */
|
||||
static getAimingLocation(roll) {
|
||||
if (roll == 1) return "head"
|
||||
if (roll >=2 && roll <=4 ) return "chest"
|
||||
if (roll >=5 && roll <=6 ) return "abdomen"
|
||||
if (roll == 7 ) return "leftarm"
|
||||
if (roll == 8 ) return "rightarm"
|
||||
if (roll == 9 ) return "rightleg"
|
||||
if (roll == 10 ) return "leftleg"
|
||||
if (roll >= 2 && roll <= 4) return "chest"
|
||||
if (roll >= 5 && roll <= 6) return "abdomen"
|
||||
if (roll == 7) return "leftarm"
|
||||
if (roll == 8) return "rightarm"
|
||||
if (roll == 9) return "rightleg"
|
||||
if (roll == 10) return "leftleg"
|
||||
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) {
|
||||
@ -271,13 +279,13 @@ export class DarkStarsUtility {
|
||||
|
||||
// ability/save/size => 0
|
||||
rollData.percentValue = 0
|
||||
if ( rollData.skill ) {
|
||||
if (rollData.skill) {
|
||||
rollData.percentValue = rollData.skill.total
|
||||
}
|
||||
rollData.percentValue += rollData.bonusMalus
|
||||
rollData.percentValue += rollData.bonusMalus
|
||||
rollData.diceFormula = "1d100"
|
||||
|
||||
if (rollData.isAboveEffectiveRange) {
|
||||
if (rollData.isAboveEffectiveRange) {
|
||||
rollData.percentValue -= 30
|
||||
rollData.percentValue = Math.max(0, rollData.percentValue)
|
||||
}
|
||||
@ -299,18 +307,23 @@ export class DarkStarsUtility {
|
||||
rollData.isCriticalFailure = rollData.diceResult == 100
|
||||
rollData.isSuccess = rollData.diceResult == 1 || 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) {
|
||||
actor.modifyRerolls(-1)
|
||||
rollData.rerolls = 0 // DIsable rerolls
|
||||
}
|
||||
|
||||
if (rollData.weaponAiming == "none" ) {
|
||||
let rollLoc = new Roll("1d10").roll({async: false})
|
||||
rollData.weaponAiming = this.getAimingLocation(rollLoc.total)
|
||||
if (rollData.mode == "weapon") {
|
||||
if (rollData.weaponAiming == "none") {
|
||||
let rollLoc = new Roll("1d10").roll({ async: false })
|
||||
rollData.weaponAiming = this.getAimingLocation(rollLoc.total)
|
||||
}
|
||||
// Compute
|
||||
rollData.locationMultiplier = this.locationMultiplier(rollData.weaponAiming)
|
||||
}
|
||||
|
||||
|
||||
let msg = await this.createChatWithRollMode(rollData.alias, {
|
||||
content: await renderTemplate(`systems/fvtt-dark-stars/templates/chat/chat-generic-result.hbs`, rollData)
|
||||
})
|
||||
@ -418,7 +431,7 @@ export class DarkStarsUtility {
|
||||
let rollData = {
|
||||
rollId: randomID(16),
|
||||
rollMode: game.settings.get("core", "rollMode"),
|
||||
bonusMalus : 0,
|
||||
bonusMalus: 0,
|
||||
isAboveEffectiveRange: false,
|
||||
weaponAiming: "none"
|
||||
}
|
||||
|
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/000146.log
Normal file
0
packs/aldebaran/000146.log
Normal file
1
packs/aldebaran/CURRENT
Normal file
1
packs/aldebaran/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000144
|
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/01/26-16:45:12.312299 7ff6b6ffd6c0 Recovering log #142
|
||||
2024/01/26-16:45:12.322762 7ff6b6ffd6c0 Delete type=3 #140
|
||||
2024/01/26-16:45:12.322811 7ff6b6ffd6c0 Delete type=0 #142
|
||||
2024/01/26-16:46:20.748825 7ff4363ff6c0 Level-0 table #147: started
|
||||
2024/01/26-16:46:20.748854 7ff4363ff6c0 Level-0 table #147: 0 bytes OK
|
||||
2024/01/26-16:46:20.756106 7ff4363ff6c0 Delete type=0 #145
|
||||
2024/01/26-16:46:20.775694 7ff4363ff6c0 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/01/26-16:44:01.373547 7ff6b77fe6c0 Recovering log #138
|
||||
2024/01/26-16:44:01.382908 7ff6b77fe6c0 Delete type=3 #136
|
||||
2024/01/26-16:44:01.382992 7ff6b77fe6c0 Delete type=0 #138
|
||||
2024/01/26-16:44:52.254620 7ff4363ff6c0 Level-0 table #143: started
|
||||
2024/01/26-16:44:52.254645 7ff4363ff6c0 Level-0 table #143: 0 bytes OK
|
||||
2024/01/26-16:44:52.261346 7ff4363ff6c0 Delete type=0 #141
|
||||
2024/01/26-16:44:52.280720 7ff4363ff6c0 Manual compaction at level-0 from '!folders!MA6uFJMVebGeayIk' @ 72057594037927935 : 1 .. '!items!zhjdppKgrON7wJn7' @ 0 : 0; will stop at (end)
|
BIN
packs/aldebaran/MANIFEST-000144
Normal file
BIN
packs/aldebaran/MANIFEST-000144
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/000193.log
Normal file
0
packs/armor/000193.log
Normal file
@ -1 +1 @@
|
||||
MANIFEST-000070
|
||||
MANIFEST-000191
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/10/15-14:38:54.538904 7f4c897fa6c0 Recovering log #68
|
||||
2023/10/15-14:38:54.592905 7f4c897fa6c0 Delete type=3 #66
|
||||
2023/10/15-14:38:54.592958 7f4c897fa6c0 Delete type=0 #68
|
||||
2023/10/15-14:46:40.261315 7f49ebbff6c0 Level-0 table #73: started
|
||||
2023/10/15-14:46:40.261365 7f49ebbff6c0 Level-0 table #73: 0 bytes OK
|
||||
2023/10/15-14:46:40.268758 7f49ebbff6c0 Delete type=0 #71
|
||||
2023/10/15-14:46:40.282146 7f49ebbff6c0 Manual compaction at level-0 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
|
||||
2023/10/15-14:46:40.292539 7f49ebbff6c0 Manual compaction at level-1 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:45:12.176273 7ff6b7fff6c0 Recovering log #189
|
||||
2024/01/26-16:45:12.186033 7ff6b7fff6c0 Delete type=3 #187
|
||||
2024/01/26-16:45:12.186075 7ff6b7fff6c0 Delete type=0 #189
|
||||
2024/01/26-16:46:20.675233 7ff4363ff6c0 Level-0 table #194: started
|
||||
2024/01/26-16:46:20.675253 7ff4363ff6c0 Level-0 table #194: 0 bytes OK
|
||||
2024/01/26-16:46:20.681449 7ff4363ff6c0 Delete type=0 #192
|
||||
2024/01/26-16:46:20.687750 7ff4363ff6c0 Manual compaction at level-0 from '!items!0JWjCJaD6OOouqTj' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:46:20.687788 7ff4363ff6c0 Manual compaction at level-1 from '!items!0JWjCJaD6OOouqTj' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/10/15-14:37:25.712813 7f4c88ff96c0 Recovering log #64
|
||||
2023/10/15-14:37:25.722863 7f4c88ff96c0 Delete type=3 #62
|
||||
2023/10/15-14:37:25.722918 7f4c88ff96c0 Delete type=0 #64
|
||||
2023/10/15-14:37:51.818294 7f49ebbff6c0 Level-0 table #69: started
|
||||
2023/10/15-14:37:51.818319 7f49ebbff6c0 Level-0 table #69: 0 bytes OK
|
||||
2023/10/15-14:37:51.825363 7f49ebbff6c0 Delete type=0 #67
|
||||
2023/10/15-14:37:51.838432 7f49ebbff6c0 Manual compaction at level-0 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
|
||||
2023/10/15-14:37:51.838460 7f49ebbff6c0 Manual compaction at level-1 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:44:01.246989 7ff6ccbfa6c0 Recovering log #184
|
||||
2024/01/26-16:44:01.256586 7ff6ccbfa6c0 Delete type=3 #182
|
||||
2024/01/26-16:44:01.256664 7ff6ccbfa6c0 Delete type=0 #184
|
||||
2024/01/26-16:44:52.188290 7ff4363ff6c0 Level-0 table #190: started
|
||||
2024/01/26-16:44:52.188318 7ff4363ff6c0 Level-0 table #190: 0 bytes OK
|
||||
2024/01/26-16:44:52.195202 7ff4363ff6c0 Delete type=0 #188
|
||||
2024/01/26-16:44:52.201491 7ff4363ff6c0 Manual compaction at level-0 from '!items!0JWjCJaD6OOouqTj' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:44:52.201541 7ff4363ff6c0 Manual compaction at level-1 from '!items!0JWjCJaD6OOouqTj' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
||||
|
BIN
packs/armor/MANIFEST-000191
Normal file
BIN
packs/armor/MANIFEST-000191
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/000139.log
Normal file
0
packs/beyondtheblacksea/000139.log
Normal file
1
packs/beyondtheblacksea/CURRENT
Normal file
1
packs/beyondtheblacksea/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000137
|
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/01/26-16:45:12.325158 7ff6b7fff6c0 Recovering log #135
|
||||
2024/01/26-16:45:12.335499 7ff6b7fff6c0 Delete type=3 #133
|
||||
2024/01/26-16:45:12.335563 7ff6b7fff6c0 Delete type=0 #135
|
||||
2024/01/26-16:46:20.756265 7ff4363ff6c0 Level-0 table #140: started
|
||||
2024/01/26-16:46:20.756302 7ff4363ff6c0 Level-0 table #140: 0 bytes OK
|
||||
2024/01/26-16:46:20.762494 7ff4363ff6c0 Delete type=0 #138
|
||||
2024/01/26-16:46:20.775705 7ff4363ff6c0 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/01/26-16:44:01.386535 7ff6b6ffd6c0 Recovering log #131
|
||||
2024/01/26-16:44:01.397538 7ff6b6ffd6c0 Delete type=3 #129
|
||||
2024/01/26-16:44:01.397640 7ff6b6ffd6c0 Delete type=0 #131
|
||||
2024/01/26-16:44:52.261471 7ff4363ff6c0 Level-0 table #136: started
|
||||
2024/01/26-16:44:52.261497 7ff4363ff6c0 Level-0 table #136: 0 bytes OK
|
||||
2024/01/26-16:44:52.267579 7ff4363ff6c0 Delete type=0 #134
|
||||
2024/01/26-16:44:52.280736 7ff4363ff6c0 Manual compaction at level-0 from '!folders!47aGmBuk1mHtbFFU' @ 72057594037927935 : 1 .. '!items!zwMpjsE84sk26eej' @ 0 : 0; will stop at (end)
|
BIN
packs/beyondtheblacksea/MANIFEST-000137
Normal file
BIN
packs/beyondtheblacksea/MANIFEST-000137
Normal file
Binary file not shown.
0
packs/conditions/000192.log
Normal file
0
packs/conditions/000192.log
Normal file
@ -1 +1 @@
|
||||
MANIFEST-000070
|
||||
MANIFEST-000190
|
||||
|
@ -1,7 +1,7 @@
|
||||
2023/10/15-14:38:54.791339 7f4c897fa6c0 Recovering log #68
|
||||
2023/10/15-14:38:54.843113 7f4c897fa6c0 Delete type=3 #66
|
||||
2023/10/15-14:38:54.843175 7f4c897fa6c0 Delete type=0 #68
|
||||
2023/10/15-14:46:40.312515 7f49ebbff6c0 Level-0 table #73: started
|
||||
2023/10/15-14:46:40.312570 7f49ebbff6c0 Level-0 table #73: 0 bytes OK
|
||||
2023/10/15-14:46:40.319300 7f49ebbff6c0 Delete type=0 #71
|
||||
2023/10/15-14:46:40.325484 7f49ebbff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:45:12.225313 7ff6b7fff6c0 Recovering log #188
|
||||
2024/01/26-16:45:12.234683 7ff6b7fff6c0 Delete type=3 #186
|
||||
2024/01/26-16:45:12.234894 7ff6b7fff6c0 Delete type=0 #188
|
||||
2024/01/26-16:46:20.695766 7ff4363ff6c0 Level-0 table #193: started
|
||||
2024/01/26-16:46:20.695812 7ff4363ff6c0 Level-0 table #193: 0 bytes OK
|
||||
2024/01/26-16:46:20.702115 7ff4363ff6c0 Delete type=0 #191
|
||||
2024/01/26-16:46:20.715382 7ff4363ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,7 +1,7 @@
|
||||
2023/10/15-14:37:25.761090 7f4c88ff96c0 Recovering log #64
|
||||
2023/10/15-14:37:25.771978 7f4c88ff96c0 Delete type=3 #62
|
||||
2023/10/15-14:37:25.772043 7f4c88ff96c0 Delete type=0 #64
|
||||
2023/10/15-14:37:51.852191 7f49ebbff6c0 Level-0 table #69: started
|
||||
2023/10/15-14:37:51.852215 7f49ebbff6c0 Level-0 table #69: 0 bytes OK
|
||||
2023/10/15-14:37:51.858913 7f49ebbff6c0 Delete type=0 #67
|
||||
2023/10/15-14:37:51.865438 7f49ebbff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:44:01.298464 7ff6ccbfa6c0 Recovering log #184
|
||||
2024/01/26-16:44:01.307852 7ff6ccbfa6c0 Delete type=3 #182
|
||||
2024/01/26-16:44:01.307891 7ff6ccbfa6c0 Delete type=0 #184
|
||||
2024/01/26-16:44:52.214766 7ff4363ff6c0 Level-0 table #189: started
|
||||
2024/01/26-16:44:52.214786 7ff4363ff6c0 Level-0 table #189: 0 bytes OK
|
||||
2024/01/26-16:44:52.221197 7ff4363ff6c0 Delete type=0 #187
|
||||
2024/01/26-16:44:52.227824 7ff4363ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
BIN
packs/conditions/MANIFEST-000190
Normal file
BIN
packs/conditions/MANIFEST-000190
Normal file
Binary file not shown.
0
packs/currency/000192.log
Normal file
0
packs/currency/000192.log
Normal file
@ -1 +1 @@
|
||||
MANIFEST-000070
|
||||
MANIFEST-000190
|
||||
|
@ -1,7 +1,7 @@
|
||||
2023/10/15-14:38:54.845410 7f4c89ffb6c0 Recovering log #68
|
||||
2023/10/15-14:38:54.909363 7f4c89ffb6c0 Delete type=3 #66
|
||||
2023/10/15-14:38:54.909465 7f4c89ffb6c0 Delete type=0 #68
|
||||
2023/10/15-14:46:40.319416 7f49ebbff6c0 Level-0 table #73: started
|
||||
2023/10/15-14:46:40.319438 7f49ebbff6c0 Level-0 table #73: 0 bytes OK
|
||||
2023/10/15-14:46:40.325391 7f49ebbff6c0 Delete type=0 #71
|
||||
2023/10/15-14:46:40.332550 7f49ebbff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:45:12.236796 7ff6ccbfa6c0 Recovering log #188
|
||||
2024/01/26-16:45:12.247179 7ff6ccbfa6c0 Delete type=3 #186
|
||||
2024/01/26-16:45:12.247261 7ff6ccbfa6c0 Delete type=0 #188
|
||||
2024/01/26-16:46:20.708975 7ff4363ff6c0 Level-0 table #193: started
|
||||
2024/01/26-16:46:20.709012 7ff4363ff6c0 Level-0 table #193: 0 bytes OK
|
||||
2024/01/26-16:46:20.715289 7ff4363ff6c0 Delete type=0 #191
|
||||
2024/01/26-16:46:20.715398 7ff4363ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,7 +1,7 @@
|
||||
2023/10/15-14:37:25.773414 7f4c8a7fc6c0 Recovering log #64
|
||||
2023/10/15-14:37:25.783364 7f4c8a7fc6c0 Delete type=3 #62
|
||||
2023/10/15-14:37:25.783416 7f4c8a7fc6c0 Delete type=0 #64
|
||||
2023/10/15-14:37:51.845492 7f49ebbff6c0 Level-0 table #69: started
|
||||
2023/10/15-14:37:51.845517 7f49ebbff6c0 Level-0 table #69: 0 bytes OK
|
||||
2023/10/15-14:37:51.852084 7f49ebbff6c0 Delete type=0 #67
|
||||
2023/10/15-14:37:51.865427 7f49ebbff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:44:01.309674 7ff6b7fff6c0 Recovering log #184
|
||||
2024/01/26-16:44:01.320294 7ff6b7fff6c0 Delete type=3 #182
|
||||
2024/01/26-16:44:01.320644 7ff6b7fff6c0 Delete type=0 #184
|
||||
2024/01/26-16:44:52.221291 7ff4363ff6c0 Level-0 table #189: started
|
||||
2024/01/26-16:44:52.221313 7ff4363ff6c0 Level-0 table #189: 0 bytes OK
|
||||
2024/01/26-16:44:52.227729 7ff4363ff6c0 Delete type=0 #187
|
||||
2024/01/26-16:44:52.227832 7ff4363ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
BIN
packs/currency/MANIFEST-000190
Normal file
BIN
packs/currency/MANIFEST-000190
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/000122.log
Normal file
0
packs/cybernetics/000122.log
Normal file
1
packs/cybernetics/CURRENT
Normal file
1
packs/cybernetics/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000120
|
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/01/26-16:45:12.272968 7ff6b7fff6c0 Recovering log #118
|
||||
2024/01/26-16:45:12.283470 7ff6b7fff6c0 Delete type=3 #116
|
||||
2024/01/26-16:45:12.283523 7ff6b7fff6c0 Delete type=0 #118
|
||||
2024/01/26-16:46:20.735545 7ff4363ff6c0 Level-0 table #123: started
|
||||
2024/01/26-16:46:20.735569 7ff4363ff6c0 Level-0 table #123: 0 bytes OK
|
||||
2024/01/26-16:46:20.742205 7ff4363ff6c0 Delete type=0 #121
|
||||
2024/01/26-16:46:20.748616 7ff4363ff6c0 Manual compaction at level-0 from '!items!0SbSmYdxJSlcNr6x' @ 72057594037927935 : 1 .. '!items!yyCPVVl8vmMOfPcN' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:46:20.748653 7ff4363ff6c0 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/01/26-16:44:01.346924 7ff6ccbfa6c0 Recovering log #113
|
||||
2024/01/26-16:44:01.357987 7ff6ccbfa6c0 Delete type=3 #111
|
||||
2024/01/26-16:44:01.358062 7ff6ccbfa6c0 Delete type=0 #113
|
||||
2024/01/26-16:44:52.227918 7ff4363ff6c0 Level-0 table #119: started
|
||||
2024/01/26-16:44:52.227939 7ff4363ff6c0 Level-0 table #119: 0 bytes OK
|
||||
2024/01/26-16:44:52.233957 7ff4363ff6c0 Delete type=0 #117
|
||||
2024/01/26-16:44:52.254451 7ff4363ff6c0 Manual compaction at level-0 from '!items!0SbSmYdxJSlcNr6x' @ 72057594037927935 : 1 .. '!items!yyCPVVl8vmMOfPcN' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:44:52.254483 7ff4363ff6c0 Manual compaction at level-1 from '!items!0SbSmYdxJSlcNr6x' @ 72057594037927935 : 1 .. '!items!yyCPVVl8vmMOfPcN' @ 0 : 0; will stop at (end)
|
BIN
packs/cybernetics/MANIFEST-000120
Normal file
BIN
packs/cybernetics/MANIFEST-000120
Normal file
Binary file not shown.
0
packs/darkstars-sf/000004.log
Normal file
0
packs/darkstars-sf/000004.log
Normal file
BIN
packs/darkstars-sf/000005.ldb
Normal file
BIN
packs/darkstars-sf/000005.ldb
Normal file
Binary file not shown.
1
packs/darkstars-sf/CURRENT
Normal file
1
packs/darkstars-sf/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000002
|
0
packs/darkstars-sf/LOCK
Normal file
0
packs/darkstars-sf/LOCK
Normal file
5
packs/darkstars-sf/LOG
Normal file
5
packs/darkstars-sf/LOG
Normal file
@ -0,0 +1,5 @@
|
||||
2024/01/26-16:45:12.310498 7ff6b77fe6c0 Delete type=3 #1
|
||||
2024/01/26-16:46:20.715565 7ff4363ff6c0 Level-0 table #5: started
|
||||
2024/01/26-16:46:20.722812 7ff4363ff6c0 Level-0 table #5: 332133 bytes OK
|
||||
2024/01/26-16:46:20.729100 7ff4363ff6c0 Delete type=0 #3
|
||||
2024/01/26-16:46:20.748593 7ff4363ff6c0 Manual compaction at level-0 from '!folders!La3YsNYFddQnmsba' @ 72057594037927935 : 1 .. '!items!zzDfuUJpQzzz262R' @ 0 : 0; will stop at (end)
|
BIN
packs/darkstars-sf/MANIFEST-000002
Normal file
BIN
packs/darkstars-sf/MANIFEST-000002
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/000193.log
Normal file
0
packs/equipment/000193.log
Normal file
@ -1 +1 @@
|
||||
MANIFEST-000070
|
||||
MANIFEST-000191
|
||||
|
@ -1,7 +1,8 @@
|
||||
2023/10/15-14:38:54.594761 7f4c89ffb6c0 Recovering log #68
|
||||
2023/10/15-14:38:54.648357 7f4c89ffb6c0 Delete type=3 #66
|
||||
2023/10/15-14:38:54.648424 7f4c89ffb6c0 Delete type=0 #68
|
||||
2023/10/15-14:46:40.292564 7f49ebbff6c0 Level-0 table #73: started
|
||||
2023/10/15-14:46:40.292593 7f49ebbff6c0 Level-0 table #73: 0 bytes OK
|
||||
2023/10/15-14:46:40.298941 7f49ebbff6c0 Delete type=0 #71
|
||||
2023/10/15-14:46:40.312486 7f49ebbff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:45:12.187737 7ff6ccbfa6c0 Recovering log #189
|
||||
2024/01/26-16:45:12.198131 7ff6ccbfa6c0 Delete type=3 #187
|
||||
2024/01/26-16:45:12.198196 7ff6ccbfa6c0 Delete type=0 #189
|
||||
2024/01/26-16:46:20.662928 7ff4363ff6c0 Level-0 table #194: started
|
||||
2024/01/26-16:46:20.662962 7ff4363ff6c0 Level-0 table #194: 0 bytes OK
|
||||
2024/01/26-16:46:20.668889 7ff4363ff6c0 Delete type=0 #192
|
||||
2024/01/26-16:46:20.675221 7ff4363ff6c0 Manual compaction at level-0 from '!items!05RVU3UcRabogEvL' @ 72057594037927935 : 1 .. '!items!zaxcUsWUZ1vvl0p8' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:46:20.687735 7ff4363ff6c0 Manual compaction at level-1 from '!items!05RVU3UcRabogEvL' @ 72057594037927935 : 1 .. '!items!zaxcUsWUZ1vvl0p8' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,7 +1,8 @@
|
||||
2023/10/15-14:37:25.724521 7f4c8a7fc6c0 Recovering log #64
|
||||
2023/10/15-14:37:25.734875 7f4c8a7fc6c0 Delete type=3 #62
|
||||
2023/10/15-14:37:25.734932 7f4c8a7fc6c0 Delete type=0 #64
|
||||
2023/10/15-14:37:51.825475 7f49ebbff6c0 Level-0 table #69: started
|
||||
2023/10/15-14:37:51.825502 7f49ebbff6c0 Level-0 table #69: 0 bytes OK
|
||||
2023/10/15-14:37:51.831521 7f49ebbff6c0 Delete type=0 #67
|
||||
2023/10/15-14:37:51.838443 7f49ebbff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:44:01.259602 7ff6b7fff6c0 Recovering log #184
|
||||
2024/01/26-16:44:01.270578 7ff6b7fff6c0 Delete type=3 #182
|
||||
2024/01/26-16:44:01.270617 7ff6b7fff6c0 Delete type=0 #184
|
||||
2024/01/26-16:44:52.195296 7ff4363ff6c0 Level-0 table #190: started
|
||||
2024/01/26-16:44:52.195319 7ff4363ff6c0 Level-0 table #190: 0 bytes OK
|
||||
2024/01/26-16:44:52.201363 7ff4363ff6c0 Delete type=0 #188
|
||||
2024/01/26-16:44:52.201512 7ff4363ff6c0 Manual compaction at level-0 from '!items!05RVU3UcRabogEvL' @ 72057594037927935 : 1 .. '!items!zaxcUsWUZ1vvl0p8' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:44:52.201534 7ff4363ff6c0 Manual compaction at level-1 from '!items!05RVU3UcRabogEvL' @ 72057594037927935 : 1 .. '!items!zaxcUsWUZ1vvl0p8' @ 0 : 0; will stop at (end)
|
||||
|
BIN
packs/equipment/MANIFEST-000191
Normal file
BIN
packs/equipment/MANIFEST-000191
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/000069.log
Normal file
0
packs/genetics/000069.log
Normal file
1
packs/genetics/CURRENT
Normal file
1
packs/genetics/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000067
|
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/01/26-16:45:12.285582 7ff6ccbfa6c0 Recovering log #65
|
||||
2024/01/26-16:45:12.295357 7ff6ccbfa6c0 Delete type=3 #63
|
||||
2024/01/26-16:45:12.295414 7ff6ccbfa6c0 Delete type=0 #65
|
||||
2024/01/26-16:46:20.742312 7ff4363ff6c0 Level-0 table #70: started
|
||||
2024/01/26-16:46:20.742337 7ff4363ff6c0 Level-0 table #70: 0 bytes OK
|
||||
2024/01/26-16:46:20.748489 7ff4363ff6c0 Delete type=0 #68
|
||||
2024/01/26-16:46:20.748624 7ff4363ff6c0 Manual compaction at level-0 from '!items!56A3sVsiN7KI6a45' @ 72057594037927935 : 1 .. '!items!zJiASbV3QqH2oHb1' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:46:20.748645 7ff4363ff6c0 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/01/26-16:44:01.360668 7ff6b7fff6c0 Recovering log #61
|
||||
2024/01/26-16:44:01.371203 7ff6b7fff6c0 Delete type=3 #59
|
||||
2024/01/26-16:44:01.371247 7ff6b7fff6c0 Delete type=0 #61
|
||||
2024/01/26-16:44:52.248033 7ff4363ff6c0 Level-0 table #66: started
|
||||
2024/01/26-16:44:52.248057 7ff4363ff6c0 Level-0 table #66: 0 bytes OK
|
||||
2024/01/26-16:44:52.254324 7ff4363ff6c0 Delete type=0 #64
|
||||
2024/01/26-16:44:52.254491 7ff4363ff6c0 Manual compaction at level-0 from '!items!56A3sVsiN7KI6a45' @ 72057594037927935 : 1 .. '!items!zJiASbV3QqH2oHb1' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:44:52.254513 7ff4363ff6c0 Manual compaction at level-1 from '!items!56A3sVsiN7KI6a45' @ 72057594037927935 : 1 .. '!items!zJiASbV3QqH2oHb1' @ 0 : 0; will stop at (end)
|
BIN
packs/genetics/MANIFEST-000067
Normal file
BIN
packs/genetics/MANIFEST-000067
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/000159.log
Normal file
0
packs/nightborough/000159.log
Normal file
1
packs/nightborough/CURRENT
Normal file
1
packs/nightborough/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000157
|
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/01/26-16:45:12.339363 7ff6ccbfa6c0 Recovering log #155
|
||||
2024/01/26-16:45:12.349148 7ff6ccbfa6c0 Delete type=3 #153
|
||||
2024/01/26-16:45:12.349198 7ff6ccbfa6c0 Delete type=0 #155
|
||||
2024/01/26-16:46:20.762584 7ff4363ff6c0 Level-0 table #160: started
|
||||
2024/01/26-16:46:20.762605 7ff4363ff6c0 Level-0 table #160: 0 bytes OK
|
||||
2024/01/26-16:46:20.769086 7ff4363ff6c0 Delete type=0 #158
|
||||
2024/01/26-16:46:20.775714 7ff4363ff6c0 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/01/26-16:44:01.402829 7ff6ccbfa6c0 Recovering log #151
|
||||
2024/01/26-16:44:01.413124 7ff6ccbfa6c0 Delete type=3 #149
|
||||
2024/01/26-16:44:01.413220 7ff6ccbfa6c0 Delete type=0 #151
|
||||
2024/01/26-16:44:52.267682 7ff4363ff6c0 Level-0 table #156: started
|
||||
2024/01/26-16:44:52.267705 7ff4363ff6c0 Level-0 table #156: 0 bytes OK
|
||||
2024/01/26-16:44:52.274231 7ff4363ff6c0 Delete type=0 #154
|
||||
2024/01/26-16:44:52.280751 7ff4363ff6c0 Manual compaction at level-0 from '!folders!2iZtDz80npHPIwkS' @ 72057594037927935 : 1 .. '!items!zyFR9C1jBTeFzbxg' @ 0 : 0; will stop at (end)
|
BIN
packs/nightborough/MANIFEST-000157
Normal file
BIN
packs/nightborough/MANIFEST-000157
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/000193.log
Normal file
0
packs/perks/000193.log
Normal file
@ -1 +1 @@
|
||||
MANIFEST-000070
|
||||
MANIFEST-000191
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/10/15-14:38:54.969746 7f4c88ff96c0 Recovering log #68
|
||||
2023/10/15-14:38:55.024008 7f4c88ff96c0 Delete type=3 #66
|
||||
2023/10/15-14:38:55.024062 7f4c88ff96c0 Delete type=0 #68
|
||||
2023/10/15-14:46:40.332565 7f49ebbff6c0 Level-0 table #73: started
|
||||
2023/10/15-14:46:40.332592 7f49ebbff6c0 Level-0 table #73: 0 bytes OK
|
||||
2023/10/15-14:46:40.338680 7f49ebbff6c0 Delete type=0 #71
|
||||
2023/10/15-14:46:40.338872 7f49ebbff6c0 Manual compaction at level-0 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||
2023/10/15-14:46:40.338911 7f49ebbff6c0 Manual compaction at level-1 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:45:12.261417 7ff6b6ffd6c0 Recovering log #189
|
||||
2024/01/26-16:45:12.271000 7ff6b6ffd6c0 Delete type=3 #187
|
||||
2024/01/26-16:45:12.271059 7ff6b6ffd6c0 Delete type=0 #189
|
||||
2024/01/26-16:46:20.729362 7ff4363ff6c0 Level-0 table #194: started
|
||||
2024/01/26-16:46:20.729409 7ff4363ff6c0 Level-0 table #194: 0 bytes OK
|
||||
2024/01/26-16:46:20.735440 7ff4363ff6c0 Delete type=0 #192
|
||||
2024/01/26-16:46:20.748607 7ff4363ff6c0 Manual compaction at level-0 from '!items!0K3CVEKsq67oKiYE' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:46:20.748659 7ff4363ff6c0 Manual compaction at level-1 from '!items!0K3CVEKsq67oKiYE' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/10/15-14:37:25.798415 7f4c897fa6c0 Recovering log #64
|
||||
2023/10/15-14:37:25.809315 7f4c897fa6c0 Delete type=3 #62
|
||||
2023/10/15-14:37:25.809368 7f4c897fa6c0 Delete type=0 #64
|
||||
2023/10/15-14:37:51.865540 7f49ebbff6c0 Level-0 table #69: started
|
||||
2023/10/15-14:37:51.865572 7f49ebbff6c0 Level-0 table #69: 0 bytes OK
|
||||
2023/10/15-14:37:51.872252 7f49ebbff6c0 Delete type=0 #67
|
||||
2023/10/15-14:37:51.872451 7f49ebbff6c0 Manual compaction at level-0 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||
2023/10/15-14:37:51.872491 7f49ebbff6c0 Manual compaction at level-1 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:44:01.335406 7ff6b6ffd6c0 Recovering log #184
|
||||
2024/01/26-16:44:01.344619 7ff6b6ffd6c0 Delete type=3 #182
|
||||
2024/01/26-16:44:01.344656 7ff6b6ffd6c0 Delete type=0 #184
|
||||
2024/01/26-16:44:52.241636 7ff4363ff6c0 Level-0 table #190: started
|
||||
2024/01/26-16:44:52.241673 7ff4363ff6c0 Level-0 table #190: 0 bytes OK
|
||||
2024/01/26-16:44:52.247808 7ff4363ff6c0 Delete type=0 #188
|
||||
2024/01/26-16:44:52.254473 7ff4363ff6c0 Manual compaction at level-0 from '!items!0K3CVEKsq67oKiYE' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:44:52.254505 7ff4363ff6c0 Manual compaction at level-1 from '!items!0K3CVEKsq67oKiYE' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||
|
BIN
packs/perks/MANIFEST-000191
Normal file
BIN
packs/perks/MANIFEST-000191
Normal file
Binary file not shown.
0
packs/shields/000192.log
Normal file
0
packs/shields/000192.log
Normal file
@ -1 +1 @@
|
||||
MANIFEST-000070
|
||||
MANIFEST-000190
|
||||
|
@ -1,7 +1,7 @@
|
||||
2023/10/15-14:38:54.650221 7f4c8a7fc6c0 Recovering log #68
|
||||
2023/10/15-14:38:54.726970 7f4c8a7fc6c0 Delete type=3 #66
|
||||
2023/10/15-14:38:54.727056 7f4c8a7fc6c0 Delete type=0 #68
|
||||
2023/10/15-14:46:40.305582 7f49ebbff6c0 Level-0 table #73: started
|
||||
2023/10/15-14:46:40.305605 7f49ebbff6c0 Level-0 table #73: 0 bytes OK
|
||||
2023/10/15-14:46:40.312291 7f49ebbff6c0 Delete type=0 #71
|
||||
2023/10/15-14:46:40.319406 7f49ebbff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:45:12.200180 7ff6b77fe6c0 Recovering log #188
|
||||
2024/01/26-16:45:12.209905 7ff6b77fe6c0 Delete type=3 #186
|
||||
2024/01/26-16:45:12.209960 7ff6b77fe6c0 Delete type=0 #188
|
||||
2024/01/26-16:46:20.681529 7ff4363ff6c0 Level-0 table #193: started
|
||||
2024/01/26-16:46:20.681551 7ff4363ff6c0 Level-0 table #193: 0 bytes OK
|
||||
2024/01/26-16:46:20.687599 7ff4363ff6c0 Delete type=0 #191
|
||||
2024/01/26-16:46:20.687763 7ff4363ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,7 +1,7 @@
|
||||
2023/10/15-14:37:25.736213 7f4c89ffb6c0 Recovering log #64
|
||||
2023/10/15-14:37:25.747612 7f4c89ffb6c0 Delete type=3 #62
|
||||
2023/10/15-14:37:25.747744 7f4c89ffb6c0 Delete type=0 #64
|
||||
2023/10/15-14:37:51.831752 7f49ebbff6c0 Level-0 table #69: started
|
||||
2023/10/15-14:37:51.831832 7f49ebbff6c0 Level-0 table #69: 0 bytes OK
|
||||
2023/10/15-14:37:51.838294 7f49ebbff6c0 Delete type=0 #67
|
||||
2023/10/15-14:37:51.838454 7f49ebbff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:44:01.272823 7ff6b77fe6c0 Recovering log #184
|
||||
2024/01/26-16:44:01.282074 7ff6b77fe6c0 Delete type=3 #182
|
||||
2024/01/26-16:44:01.282112 7ff6b77fe6c0 Delete type=0 #184
|
||||
2024/01/26-16:44:52.208441 7ff4363ff6c0 Level-0 table #189: started
|
||||
2024/01/26-16:44:52.208462 7ff4363ff6c0 Level-0 table #189: 0 bytes OK
|
||||
2024/01/26-16:44:52.214624 7ff4363ff6c0 Delete type=0 #187
|
||||
2024/01/26-16:44:52.227817 7ff4363ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
BIN
packs/shields/MANIFEST-000190
Normal file
BIN
packs/shields/MANIFEST-000190
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/000193.log
Normal file
0
packs/skills/000193.log
Normal file
@ -1 +1 @@
|
||||
MANIFEST-000070
|
||||
MANIFEST-000191
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/10/15-14:38:54.911330 7f4c8a7fc6c0 Recovering log #68
|
||||
2023/10/15-14:38:54.967669 7f4c8a7fc6c0 Delete type=3 #66
|
||||
2023/10/15-14:38:54.967727 7f4c8a7fc6c0 Delete type=0 #68
|
||||
2023/10/15-14:46:40.325505 7f49ebbff6c0 Level-0 table #73: started
|
||||
2023/10/15-14:46:40.325527 7f49ebbff6c0 Level-0 table #73: 0 bytes OK
|
||||
2023/10/15-14:46:40.332445 7f49ebbff6c0 Delete type=0 #71
|
||||
2023/10/15-14:46:40.338849 7f49ebbff6c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
|
||||
2023/10/15-14:46:40.338891 7f49ebbff6c0 Manual compaction at level-1 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:45:12.248991 7ff6b77fe6c0 Recovering log #189
|
||||
2024/01/26-16:45:12.258851 7ff6b77fe6c0 Delete type=3 #187
|
||||
2024/01/26-16:45:12.259070 7ff6b77fe6c0 Delete type=0 #189
|
||||
2024/01/26-16:46:20.702205 7ff4363ff6c0 Level-0 table #194: started
|
||||
2024/01/26-16:46:20.702227 7ff4363ff6c0 Level-0 table #194: 0 bytes OK
|
||||
2024/01/26-16:46:20.708847 7ff4363ff6c0 Delete type=0 #192
|
||||
2024/01/26-16:46:20.715391 7ff4363ff6c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!z3j0TW0hqigz6UP5' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:46:20.715425 7ff4363ff6c0 Manual compaction at level-1 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!z3j0TW0hqigz6UP5' @ 0 : 0; will stop at (end)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/10/15-14:37:25.785047 7f4c89ffb6c0 Recovering log #64
|
||||
2023/10/15-14:37:25.795593 7f4c89ffb6c0 Delete type=3 #62
|
||||
2023/10/15-14:37:25.795812 7f4c89ffb6c0 Delete type=0 #64
|
||||
2023/10/15-14:37:51.859050 7f49ebbff6c0 Level-0 table #69: started
|
||||
2023/10/15-14:37:51.859076 7f49ebbff6c0 Level-0 table #69: 0 bytes OK
|
||||
2023/10/15-14:37:51.865285 7f49ebbff6c0 Delete type=0 #67
|
||||
2023/10/15-14:37:51.865448 7f49ebbff6c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
|
||||
2023/10/15-14:37:51.865480 7f49ebbff6c0 Manual compaction at level-1 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:44:01.322558 7ff6b77fe6c0 Recovering log #184
|
||||
2024/01/26-16:44:01.333054 7ff6b77fe6c0 Delete type=3 #182
|
||||
2024/01/26-16:44:01.333136 7ff6b77fe6c0 Delete type=0 #184
|
||||
2024/01/26-16:44:52.234062 7ff4363ff6c0 Level-0 table #190: started
|
||||
2024/01/26-16:44:52.234088 7ff4363ff6c0 Level-0 table #190: 0 bytes OK
|
||||
2024/01/26-16:44:52.241500 7ff4363ff6c0 Delete type=0 #188
|
||||
2024/01/26-16:44:52.254464 7ff4363ff6c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!z3j0TW0hqigz6UP5' @ 0 : 0; will stop at (end)
|
||||
2024/01/26-16:44:52.254498 7ff4363ff6c0 Manual compaction at level-1 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!z3j0TW0hqigz6UP5' @ 0 : 0; will stop at (end)
|
||||
|
BIN
packs/skills/MANIFEST-000191
Normal file
BIN
packs/skills/MANIFEST-000191
Normal file
Binary file not shown.
0
packs/taser/000082.log
Normal file
0
packs/taser/000082.log
Normal file
1
packs/taser/CURRENT
Normal file
1
packs/taser/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000080
|
0
packs/taser/LOCK
Normal file
0
packs/taser/LOCK
Normal file
7
packs/taser/LOG
Normal file
7
packs/taser/LOG
Normal file
@ -0,0 +1,7 @@
|
||||
2024/01/26-16:45:12.352918 7ff6b77fe6c0 Recovering log #78
|
||||
2024/01/26-16:45:12.364063 7ff6b77fe6c0 Delete type=3 #76
|
||||
2024/01/26-16:45:12.364160 7ff6b77fe6c0 Delete type=0 #78
|
||||
2024/01/26-16:46:20.769243 7ff4363ff6c0 Level-0 table #83: started
|
||||
2024/01/26-16:46:20.769284 7ff4363ff6c0 Level-0 table #83: 0 bytes OK
|
||||
2024/01/26-16:46:20.775593 7ff4363ff6c0 Delete type=0 #81
|
||||
2024/01/26-16:46:20.775723 7ff4363ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
7
packs/taser/LOG.old
Normal file
7
packs/taser/LOG.old
Normal file
@ -0,0 +1,7 @@
|
||||
2024/01/26-16:44:01.418646 7ff6b7fff6c0 Recovering log #74
|
||||
2024/01/26-16:44:01.428162 7ff6b7fff6c0 Delete type=3 #72
|
||||
2024/01/26-16:44:01.428239 7ff6b7fff6c0 Delete type=0 #74
|
||||
2024/01/26-16:44:52.274344 7ff4363ff6c0 Level-0 table #79: started
|
||||
2024/01/26-16:44:52.274375 7ff4363ff6c0 Level-0 table #79: 0 bytes OK
|
||||
2024/01/26-16:44:52.280582 7ff4363ff6c0 Delete type=0 #77
|
||||
2024/01/26-16:44:52.280761 7ff4363ff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
BIN
packs/taser/MANIFEST-000080
Normal file
BIN
packs/taser/MANIFEST-000080
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user