Compare commits
12 Commits
fvtt-dark-
...
9ad34b4672
Author | SHA1 | Date | |
---|---|---|---|
9ad34b4672 | |||
ae36be975d | |||
69eaa8fc66 | |||
b741cffd96 | |||
e5296a4bcd | |||
9f93849a9d | |||
14c7e54b3d | |||
ce3359b2f0 | |||
02bf6cc10a | |||
dc5a1056b7 | |||
c7ccc50db0 | |||
1f8275e153 |
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 |
@ -41,6 +41,8 @@ export class DarkStarsActorSheet extends ActorSheet {
|
||||
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()) ),
|
||||
|
@ -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) {
|
||||
|
@ -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()
|
||||
})
|
||||
|
||||
/* -------------------------------------------- */
|
||||
|
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.
1
packs/aldebaran/CURRENT
Normal file
1
packs/aldebaran/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000144
|
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.
@ -1 +1 @@
|
||||
MANIFEST-000102
|
||||
MANIFEST-000191
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/10/21-12:57:48.590897 7f8105ffb6c0 Recovering log #100
|
||||
2023/10/21-12:57:48.601577 7f8105ffb6c0 Delete type=3 #98
|
||||
2023/10/21-12:57:48.601642 7f8105ffb6c0 Delete type=0 #100
|
||||
2023/10/21-14:16:12.221910 7f7e677006c0 Level-0 table #105: started
|
||||
2023/10/21-14:16:12.221948 7f7e677006c0 Level-0 table #105: 0 bytes OK
|
||||
2023/10/21-14:16:12.228790 7f7e677006c0 Delete type=0 #103
|
||||
2023/10/21-14:16:12.242411 7f7e677006c0 Manual compaction at level-0 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
|
||||
2023/10/21-14:16:12.242453 7f7e677006c0 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/21-09:46:53.172622 7f8106ffd6c0 Recovering log #96
|
||||
2023/10/21-09:46:53.183332 7f8106ffd6c0 Delete type=3 #94
|
||||
2023/10/21-09:46:53.183472 7f8106ffd6c0 Delete type=0 #96
|
||||
2023/10/21-10:25:16.591050 7f7e677006c0 Level-0 table #101: started
|
||||
2023/10/21-10:25:16.591087 7f7e677006c0 Level-0 table #101: 0 bytes OK
|
||||
2023/10/21-10:25:16.597356 7f7e677006c0 Delete type=0 #99
|
||||
2023/10/21-10:25:16.608021 7f7e677006c0 Manual compaction at level-0 from '!items!3O3MjRkrmX4HeaPY' @ 72057594037927935 : 1 .. '!items!q9JGWL4y4udYrzvD' @ 0 : 0; will stop at (end)
|
||||
2023/10/21-10:25:16.619288 7f7e677006c0 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)
|
||||
|
Binary file not shown.
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.
1
packs/beyondtheblacksea/CURRENT
Normal file
1
packs/beyondtheblacksea/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000137
|
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.
@ -1 +1 @@
|
||||
MANIFEST-000102
|
||||
MANIFEST-000190
|
||||
|
@ -1,7 +1,7 @@
|
||||
2023/10/21-12:57:48.639550 7f8105ffb6c0 Recovering log #100
|
||||
2023/10/21-12:57:48.652746 7f8105ffb6c0 Delete type=3 #98
|
||||
2023/10/21-12:57:48.652801 7f8105ffb6c0 Delete type=0 #100
|
||||
2023/10/21-14:16:12.242612 7f7e677006c0 Level-0 table #105: started
|
||||
2023/10/21-14:16:12.242645 7f7e677006c0 Level-0 table #105: 0 bytes OK
|
||||
2023/10/21-14:16:12.248782 7f7e677006c0 Delete type=0 #103
|
||||
2023/10/21-14:16:12.269739 7f7e677006c0 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/21-09:46:53.229244 7f8106ffd6c0 Recovering log #96
|
||||
2023/10/21-09:46:53.239724 7f8106ffd6c0 Delete type=3 #94
|
||||
2023/10/21-09:46:53.239823 7f8106ffd6c0 Delete type=0 #96
|
||||
2023/10/21-10:25:16.646538 7f7e677006c0 Level-0 table #101: started
|
||||
2023/10/21-10:25:16.646627 7f7e677006c0 Level-0 table #101: 0 bytes OK
|
||||
2023/10/21-10:25:16.654130 7f7e677006c0 Delete type=0 #99
|
||||
2023/10/21-10:25:16.674543 7f7e677006c0 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)
|
||||
|
Binary file not shown.
BIN
packs/conditions/MANIFEST-000190
Normal file
BIN
packs/conditions/MANIFEST-000190
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000102
|
||||
MANIFEST-000190
|
||||
|
@ -1,7 +1,7 @@
|
||||
2023/10/21-12:57:48.654499 7f81077fe6c0 Recovering log #100
|
||||
2023/10/21-12:57:48.665788 7f81077fe6c0 Delete type=3 #98
|
||||
2023/10/21-12:57:48.665868 7f81077fe6c0 Delete type=0 #100
|
||||
2023/10/21-14:16:12.249000 7f7e677006c0 Level-0 table #105: started
|
||||
2023/10/21-14:16:12.249065 7f7e677006c0 Level-0 table #105: 0 bytes OK
|
||||
2023/10/21-14:16:12.256005 7f7e677006c0 Delete type=0 #103
|
||||
2023/10/21-14:16:12.269765 7f7e677006c0 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/21-09:46:53.241977 7f81067fc6c0 Recovering log #96
|
||||
2023/10/21-09:46:53.252607 7f81067fc6c0 Delete type=3 #94
|
||||
2023/10/21-09:46:53.252753 7f81067fc6c0 Delete type=0 #96
|
||||
2023/10/21-10:25:16.654235 7f7e677006c0 Level-0 table #101: started
|
||||
2023/10/21-10:25:16.654260 7f7e677006c0 Level-0 table #101: 0 bytes OK
|
||||
2023/10/21-10:25:16.660290 7f7e677006c0 Delete type=0 #99
|
||||
2023/10/21-10:25:16.674565 7f7e677006c0 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)
|
||||
|
Binary file not shown.
BIN
packs/currency/MANIFEST-000190
Normal file
BIN
packs/currency/MANIFEST-000190
Normal file
Binary file not shown.
Binary file not shown.
BIN
packs/cybernetics/000115.ldb
Normal file
BIN
packs/cybernetics/000115.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
||||
MANIFEST-000030
|
||||
MANIFEST-000120
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/10/21-12:57:48.693267 7f8105ffb6c0 Recovering log #28
|
||||
2023/10/21-12:57:48.706472 7f8105ffb6c0 Delete type=3 #26
|
||||
2023/10/21-12:57:48.706580 7f8105ffb6c0 Delete type=0 #28
|
||||
2023/10/21-14:16:12.269974 7f7e677006c0 Level-0 table #33: started
|
||||
2023/10/21-14:16:12.270032 7f7e677006c0 Level-0 table #33: 0 bytes OK
|
||||
2023/10/21-14:16:12.276741 7f7e677006c0 Delete type=0 #31
|
||||
2023/10/21-14:16:12.276863 7f7e677006c0 Manual compaction at level-0 from '!items!0JlVJvgxQQWY8lpO' @ 72057594037927935 : 1 .. '!items!zjxV4mcELwbZU8Et' @ 0 : 0; will stop at (end)
|
||||
2023/10/21-14:16:12.276884 7f7e677006c0 Manual compaction at level-1 from '!items!0JlVJvgxQQWY8lpO' @ 72057594037927935 : 1 .. '!items!zjxV4mcELwbZU8Et' @ 0 : 0; will stop at (end)
|
||||
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)
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/10/21-09:46:53.283509 7f8106ffd6c0 Recovering log #24
|
||||
2023/10/21-09:46:53.293910 7f8106ffd6c0 Delete type=3 #22
|
||||
2023/10/21-09:46:53.294097 7f8106ffd6c0 Delete type=0 #24
|
||||
2023/10/21-10:25:16.674800 7f7e677006c0 Level-0 table #29: started
|
||||
2023/10/21-10:25:16.674835 7f7e677006c0 Level-0 table #29: 0 bytes OK
|
||||
2023/10/21-10:25:16.680984 7f7e677006c0 Delete type=0 #27
|
||||
2023/10/21-10:25:16.681147 7f7e677006c0 Manual compaction at level-0 from '!items!0JlVJvgxQQWY8lpO' @ 72057594037927935 : 1 .. '!items!zjxV4mcELwbZU8Et' @ 0 : 0; will stop at (end)
|
||||
2023/10/21-10:25:16.681203 7f7e677006c0 Manual compaction at level-1 from '!items!0JlVJvgxQQWY8lpO' @ 72057594037927935 : 1 .. '!items!zjxV4mcELwbZU8Et' @ 0 : 0; will stop at (end)
|
||||
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)
|
||||
|
Binary file not shown.
BIN
packs/cybernetics/MANIFEST-000120
Normal file
BIN
packs/cybernetics/MANIFEST-000120
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.
1
packs/darkstars-sf/CURRENT
Normal file
1
packs/darkstars-sf/CURRENT
Normal file
@ -0,0 +1 @@
|
||||
MANIFEST-000002
|
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-000102
|
||||
MANIFEST-000191
|
||||
|
@ -1,7 +1,8 @@
|
||||
2023/10/21-12:57:48.603481 7f81077fe6c0 Recovering log #100
|
||||
2023/10/21-12:57:48.613256 7f81077fe6c0 Delete type=3 #98
|
||||
2023/10/21-12:57:48.613399 7f81077fe6c0 Delete type=0 #100
|
||||
2023/10/21-14:16:12.228908 7f7e677006c0 Level-0 table #105: started
|
||||
2023/10/21-14:16:12.228932 7f7e677006c0 Level-0 table #105: 0 bytes OK
|
||||
2023/10/21-14:16:12.234945 7f7e677006c0 Delete type=0 #103
|
||||
2023/10/21-14:16:12.242424 7f7e677006c0 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/21-09:46:53.186412 7f81067fc6c0 Recovering log #96
|
||||
2023/10/21-09:46:53.197532 7f81067fc6c0 Delete type=3 #94
|
||||
2023/10/21-09:46:53.197674 7f81067fc6c0 Delete type=0 #96
|
||||
2023/10/21-10:25:16.619385 7f7e677006c0 Level-0 table #101: started
|
||||
2023/10/21-10:25:16.619433 7f7e677006c0 Level-0 table #101: 0 bytes OK
|
||||
2023/10/21-10:25:16.626151 7f7e677006c0 Delete type=0 #99
|
||||
2023/10/21-10:25:16.646310 7f7e677006c0 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)
|
||||
|
Binary file not shown.
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 +1 @@
|
||||
MANIFEST-000002
|
||||
MANIFEST-000067
|
||||
|
@ -1,5 +1,8 @@
|
||||
2023/10/19-11:34:56.763463 7f8105ffb6c0 Delete type=3 #1
|
||||
2023/10/19-11:42:11.816999 7f7e677006c0 Level-0 table #5: started
|
||||
2023/10/19-11:42:11.817033 7f7e677006c0 Level-0 table #5: 0 bytes OK
|
||||
2023/10/19-11:42:11.824095 7f7e677006c0 Delete type=0 #3
|
||||
2023/10/19-11:42:11.824348 7f7e677006c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
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)
|
Binary file not shown.
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-000102
|
||||
MANIFEST-000191
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/10/21-12:57:48.680492 7f8106ffd6c0 Recovering log #100
|
||||
2023/10/21-12:57:48.690739 7f8106ffd6c0 Delete type=3 #98
|
||||
2023/10/21-12:57:48.690798 7f8106ffd6c0 Delete type=0 #100
|
||||
2023/10/21-14:16:12.262516 7f7e677006c0 Level-0 table #105: started
|
||||
2023/10/21-14:16:12.262540 7f7e677006c0 Level-0 table #105: 0 bytes OK
|
||||
2023/10/21-14:16:12.269450 7f7e677006c0 Delete type=0 #103
|
||||
2023/10/21-14:16:12.269831 7f7e677006c0 Manual compaction at level-0 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||
2023/10/21-14:16:12.269874 7f7e677006c0 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/21-09:46:53.269089 7f8105ffb6c0 Recovering log #96
|
||||
2023/10/21-09:46:53.280127 7f8105ffb6c0 Delete type=3 #94
|
||||
2023/10/21-09:46:53.280264 7f8105ffb6c0 Delete type=0 #96
|
||||
2023/10/21-10:25:16.667464 7f7e677006c0 Level-0 table #101: started
|
||||
2023/10/21-10:25:16.667505 7f7e677006c0 Level-0 table #101: 0 bytes OK
|
||||
2023/10/21-10:25:16.674303 7f7e677006c0 Delete type=0 #99
|
||||
2023/10/21-10:25:16.674595 7f7e677006c0 Manual compaction at level-0 from '!items!0LA7gMBDogO56AZK' @ 72057594037927935 : 1 .. '!items!zwZoHMkWYtMCNx9f' @ 0 : 0; will stop at (end)
|
||||
2023/10/21-10:25:16.674627 7f7e677006c0 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)
|
||||
|
Binary file not shown.
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-000102
|
||||
MANIFEST-000190
|
||||
|
@ -1,7 +1,7 @@
|
||||
2023/10/21-12:57:48.614993 7f81067fc6c0 Recovering log #100
|
||||
2023/10/21-12:57:48.625621 7f81067fc6c0 Delete type=3 #98
|
||||
2023/10/21-12:57:48.625711 7f81067fc6c0 Delete type=0 #100
|
||||
2023/10/21-14:16:12.235055 7f7e677006c0 Level-0 table #105: started
|
||||
2023/10/21-14:16:12.235078 7f7e677006c0 Level-0 table #105: 0 bytes OK
|
||||
2023/10/21-14:16:12.242245 7f7e677006c0 Delete type=0 #103
|
||||
2023/10/21-14:16:12.242435 7f7e677006c0 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/21-09:46:53.199962 7f81077fe6c0 Recovering log #96
|
||||
2023/10/21-09:46:53.211394 7f81077fe6c0 Delete type=3 #94
|
||||
2023/10/21-09:46:53.211491 7f81077fe6c0 Delete type=0 #96
|
||||
2023/10/21-10:25:16.626403 7f7e677006c0 Level-0 table #101: started
|
||||
2023/10/21-10:25:16.626435 7f7e677006c0 Level-0 table #101: 0 bytes OK
|
||||
2023/10/21-10:25:16.633066 7f7e677006c0 Delete type=0 #99
|
||||
2023/10/21-10:25:16.646322 7f7e677006c0 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)
|
||||
|
Binary file not shown.
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-000102
|
||||
MANIFEST-000191
|
||||
|
@ -1,8 +1,8 @@
|
||||
2023/10/21-12:57:48.667993 7f81067fc6c0 Recovering log #100
|
||||
2023/10/21-12:57:48.678231 7f81067fc6c0 Delete type=3 #98
|
||||
2023/10/21-12:57:48.678292 7f81067fc6c0 Delete type=0 #100
|
||||
2023/10/21-14:16:12.256092 7f7e677006c0 Level-0 table #105: started
|
||||
2023/10/21-14:16:12.256115 7f7e677006c0 Level-0 table #105: 0 bytes OK
|
||||
2023/10/21-14:16:12.262406 7f7e677006c0 Delete type=0 #103
|
||||
2023/10/21-14:16:12.269805 7f7e677006c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
|
||||
2023/10/21-14:16:12.269852 7f7e677006c0 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/21-09:46:53.254913 7f81077fe6c0 Recovering log #96
|
||||
2023/10/21-09:46:53.266376 7f81077fe6c0 Delete type=3 #94
|
||||
2023/10/21-09:46:53.266469 7f81077fe6c0 Delete type=0 #96
|
||||
2023/10/21-10:25:16.660405 7f7e677006c0 Level-0 table #101: started
|
||||
2023/10/21-10:25:16.660579 7f7e677006c0 Level-0 table #101: 0 bytes OK
|
||||
2023/10/21-10:25:16.667324 7f7e677006c0 Delete type=0 #99
|
||||
2023/10/21-10:25:16.674581 7f7e677006c0 Manual compaction at level-0 from '!items!5YJWuGaagmi1dgbv' @ 72057594037927935 : 1 .. '!items!yo7mOkfbbOogx8na' @ 0 : 0; will stop at (end)
|
||||
2023/10/21-10:25:16.674617 7f7e677006c0 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)
|
||||
|
Binary file not shown.
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
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user