├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── codecov.yml └── workflows │ ├── create_release.yml │ ├── qodana_code_quality.yml │ └── test-with-coverage.yml ├── .gitignore ├── .run └── Void.run.xml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── buffer ├── build.gradle.kts └── src │ ├── main │ └── kotlin │ │ └── world │ │ └── gregs │ │ └── voidps │ │ └── buffer │ │ ├── read │ │ ├── BufferReader.kt │ │ └── Reader.kt │ │ └── write │ │ ├── BufferWriter.kt │ │ └── Writer.kt │ └── test │ └── kotlin │ └── world │ └── gregs │ └── voidps │ └── buffer │ ├── BufferReaderTest.kt │ └── BufferWriterTest.kt ├── cache ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ └── world │ │ │ └── gregs │ │ │ └── voidps │ │ │ └── cache │ │ │ ├── Cache.kt │ │ │ ├── CacheDelegate.kt │ │ │ ├── CacheLoader.kt │ │ │ ├── Config.kt │ │ │ ├── Definition.kt │ │ │ ├── DefinitionDecoder.kt │ │ │ ├── DefinitionEncoder.kt │ │ │ ├── FileCache.kt │ │ │ ├── Index.kt │ │ │ ├── MemoryCache.kt │ │ │ ├── ReadOnlyCache.kt │ │ │ ├── compress │ │ │ ├── BZIP2Compressor.kt │ │ │ └── DecompressionContext.kt │ │ │ ├── config │ │ │ ├── ConfigDecoder.kt │ │ │ ├── ConfigEncoder.kt │ │ │ ├── data │ │ │ │ ├── ClientVariableParameterDefinition.kt │ │ │ │ ├── HitSplatDefinition.kt │ │ │ │ ├── IdentityKitDefinition.kt │ │ │ │ ├── InventoryDefinition.kt │ │ │ │ ├── MapSceneDefinition.kt │ │ │ │ ├── OverlayDefinition.kt │ │ │ │ ├── PlayerVariableParameterDefinition.kt │ │ │ │ ├── QuestDefinition.kt │ │ │ │ ├── RenderAnimationDefinition.kt │ │ │ │ ├── StructDefinition.kt │ │ │ │ ├── UnderlayDefinition.kt │ │ │ │ └── WorldMapInfoDefinition.kt │ │ │ ├── decoder │ │ │ │ ├── ClientVariableParameterDecoder.kt │ │ │ │ ├── HitSplatDecoder.kt │ │ │ │ ├── IdentityKitDecoder.kt │ │ │ │ ├── InventoryDecoder.kt │ │ │ │ ├── MapSceneDecoder.kt │ │ │ │ ├── OverlayDecoder.kt │ │ │ │ ├── PlayerVariableParameterDecoder.kt │ │ │ │ ├── QuestDecoder.kt │ │ │ │ ├── RenderAnimationDecoder.kt │ │ │ │ ├── StructDecoder.kt │ │ │ │ ├── UnderlayDecoder.kt │ │ │ │ └── WorldMapInfoDecoder.kt │ │ │ └── encoder │ │ │ │ ├── InventoryEncoder.kt │ │ │ │ └── StructEncoder.kt │ │ │ ├── definition │ │ │ ├── ColourPalette.kt │ │ │ ├── Extra.kt │ │ │ ├── Parameterized.kt │ │ │ ├── Parameters.kt │ │ │ ├── Recolourable.kt │ │ │ ├── Transforms.kt │ │ │ ├── data │ │ │ │ ├── AnimationDefinition.kt │ │ │ │ ├── AnimationDefinitionFull.kt │ │ │ │ ├── BodyDefinition.kt │ │ │ │ ├── CanoeDefinition.kt │ │ │ │ ├── ClientScriptDefinition.kt │ │ │ │ ├── EnumDefinition.kt │ │ │ │ ├── FontDefinition.kt │ │ │ │ ├── GraphicDefinition.kt │ │ │ │ ├── IndexedSprite.kt │ │ │ │ ├── Instructions.kt │ │ │ │ ├── InterfaceComponentDefinition.kt │ │ │ │ ├── InterfaceComponentDefinitionFull.kt │ │ │ │ ├── InterfaceComponentSetting.kt │ │ │ │ ├── InterfaceDefinition.kt │ │ │ │ ├── InterfaceDefinitionFull.kt │ │ │ │ ├── ItemDefinition.kt │ │ │ │ ├── ItemDefinitionFull.kt │ │ │ │ ├── MapDefinition.kt │ │ │ │ ├── MapObject.kt │ │ │ │ ├── MapTile.kt │ │ │ │ ├── MaterialDefinition.kt │ │ │ │ ├── NPCDefinition.kt │ │ │ │ ├── NPCDefinitionFull.kt │ │ │ │ ├── ObjectDefinition.kt │ │ │ │ ├── ObjectDefinitionFull.kt │ │ │ │ ├── QuickChatOptionDefinition.kt │ │ │ │ ├── QuickChatPhraseDefinition.kt │ │ │ │ ├── QuickChatType.kt │ │ │ │ ├── SpriteDefinition.kt │ │ │ │ ├── VarBitDefinition.kt │ │ │ │ ├── WorldMapDefinition.kt │ │ │ │ ├── WorldMapIcon.kt │ │ │ │ ├── WorldMapIconDefinition.kt │ │ │ │ └── WorldMapSection.kt │ │ │ ├── decoder │ │ │ │ ├── AnimationDecoder.kt │ │ │ │ ├── AnimationDecoderFull.kt │ │ │ │ ├── BodyDecoder.kt │ │ │ │ ├── ClientScriptDecoder.kt │ │ │ │ ├── EnumDecoder.kt │ │ │ │ ├── FontDecoder.kt │ │ │ │ ├── GraphicDecoder.kt │ │ │ │ ├── InterfaceDecoder.kt │ │ │ │ ├── InterfaceDecoderFull.kt │ │ │ │ ├── ItemDecoder.kt │ │ │ │ ├── ItemDecoderFull.kt │ │ │ │ ├── MapObjectDecoder.kt │ │ │ │ ├── MapTileDecoder.kt │ │ │ │ ├── MaterialDecoder.kt │ │ │ │ ├── NPCDecoder.kt │ │ │ │ ├── NPCDecoderFull.kt │ │ │ │ ├── ObjectDecoder.kt │ │ │ │ ├── ObjectDecoderFull.kt │ │ │ │ ├── QuickChatOptionDecoder.kt │ │ │ │ ├── QuickChatPhraseDecoder.kt │ │ │ │ ├── SpriteDecoder.kt │ │ │ │ ├── VarBitDecoder.kt │ │ │ │ ├── WorldMapDetailsDecoder.kt │ │ │ │ └── WorldMapIconDecoder.kt │ │ │ └── encoder │ │ │ │ ├── ClientScriptEncoder.kt │ │ │ │ ├── EnumEncoder.kt │ │ │ │ ├── InterfaceEncoder.kt │ │ │ │ ├── ItemEncoder.kt │ │ │ │ ├── MapObjectEncoder.kt │ │ │ │ ├── MapTileEncoder.kt │ │ │ │ ├── NPCEncoder.kt │ │ │ │ └── ObjectEncoder.kt │ │ │ └── secure │ │ │ ├── CRC.kt │ │ │ ├── Huffman.kt │ │ │ ├── RSA.kt │ │ │ ├── VersionTableBuilder.kt │ │ │ ├── Whirlpool.kt │ │ │ └── Xtea.kt │ └── resources │ │ └── logback.xml │ └── test │ ├── kotlin │ └── world │ │ └── gregs │ │ └── voidps │ │ └── cache │ │ ├── config │ │ └── encoder │ │ │ └── StructEncoderTest.kt │ │ ├── definition │ │ ├── data │ │ │ ├── MapDefinitionTest.kt │ │ │ ├── MapObjectTest.kt │ │ │ └── MapTileTest.kt │ │ └── encoder │ │ │ ├── ClientScriptEncoderTest.kt │ │ │ ├── DefinitionDecoderByteTest.kt │ │ │ ├── EncoderComparator.kt │ │ │ ├── EnumEncoderTest.kt │ │ │ ├── InterfaceEncoderTest.kt │ │ │ ├── ItemEncoderTest.kt │ │ │ ├── MapObjectEncoderTest.kt │ │ │ ├── MapTileEncoderTest.kt │ │ │ ├── NPCEncoderTest.kt │ │ │ └── ObjectEncoderTest.kt │ │ └── secure │ │ ├── HuffmanTest.kt │ │ └── VersionTableBuilderTest.kt │ └── resources │ └── huffman.csv ├── config ├── README.md ├── build.gradle.kts └── src │ ├── main │ └── kotlin │ │ └── world │ │ └── gregs │ │ └── config │ │ ├── Config.kt │ │ ├── ConfigReader.kt │ │ └── ConfigWriter.kt │ └── test │ ├── kotlin │ └── world │ │ └── gregs │ │ └── config │ │ ├── ConfigReaderTest.kt │ │ └── ConfigWriterTest.kt │ └── resources │ └── world │ └── gregs │ └── config │ ├── read │ ├── invalid │ │ ├── array-comma-less.toml │ │ ├── array-commas.toml │ │ ├── array-of-tables.toml │ │ ├── array-space-less.toml │ │ ├── integer-prefixes.toml │ │ ├── invalid-float-infix.toml │ │ ├── invalid-float-prefix.toml │ │ ├── invalid-float-suffix.toml │ │ ├── map-comma-less.toml │ │ ├── map-space-less.toml │ │ ├── missing-key.toml │ │ ├── missing-value.toml │ │ └── whitespace-in-key.toml │ ├── multi-sections.toml │ ├── next-line.toml │ ├── root-pairs.toml │ └── valid │ │ ├── array-comma-only.toml │ │ ├── array-comma-only.txt │ │ ├── arrays.toml │ │ ├── arrays.txt │ │ ├── bare-keys.toml │ │ ├── bare-keys.txt │ │ ├── basic-string-newline.toml │ │ ├── basic-string-newline.txt │ │ ├── basic-string.toml │ │ ├── basic-string.txt │ │ ├── booleans.toml │ │ ├── booleans.txt │ │ ├── comment.toml │ │ ├── comment.txt │ │ ├── dotted-float.toml │ │ ├── dotted-float.txt │ │ ├── dotted-keys.toml │ │ ├── dotted-keys.txt │ │ ├── example.toml │ │ ├── example.txt │ │ ├── float-underscores.toml │ │ ├── float-underscores.txt │ │ ├── floats.toml │ │ ├── floats.txt │ │ ├── inline-map.toml │ │ ├── inline-map.txt │ │ ├── integers.toml │ │ ├── integers.txt │ │ ├── key-value-pair.toml │ │ ├── key-value-pair.txt │ │ ├── large-numbers.toml │ │ ├── large-numbers.txt │ │ ├── literal-strings.toml │ │ ├── literal-strings.txt │ │ ├── map-comma-only.toml │ │ ├── map-comma-only.txt │ │ ├── multi-line-arrays.toml │ │ ├── multi-line-arrays.txt │ │ ├── multi-line-maps.toml │ │ ├── multi-line-maps.txt │ │ ├── nested-inline-map-array.toml │ │ ├── nested-inline-map-array.txt │ │ ├── quoted-keys.toml │ │ ├── quoted-keys.txt │ │ ├── redefined-tables.toml │ │ ├── redefined-tables.txt │ │ ├── root-section.toml │ │ ├── root-section.txt │ │ ├── section-headers.toml │ │ ├── section-headers.txt │ │ ├── section-indentation.toml │ │ ├── section-indentation.txt │ │ ├── section-inheritance.toml │ │ ├── section-inheritance.txt │ │ ├── section-names.toml │ │ ├── section-names.txt │ │ ├── section-redefine.toml │ │ ├── section-redefine.txt │ │ ├── section-whitespace.toml │ │ ├── section-whitespace.txt │ │ ├── section.toml │ │ ├── section.txt │ │ ├── sub-sections.toml │ │ ├── sub-sections.txt │ │ ├── unrelated-dotted-keys.toml │ │ └── unrelated-dotted-keys.txt │ └── write │ └── valid │ ├── boolean-value.toml │ ├── double-value.toml │ ├── inline-array.toml │ ├── inline-map.toml │ ├── key-value-pair.toml │ ├── multiple-sections.toml │ ├── multiple-values-in-a-section.toml │ ├── nested-list-of-maps.toml │ ├── nested-lists.toml │ ├── nested-map-of-lists.toml │ ├── nested-maps.toml │ └── number-value.toml ├── data ├── achievement │ ├── achievement_diary.items.toml │ ├── achievement_task.ifaces.toml │ ├── achievement_task.jingles.toml │ ├── achievement_task.varbits.toml │ ├── achievement_task.varcs.toml │ ├── achievement_task.varps.toml │ ├── achievement_task.vars.toml │ ├── ardougne_tasks.varbits.toml │ ├── falador_easy.varbits.toml │ ├── fremennik_tasks.varbits.toml │ ├── karamja_tasks.varbits.toml │ ├── lumbridge_draynor_tasks.varbits.toml │ ├── seers_village_tasks.varbits.toml │ └── varrock_tasks.varbits.toml ├── activity │ ├── ancient_effigies.items.toml │ ├── circus │ │ ├── circus.ifaces.toml │ │ ├── circus.items.toml │ │ ├── circus.npc-spawns.toml │ │ ├── circus.npcs.toml │ │ └── circus.varbits.toml │ ├── court_summons.items.toml │ ├── event │ │ ├── christmas │ │ │ ├── christmas.gfx.toml │ │ │ ├── christmas.items.toml │ │ │ ├── christmas.jingles.toml │ │ │ ├── christmas.npc-spawns.toml │ │ │ ├── christmas.npcs.toml │ │ │ ├── christmas.teles.toml │ │ │ ├── gublinch_cave │ │ │ │ ├── gublinch_cave.npc-spawns.toml │ │ │ │ └── gublinch_cave.npcs.toml │ │ │ ├── land_of_snow │ │ │ │ ├── land_of_snow.npc-spawns.toml │ │ │ │ └── land_of_snow.npcs.toml │ │ │ ├── xmas_2009 │ │ │ │ ├── xmas_2009.npc-spawns.toml │ │ │ │ └── xmas_2009.npcs.toml │ │ │ └── xmas_2010 │ │ │ │ ├── xmas_2010.npc-spawns.toml │ │ │ │ └── xmas_2010.npcs.toml │ │ ├── cryptic_clue_fest.items.toml │ │ ├── easter │ │ │ ├── easter.anims.toml │ │ │ ├── easter.items.toml │ │ │ ├── easter.jingles.toml │ │ │ ├── easter.npc-spawns.toml │ │ │ ├── easter.npcs.toml │ │ │ ├── easter_2007 │ │ │ │ ├── easter_2007.npc-spawns.toml │ │ │ │ └── easter_2007.npcs.toml │ │ │ └── easter_2009 │ │ │ │ ├── easter_2009.npc-spawns.toml │ │ │ │ └── easter_2009.npcs.toml │ │ ├── halloween │ │ │ ├── halloween.anims.toml │ │ │ ├── halloween.gfx.toml │ │ │ ├── halloween.items.toml │ │ │ ├── halloween.npc-spawns.toml │ │ │ ├── halloween.npcs.toml │ │ │ ├── halloween.teles.toml │ │ │ └── harvest_hollow │ │ │ │ ├── harvest_hollow.npc-spawns.toml │ │ │ │ └── harvest_hollow.npcs.toml │ │ ├── oktoberfest.items.toml │ │ ├── random │ │ │ ├── drill_demon │ │ │ │ ├── drill_demon.npc-spawns.toml │ │ │ │ └── drill_demon.npcs.toml │ │ │ ├── kiss_the_frog.npc-spawns.toml │ │ │ ├── mime_theatre │ │ │ │ ├── mime_theatre.npc-spawns.toml │ │ │ │ └── mime_theatre.npcs.toml │ │ │ ├── pillory.shops.toml │ │ │ ├── pinball │ │ │ │ ├── pinball.npc-spawns.toml │ │ │ │ └── pinball.npcs.toml │ │ │ ├── random-events.npcs.toml │ │ │ ├── random_event.drops.toml │ │ │ ├── random_event.items.toml │ │ │ ├── random_event.jingles.toml │ │ │ ├── random_event.npc-spawns.toml │ │ │ └── random_event.npcs.toml │ │ ├── random_event.items.toml │ │ ├── spring.items.toml │ │ └── thanksgiving.items.toml │ ├── evil_tree │ │ ├── evil_tree.gfx.toml │ │ ├── evil_tree.items.toml │ │ └── evil_tree.varbits.toml │ ├── fish_flingers.items.toml │ ├── penguin_hide_and_seek │ │ ├── penguin_hide_and_seek.anims.toml │ │ ├── penguin_hide_and_seek.items.toml │ │ ├── penguin_hide_and_seek.npcs.toml │ │ ├── penguin_hide_and_seek.objs.toml │ │ ├── penguin_hide_and_seek.varbits.toml │ │ ├── penguin_hide_and_seek.vars.toml │ │ ├── penguin_locations_easy.toml │ │ └── penguin_locations_hard.toml │ ├── sawmill_training │ │ ├── sawmill.shops.toml │ │ └── sawmill_training.items.toml │ ├── shooting_star │ │ ├── shooting_star.items.toml │ │ ├── shooting_star.jingles.toml │ │ ├── shooting_star.npcs.toml │ │ ├── shooting_star.objs.toml │ │ ├── shooting_star.sounds.toml │ │ └── shooting_star.vars.toml │ └── treasure_trails │ │ ├── clue_scroll.drops.toml │ │ ├── treasure_trails.drops.toml │ │ └── treasure_trails.npcs.toml ├── area │ ├── asgarnia │ │ ├── black_knights_fortress │ │ │ ├── basement │ │ │ │ ├── black_knights_fortress_basement.npc-spawns.toml │ │ │ │ └── black_knights_fortress_basement.npcs.toml │ │ │ ├── black_knight.npc-spawns.toml │ │ │ ├── black_knight.npcs.toml │ │ │ └── kinshra_workshop │ │ │ │ ├── kinshra_workshop.npc-spawns.toml │ │ │ │ └── kinshra_workshop.npcs.toml │ │ ├── burthorpe │ │ │ ├── burthorpe.areas.toml │ │ │ ├── burthorpe.drops.toml │ │ │ ├── burthorpe.item-spawns.toml │ │ │ ├── burthorpe.npc-spawns.toml │ │ │ ├── burthorpe.npcs.toml │ │ │ ├── burthorpe.shops.toml │ │ │ ├── burthorpe.teles.toml │ │ │ ├── games_room │ │ │ │ ├── burthorpe_games_room.npc-spawns.toml │ │ │ │ └── burthorpe_games_room.npcs.toml │ │ │ ├── heroes_guild │ │ │ │ ├── heroes_guild.npc-spawns.toml │ │ │ │ ├── heroes_guild.objs.toml │ │ │ │ └── heroes_guild.teles.toml │ │ │ └── rogues_den │ │ │ │ ├── rogues_den.npc-spawns.toml │ │ │ │ └── rogues_den.npcs.toml │ │ ├── dwarven_mines │ │ │ ├── dwarven_mine.item-spawns.toml │ │ │ ├── dwarven_mine.npc-spawns.toml │ │ │ ├── dwarven_mine.npcs.toml │ │ │ ├── dwarven_mine.shops.toml │ │ │ ├── dwarven_mine.teles.toml │ │ │ ├── living_rock_cavern.items.toml │ │ │ ├── living_rock_cavern.objs.toml │ │ │ └── living_rock_caverns │ │ │ │ ├── living_rock_caverns.npc-spawns.toml │ │ │ │ └── living_rock_caverns.npcs.toml │ │ ├── entrana │ │ │ ├── entrana.areas.toml │ │ │ ├── entrana.drops.toml │ │ │ ├── entrana.item-spawns.toml │ │ │ ├── entrana.npc-spawns.toml │ │ │ ├── entrana.npcs.toml │ │ │ ├── entrana.objs.toml │ │ │ ├── entrana.shops.toml │ │ │ └── entrana.teles.toml │ │ ├── falador │ │ │ ├── falador.areas.toml │ │ │ ├── falador.drops.toml │ │ │ ├── falador.item-spawns.toml │ │ │ ├── falador.items.toml │ │ │ ├── falador.npc-spawns.toml │ │ │ ├── falador.npcs.toml │ │ │ ├── falador.objs.toml │ │ │ ├── falador.shops.toml │ │ │ ├── falador.teles.toml │ │ │ ├── party_room │ │ │ │ ├── party_room.ifaces.toml │ │ │ │ └── party_room.items.toml │ │ │ └── temple_knight_testing_room │ │ │ │ ├── temple_knight_testing_room.npc-spawns.toml │ │ │ │ └── temple_knight_testing_room.npcs.toml │ │ ├── goblin_village │ │ │ ├── goblin_village.npc-spawns.toml │ │ │ ├── goblin_village.npcs.toml │ │ │ └── goblin_village.teles.toml │ │ ├── mudskipper_point │ │ │ ├── asgarnian_ice_dungeon │ │ │ │ ├── asgarnian_ice_dungeon.item-spawns.toml │ │ │ │ ├── asgarnian_ice_dungeon.npc-spawns.toml │ │ │ │ ├── asgarnian_ice_dungeon.objs.toml │ │ │ │ ├── asgarnian_ice_dungeon.teles.toml │ │ │ │ ├── resource_dungeon │ │ │ │ │ ├── asgarnian_ice_resource_dungeon.npc-spawns.toml │ │ │ │ │ └── asgarnian_ice_resource_dungeon.npcs.toml │ │ │ │ └── skeletal_wyvern │ │ │ │ │ ├── skeletal_wyvern.anims.toml │ │ │ │ │ ├── skeletal_wyvern.drops.toml │ │ │ │ │ ├── skeletal_wyvern.gfx.toml │ │ │ │ │ ├── skeletal_wyvern.npcs.toml │ │ │ │ │ └── skeletal_wyvern.sounds.toml │ │ │ ├── mudskipper_point.areas.toml │ │ │ ├── mudskipper_point.drops.toml │ │ │ ├── mudskipper_point.items.toml │ │ │ ├── mudskipper_point.npc-spawns.toml │ │ │ ├── mudskipper_point.npcs.toml │ │ │ └── mudskipper_point.teles.toml │ │ ├── port_sarim │ │ │ ├── port_sarim.anims.toml │ │ │ ├── port_sarim.areas.toml │ │ │ ├── port_sarim.drops.toml │ │ │ ├── port_sarim.item-spawns.toml │ │ │ ├── port_sarim.items.toml │ │ │ ├── port_sarim.jingles.toml │ │ │ ├── port_sarim.npc-spawns.toml │ │ │ ├── port_sarim.npcs.toml │ │ │ ├── port_sarim.obj-spawns.toml │ │ │ ├── port_sarim.objs.toml │ │ │ ├── port_sarim.patrols.toml │ │ │ ├── port_sarim.shops.toml │ │ │ ├── port_sarim.teles.toml │ │ │ └── rusty_anchor_cellar │ │ │ │ ├── rusty_anchor_cellar.npc-spawns.toml │ │ │ │ └── rusty_anchor_cellar.npcs.toml │ │ ├── rimmington │ │ │ ├── melzars_maze │ │ │ │ ├── melzars_maze.npc-spawns.toml │ │ │ │ ├── melzars_maze.npcs.toml │ │ │ │ └── melzars_maze.teles.toml │ │ │ ├── rimmington.item-spawns.toml │ │ │ ├── rimmington.npc-spawns.toml │ │ │ ├── rimmington.npcs.toml │ │ │ ├── rimmington.shops.toml │ │ │ └── rimmington.teles.toml │ │ ├── taverley │ │ │ ├── dungeon │ │ │ │ ├── black_knight_base.npc-spawns.toml │ │ │ │ ├── taverley_dungeon.item-spawns.toml │ │ │ │ ├── taverley_dungeon.items.toml │ │ │ │ ├── taverley_dungeon.npc-spawns.toml │ │ │ │ ├── taverley_dungeon.npcs.toml │ │ │ │ ├── taverley_dungeon.objs.toml │ │ │ │ └── taverley_dungeon.teles.toml │ │ │ ├── lightsources.items.toml │ │ │ ├── taverley.areas.toml │ │ │ ├── taverley.drops.toml │ │ │ ├── taverley.item-spawns.toml │ │ │ ├── taverley.items.toml │ │ │ ├── taverley.npc-spawns.toml │ │ │ ├── taverley.npcs.toml │ │ │ ├── taverley.shops.toml │ │ │ ├── taverley.teles.toml │ │ │ └── witches_house │ │ │ │ └── mouse_hole │ │ │ │ ├── mouse_hole.npc-spawns.toml │ │ │ │ └── mouse_hole.npcs.toml │ │ └── white_wolf_mountain │ │ │ ├── dwarf_coloney │ │ │ ├── mountain_dwarf_coloney.npc-spawns.toml │ │ │ └── mountain_dwarf_coloney.npcs.toml │ │ │ ├── ice_queens_lair │ │ │ ├── ice_queens_lair.drops.toml │ │ │ ├── ice_queens_lair.npc-spawns.toml │ │ │ └── ice_queens_lair.npcs.toml │ │ │ ├── white_wolf_mountain.areas.toml │ │ │ ├── white_wolf_mountain.item-spawns.toml │ │ │ ├── white_wolf_mountain.npc-spawns.toml │ │ │ ├── white_wolf_mountain.npcs.toml │ │ │ ├── white_wolf_mountain.shops.toml │ │ │ ├── white_wolf_mountain.teles.toml │ │ │ └── white_wolf_mountain_underground.teles.toml │ ├── entrana.teles.toml │ ├── fremennik_province │ │ ├── fremennik_isles │ │ │ ├── fremennik_fleet │ │ │ │ ├── fremennik_fleet.npc-spawns.toml │ │ │ │ └── fremennik_fleet.npcs.toml │ │ │ ├── fremennik_isle.drops.toml │ │ │ ├── fremennik_isle.npc-spawns.toml │ │ │ ├── fremennik_isle.npcs.toml │ │ │ ├── ice_troll_caves │ │ │ │ ├── ice_troll_caves.npc-spawns.toml │ │ │ │ └── ice_troll_caves.npcs.toml │ │ │ ├── jatizso │ │ │ │ ├── jatizso.npc-spawns.toml │ │ │ │ ├── jatizso.npcs.toml │ │ │ │ ├── jatizso.shops.toml │ │ │ │ └── troll_cave │ │ │ │ │ ├── jatizso_troll_cave.npc-spawns.toml │ │ │ │ │ └── jatizso_troll_cave.npcs.toml │ │ │ └── neitiznot │ │ │ │ ├── neitiznot.anims.toml │ │ │ │ ├── neitiznot.areas.toml │ │ │ │ ├── neitiznot.drops.toml │ │ │ │ ├── neitiznot.npc-spawns.toml │ │ │ │ ├── neitiznot.npcs.toml │ │ │ │ ├── neitiznot.objs.toml │ │ │ │ ├── neitiznot.shops.toml │ │ │ │ └── neitiznot.sounds.toml │ │ ├── iceberg │ │ │ ├── iceberg.npc-spawns.toml │ │ │ ├── iceberg.npcs.toml │ │ │ └── penguin_hunter_area.shops.toml │ │ ├── keldagrim │ │ │ ├── arzinian_gold_mine │ │ │ │ ├── arzinian_gold_mine.npc-spawns.toml │ │ │ │ └── arzinian_gold_mine.npcs.toml │ │ │ ├── chaos_dwarf_battlefield │ │ │ │ ├── chaos_dwarf_battlefield.npc-spawns.toml │ │ │ │ └── chaos_dwarf_battlefield.npcs.toml │ │ │ ├── keldagrim.areas.toml │ │ │ ├── keldagrim.drops.toml │ │ │ ├── keldagrim.item-spawns.toml │ │ │ ├── keldagrim.items.toml │ │ │ ├── keldagrim.npc-spawns.toml │ │ │ ├── keldagrim.npcs.toml │ │ │ ├── keldagrim.objs.toml │ │ │ ├── keldagrim.shops.toml │ │ │ ├── lava_flow_mine │ │ │ │ └── lava_flow_mine │ │ │ │ │ ├── lava_flow_mine.npc-spawns.toml │ │ │ │ │ └── lava_flow_mine.npcs.toml │ │ │ ├── pretty_flowers_cave │ │ │ │ ├── pretty_flowers_cave.npc-spawns.toml │ │ │ │ └── pretty_flowers_cave.npcs.toml │ │ │ └── tunnels │ │ │ │ ├── keldagrim_tunnels.npc-spawns.toml │ │ │ │ └── keldagrim_tunnels.npcs.toml │ │ ├── lighthouse │ │ │ ├── instance │ │ │ │ ├── lighthouse_instance.npc-spawns.toml │ │ │ │ └── lighthouse_instance.npcs.toml │ │ │ ├── lighthouse.areas.toml │ │ │ ├── lighthouse.npc-spawns.toml │ │ │ ├── lighthouse.npcs.toml │ │ │ ├── lighthouse.objs.toml │ │ │ ├── lighthouse.shops.toml │ │ │ └── lighthouse.teles.toml │ │ ├── lunar_isle │ │ │ ├── lunar_isle.anims.toml │ │ │ ├── lunar_isle.areas.toml │ │ │ ├── lunar_isle.drops.toml │ │ │ ├── lunar_isle.npc-spawns.toml │ │ │ ├── lunar_isle.npcs.toml │ │ │ ├── lunar_isle.objs.toml │ │ │ ├── lunar_isle.shops.toml │ │ │ └── mine │ │ │ │ ├── lunar_isle_mine.npc-spawns.toml │ │ │ │ └── lunar_isle_mine.npcs.toml │ │ ├── miscellania │ │ │ ├── miscellania.anims.toml │ │ │ ├── miscellania.areas.toml │ │ │ ├── miscellania.drops.toml │ │ │ ├── miscellania.item-spawns.toml │ │ │ ├── miscellania.npc-spawns.toml │ │ │ ├── miscellania.npcs.toml │ │ │ ├── miscellania.objs.toml │ │ │ ├── miscellania.shops.toml │ │ │ ├── miscellania.sounds.toml │ │ │ └── penguin_outpost │ │ │ │ ├── penguin_outpost.drops.toml │ │ │ │ ├── penguin_outpost.npc-spawns.toml │ │ │ │ └── penguin_outpost.npcs.toml │ │ ├── pirates_cove │ │ │ ├── pirates_cove.areas.toml │ │ │ ├── pirates_cove.npc-spawns.toml │ │ │ └── pirates_cove.npcs.toml │ │ ├── rellekka │ │ │ ├── brine_rat_caverns │ │ │ │ ├── brine_rat_caverns.anims.toml │ │ │ │ ├── brine_rat_caverns.drops.toml │ │ │ │ ├── brine_rat_caverns.npc-spawns.toml │ │ │ │ └── brine_rat_caverns.npcs.toml │ │ │ ├── fremennik_dungeon │ │ │ │ ├── fremennik_dungeon.anims.toml │ │ │ │ ├── fremennik_dungeon.drops.toml │ │ │ │ ├── fremennik_dungeon.npc-spawns.toml │ │ │ │ └── fremennik_dungeon.npcs.toml │ │ │ ├── fremennik_spiritual_realm │ │ │ │ ├── fremennik_spiritual_realm.npc-spawns.toml │ │ │ │ └── fremennik_spiritual_realm.npcs.toml │ │ │ ├── hunter_area │ │ │ │ ├── rellekka_hunter_area.item-spawns.toml │ │ │ │ ├── rellekka_hunter_area.npc-spawns.toml │ │ │ │ └── rellekka_hunter_area.npcs.toml │ │ │ ├── ice_strykewyrm_cave │ │ │ │ ├── ice_strykewyrm_cave.npcs.toml │ │ │ │ └── ice_styrkewyrm_cave.npc-spawns.toml │ │ │ ├── rellekka.anims.toml │ │ │ ├── rellekka.areas.toml │ │ │ ├── rellekka.drops.toml │ │ │ ├── rellekka.invs.toml │ │ │ ├── rellekka.item-spawns.toml │ │ │ ├── rellekka.items.toml │ │ │ ├── rellekka.npc-spawns.toml │ │ │ ├── rellekka.npcs.toml │ │ │ ├── rellekka.objs.toml │ │ │ ├── rellekka.shops.toml │ │ │ ├── rellekka.teles.toml │ │ │ └── thorvalds_test │ │ │ │ ├── thorvalds_test.npc-spawns.toml │ │ │ │ └── thorvalds_test.npcs.toml │ │ └── waterbirth_island │ │ │ ├── waterbirth_island.anims.toml │ │ │ ├── waterbirth_island.areas.toml │ │ │ ├── waterbirth_island.drops.toml │ │ │ ├── waterbirth_island.gfx.toml │ │ │ ├── waterbirth_island.item-spawns.toml │ │ │ ├── waterbirth_island.items.toml │ │ │ ├── waterbirth_island.npc-spawns.toml │ │ │ ├── waterbirth_island.npcs.toml │ │ │ ├── waterbirth_island.objs.toml │ │ │ └── waterbirth_island.teles.toml │ ├── kandarin │ │ ├── ancient_cavern │ │ │ ├── ancient_cavern.areas.toml │ │ │ ├── ancient_cavern.drops.toml │ │ │ ├── ancient_cavern.items.toml │ │ │ ├── ancient_cavern.npc-spawns.toml │ │ │ ├── ancient_cavern.npcs.toml │ │ │ ├── cave │ │ │ │ ├── ancient_cavern_cave.npc-spawns.toml │ │ │ │ └── ancient_cavern_cave.npcs.toml │ │ │ ├── dragon_forge │ │ │ │ ├── dragon_forge.npc-spawns.toml │ │ │ │ └── dragon_forge.npcs.toml │ │ │ └── kuradals_dungeon │ │ │ │ ├── kuradals_dungeon.anims.toml │ │ │ │ ├── kuradals_dungeon.drops.toml │ │ │ │ ├── kuradals_dungeon.npc-spawns.toml │ │ │ │ ├── kuradals_dungeon.npcs.toml │ │ │ │ └── kuradals_dungeon.sounds.toml │ │ ├── ape_atoll │ │ │ ├── ape_atoll.anims.toml │ │ │ ├── ape_atoll.areas.toml │ │ │ ├── ape_atoll.drops.toml │ │ │ ├── ape_atoll.gfx.toml │ │ │ ├── ape_atoll.item-spawns.toml │ │ │ ├── ape_atoll.npc-spawns.toml │ │ │ ├── ape_atoll.npcs.toml │ │ │ ├── ape_atoll.objs.toml │ │ │ ├── ape_atoll.shops.toml │ │ │ ├── ape_atoll.teles.toml │ │ │ ├── crash_island │ │ │ │ ├── crash_island.npc-spawns.toml │ │ │ │ ├── crash_island.npcs.toml │ │ │ │ └── snake_pit │ │ │ │ │ ├── snake_pit.drops.toml │ │ │ │ │ ├── snake_pit.npc-spawns.toml │ │ │ │ │ └── snake_pit.npcs.toml │ │ │ ├── crash_site │ │ │ │ ├── crash_site.npc-spawns.toml │ │ │ │ └── crash_site.npcs.toml │ │ │ └── tunnels │ │ │ │ ├── ape_atoll_tunnels.npc-spawns.toml │ │ │ │ └── ape_atoll_tunnels.npcs.toml │ │ ├── arandar │ │ │ ├── arandar.anims.toml │ │ │ ├── arandar.drops.toml │ │ │ ├── arandar.item-spawns.toml │ │ │ ├── arandar.npc-spawns.toml │ │ │ ├── arandar.npcs.toml │ │ │ └── arandar_pass.npc-spawns.toml │ │ ├── ardougne │ │ │ ├── ardougne.areas.toml │ │ │ ├── ardougne_underground.teles.toml │ │ │ ├── chaos_druid_tower │ │ │ │ └── chaos_druid_tower.npc-spawns.toml │ │ │ ├── east_ardougne.drops.toml │ │ │ ├── east_ardougne.item-spawns.toml │ │ │ ├── east_ardougne.items.toml │ │ │ ├── east_ardougne.npc-spawns.toml │ │ │ ├── east_ardougne.npcs.toml │ │ │ ├── east_ardougne.objs.toml │ │ │ ├── east_ardougne.shops.toml │ │ │ ├── east_ardougne.teles.toml │ │ │ ├── ibans_lair │ │ │ │ ├── ibans_lair.drops.toml │ │ │ │ ├── ibans_lair.npc-spawns.toml │ │ │ │ └── ibans_lair.npcs.toml │ │ │ ├── monastery │ │ │ │ ├── ardougne_monastery.npc-spawns.toml │ │ │ │ └── ardougne_monastery.npcs.toml │ │ │ ├── outpost │ │ │ │ ├── outpost.item-spawns.toml │ │ │ │ ├── outpost.npc-spawns.toml │ │ │ │ ├── outpost.npcs.toml │ │ │ │ └── outpost.teles.toml │ │ │ ├── sewers │ │ │ │ ├── ardougne_sewers.npc-spawns.toml │ │ │ │ ├── ardougne_sewers.npcs.toml │ │ │ │ └── ardougne_sewers_mine.npc-spawns.toml │ │ │ ├── sigmunds_base │ │ │ │ ├── sigmunds_base.npc-spawns.toml │ │ │ │ └── sigmunds_base.npcs.toml │ │ │ ├── underground_pass │ │ │ │ ├── dungeon │ │ │ │ │ ├── underground_pass_dungeon.item-spawns.toml │ │ │ │ │ ├── underground_pass_dungeon.npc-spawns.toml │ │ │ │ │ └── underground_pass_dungeon.npcs.toml │ │ │ │ ├── underground_pass.drops.toml │ │ │ │ ├── underground_pass.item-spawns.toml │ │ │ │ ├── underground_pass.npc-spawns.toml │ │ │ │ └── underground_pass.npcs.toml │ │ │ ├── west │ │ │ │ ├── temple_of_light │ │ │ │ │ ├── temple_of_light.npc-spawns.toml │ │ │ │ │ └── temple_of_light.npcs.toml │ │ │ │ ├── west_ardougne.item-spawns.toml │ │ │ │ ├── west_ardougne.npc-spawns.toml │ │ │ │ ├── west_ardougne.npcs.toml │ │ │ │ ├── west_ardougne.shops.toml │ │ │ │ └── west_ardougne.teles.toml │ │ │ ├── west_ardougne.areas.toml │ │ │ ├── west_ardougne.npc-spawns.toml │ │ │ └── witchaven │ │ │ │ ├── witchaven.npc-spawns.toml │ │ │ │ ├── witchaven.npcs.toml │ │ │ │ ├── witchaven.teles.toml │ │ │ │ └── witchaven_dungeon │ │ │ │ ├── witchaven_dungeon.drops.toml │ │ │ │ ├── witchaven_dungeon.npc-spawns.toml │ │ │ │ └── witchaven_dungeon.npcs.toml │ │ ├── barbarian_outpost │ │ │ ├── barbarian_outpost.areas.toml │ │ │ ├── barbarian_outpost.drops.toml │ │ │ ├── barbarian_outpost.item-spawns.toml │ │ │ ├── barbarian_outpost.npc-spawns.toml │ │ │ ├── barbarian_outpost.npcs.toml │ │ │ ├── barbarian_outpost.teles.toml │ │ │ └── barbarian_outpost.vars.toml │ │ ├── battlefield │ │ │ ├── battlefield.areas.toml │ │ │ ├── battlefield.drops.toml │ │ │ ├── battlefield.item-spawns.toml │ │ │ ├── battlefield.npc-spawns.toml │ │ │ ├── battlefield.npcs.toml │ │ │ └── battlefield.teles.toml │ │ ├── baxtorian_falls │ │ │ ├── baxtorian_falls.npc-spawns.toml │ │ │ ├── baxtorian_falls.npcs.toml │ │ │ ├── baxtorian_falls.shops.toml │ │ │ ├── baxtorian_falls.teles.toml │ │ │ └── waterfall_dungeon │ │ │ │ ├── waterfall_dungeon.npc-spawns.toml │ │ │ │ └── waterfall_dungeon.npcs.toml │ │ ├── camelot │ │ │ ├── camelot.areas.toml │ │ │ ├── camelot.teles.toml │ │ │ ├── castle │ │ │ │ ├── camelot_castle.areas.toml │ │ │ │ ├── camelot_castle.item-spawns.toml │ │ │ │ ├── camelot_castle.npc-spawns.toml │ │ │ │ └── camelot_castle.npcs.toml │ │ │ └── courtroom │ │ │ │ ├── courtroom.npc-spawns.toml │ │ │ │ └── courtroom.npcs.toml │ │ ├── catherby │ │ │ ├── catherby.areas.toml │ │ │ ├── catherby.item-spawns.toml │ │ │ ├── catherby.items.toml │ │ │ ├── catherby.npc-spawns.toml │ │ │ ├── catherby.npcs.toml │ │ │ ├── catherby.objs.toml │ │ │ ├── catherby.recipes.toml │ │ │ ├── catherby.shops.toml │ │ │ ├── catherby.teles.toml │ │ │ └── mcgrubors_wood │ │ │ │ ├── mcgrubors_wood.item-spawns.toml │ │ │ │ ├── mcgrubors_wood.npc-spawns.toml │ │ │ │ └── mcgrubors_wood.npcs.toml │ │ ├── clock_tower │ │ │ ├── clock_tower.obj-spawns.toml │ │ │ ├── clock_tower.objs.toml │ │ │ └── clock_tower.teles.toml │ │ ├── feldip_hills │ │ │ ├── feldip_hills.areas.toml │ │ │ ├── feldip_hills.item-spawns.toml │ │ │ ├── feldip_hills.npc-spawns.toml │ │ │ ├── feldip_hills.npcs.toml │ │ │ ├── feldip_hills.shops.toml │ │ │ ├── gu_tanoth │ │ │ │ ├── gu_tanoth.drops.toml │ │ │ │ ├── gu_tanoth.item-spawns.toml │ │ │ │ ├── gu_tanoth.npc-spawns.toml │ │ │ │ ├── gu_tanoth.npcs.toml │ │ │ │ ├── gu_tanoth.objs.toml │ │ │ │ └── gu_tanoth.shops.toml │ │ │ ├── jiggig │ │ │ │ ├── dungeon │ │ │ │ │ ├── jiggig_dungeon.npc-spawns.toml │ │ │ │ │ └── jiggig_dungeon.npcs.toml │ │ │ │ ├── jiggig.areas.toml │ │ │ │ ├── jiggig.drops.toml │ │ │ │ ├── jiggig.npc-spawns.toml │ │ │ │ ├── jiggig.npcs.toml │ │ │ │ └── jiggig.shops.toml │ │ │ ├── oo_glog │ │ │ │ ├── oo_glog.item-spawns.toml │ │ │ │ ├── oo_glog.npc-spawns.toml │ │ │ │ ├── oo_glog.npcs.toml │ │ │ │ ├── oo_glog.objs.toml │ │ │ │ └── oo_glog.shops.toml │ │ │ ├── rantzs_house │ │ │ │ ├── rantzs_house.npc-spawns.toml │ │ │ │ └── rantzs_house.npcs.toml │ │ │ └── shredfleshs_cave │ │ │ │ ├── shredfleshs_cave.npc-spawns.toml │ │ │ │ └── shredfleshs_cave.npcs.toml │ │ ├── fishing_guild │ │ │ ├── fishing_guild.areas.toml │ │ │ ├── fishing_guild.item-spawns.toml │ │ │ ├── fishing_guild.npc-spawns.toml │ │ │ ├── fishing_guild.npcs.toml │ │ │ ├── fishing_guild.objs.toml │ │ │ ├── fishing_guild.shops.toml │ │ │ ├── fishing_guild.teles.toml │ │ │ └── goblin_cave │ │ │ │ ├── goblin_cave.npc-spawns.toml │ │ │ │ ├── goblin_cave.npcs.toml │ │ │ │ └── goblin_temple │ │ │ │ ├── goblin_temple.npc-spawns.toml │ │ │ │ └── goblin_temple.npcs.toml │ │ ├── fishing_platform │ │ │ ├── fishing_platform.npc-spawns.toml │ │ │ └── fishing_platform.npcs.toml │ │ ├── goblin_cave │ │ │ ├── goblin_cave.npc-spawns.toml │ │ │ └── goblin_cave.npcs.toml │ │ ├── hazelmeres_island │ │ │ ├── hazelmeres_island.npc-spawns.toml │ │ │ └── hazelmeres_island.npcs.toml │ │ ├── kandarin.areas.toml │ │ ├── kandarin.teles.toml │ │ ├── keep_le_faye │ │ │ ├── keep_le_faye.npc-spawns.toml │ │ │ └── keep_le_faye.npcs.toml │ │ ├── legends_guild │ │ │ ├── dungeon │ │ │ │ ├── legends_guild_dungeon.npc-spawns.toml │ │ │ │ └── legends_guild_dungeon.npcs.toml │ │ │ ├── legends_guild.drops.toml │ │ │ ├── legends_guild.item-spawns.toml │ │ │ ├── legends_guild.npc-spawns.toml │ │ │ ├── legends_guild.npcs.toml │ │ │ ├── legends_guild.objs.toml │ │ │ ├── legends_guild.shops.toml │ │ │ └── legends_guild.teles.toml │ │ ├── mcgrubors_wood │ │ │ ├── mcgrubors_wood.anims.toml │ │ │ ├── mcgrubors_wood.objs.toml │ │ │ └── mcgrubors_wood.teles.toml │ │ ├── observatory.teles.toml │ │ ├── ourania │ │ │ ├── cave │ │ │ │ ├── ourania_cave.npc-spawns.toml │ │ │ │ └── ourania_cave.teles.toml │ │ │ ├── ourania.areas.toml │ │ │ ├── ourania.drops.toml │ │ │ ├── ourania.item-spawns.toml │ │ │ ├── ourania.npc-spawns.toml │ │ │ ├── ourania.npcs.toml │ │ │ ├── ourania.objs.toml │ │ │ ├── ourania.patrols.toml │ │ │ ├── ourania.teles.toml │ │ │ └── ourania_runes.drops.toml │ │ ├── piscatoris │ │ │ ├── falconry_area │ │ │ │ ├── piscatoris_falconry_area.npc-spawns.toml │ │ │ │ └── piscatoris_falconry_area.npcs.toml │ │ │ ├── hunter_area │ │ │ │ ├── piscatoris_hunter_area.npc-spawns.toml │ │ │ │ └── piscatoris_hunter_area.npcs.toml │ │ │ ├── piscatoris.areas.toml │ │ │ ├── piscatoris.npc-spawns.toml │ │ │ ├── piscatoris.npcs.toml │ │ │ ├── piscatoris.objs.toml │ │ │ ├── piscatoris.shops.toml │ │ │ └── piscatoris.teles.toml │ │ ├── port_khazard │ │ │ ├── fight_arena │ │ │ │ ├── khazard_fight_arena.npc-spawns.toml │ │ │ │ └── khazard_fight_arena.npcs.toml │ │ │ ├── khazard_battlefield.items.toml │ │ │ ├── morge_camp │ │ │ │ ├── mogre_camp.anims.toml │ │ │ │ ├── mogre_camp.drops.toml │ │ │ │ ├── mogre_camp.npc-spawns.toml │ │ │ │ ├── mogre_camp.npcs.toml │ │ │ │ ├── mogre_camp.sounds.toml │ │ │ │ └── underwater_cave │ │ │ │ │ ├── underwater_cave.npc-spawns.toml │ │ │ │ │ └── underwater_cave.npcs.toml │ │ │ ├── movarios_base │ │ │ │ ├── movarios_base.npc-spawns.toml │ │ │ │ └── movarios_base.npcs.toml │ │ │ ├── port_khazard.areas.toml │ │ │ ├── port_khazard.invs.toml │ │ │ ├── port_khazard.item-spawns.toml │ │ │ ├── port_khazard.npc-spawns.toml │ │ │ ├── port_khazard.npcs.toml │ │ │ └── port_khazard.teles.toml │ │ ├── ranging_guild │ │ │ ├── ranging_guild.areas.toml │ │ │ ├── ranging_guild.item-spawns.toml │ │ │ ├── ranging_guild.items.toml │ │ │ ├── ranging_guild.npc-spawns.toml │ │ │ ├── ranging_guild.npcs.toml │ │ │ ├── ranging_guild.shops.toml │ │ │ └── ranging_guild.teles.toml │ │ ├── seers_village │ │ │ ├── elemental_workshop │ │ │ │ ├── elemental_workshop.anims.toml │ │ │ │ ├── elemental_workshop.drops.toml │ │ │ │ ├── elemental_workshop.npc-spawns.toml │ │ │ │ ├── elemental_workshop.npcs.toml │ │ │ │ └── elemental_workshop.sounds.toml │ │ │ ├── seers_village.areas.toml │ │ │ ├── seers_village.item-spawns.toml │ │ │ ├── seers_village.npc-spawns.toml │ │ │ ├── seers_village.npcs.toml │ │ │ ├── seers_village.objs.toml │ │ │ ├── seers_village.shops.toml │ │ │ ├── seers_village.teles.toml │ │ │ ├── sorcerers_tower │ │ │ │ ├── sorcerers_tower.item-spawns.toml │ │ │ │ ├── sorcerers_tower.npc-spawns.toml │ │ │ │ └── sorcerers_tower.npcs.toml │ │ │ └── temple_of_ikov_dungeon.npc-spawns.toml │ │ ├── sinclair_mansion │ │ │ ├── sinclair_mansion.item-spawns.toml │ │ │ ├── sinclair_mansion.npc-spawns.toml │ │ │ ├── sinclair_mansion.npcs.toml │ │ │ └── sinclair_mansion.teles.toml │ │ ├── temple_of_ikov │ │ │ ├── temple_of_ikov.drops.toml │ │ │ ├── temple_of_ikov.npc-spawns.toml │ │ │ ├── temple_of_ikov.npcs.toml │ │ │ └── temple_of_ikov.teles.toml │ │ ├── tower_of_life.teles.toml │ │ ├── tower_of_life │ │ │ ├── tower_of_life.drops.toml │ │ │ ├── tower_of_life.npc-spawns.toml │ │ │ └── tower_of_life.npcs.toml │ │ ├── tree_gnome_stronghold │ │ │ ├── brimstails_home │ │ │ │ ├── brimstails_home.areas.toml │ │ │ │ ├── brimstails_home.item-spawns.toml │ │ │ │ ├── brimstails_home.npc-spawns.toml │ │ │ │ └── brimstails_home.teles.toml │ │ │ ├── grand_tree │ │ │ │ ├── grand_tree.item-spawns.toml │ │ │ │ ├── grand_tree.npc-spawns.toml │ │ │ │ ├── grand_tree.npcs.toml │ │ │ │ ├── grand_tree.objs.toml │ │ │ │ ├── grand_tree.shops.toml │ │ │ │ ├── grand_tree.teles.toml │ │ │ │ ├── grand_tree_tunnels.npc-spawns.toml │ │ │ │ └── tunnels │ │ │ │ │ └── grand_tree_tunnels.npc-spawns.toml │ │ │ ├── training_camp │ │ │ │ ├── combat_training_camp.item-spawns.toml │ │ │ │ ├── combat_training_camp.npc-spawns.toml │ │ │ │ └── combat_training_camp.npcs.toml │ │ │ ├── tree_gnome_stronghold.anims.toml │ │ │ ├── tree_gnome_stronghold.areas.toml │ │ │ ├── tree_gnome_stronghold.drops.toml │ │ │ ├── tree_gnome_stronghold.item-spawns.toml │ │ │ ├── tree_gnome_stronghold.npc-spawns.toml │ │ │ ├── tree_gnome_stronghold.npcs.toml │ │ │ ├── tree_gnome_stronghold.teles.toml │ │ │ └── tunnels │ │ │ │ ├── troll_stronghold_tunnels.npc-spawns.toml │ │ │ │ └── troll_stronghold_tunnels.npcs.toml │ │ ├── tree_gnome_village │ │ │ ├── dungeon │ │ │ │ ├── gnome_village_dungeon.npc-spawns.toml │ │ │ │ └── gnome_village_dungeon.npcs.toml │ │ │ ├── tree_gnome_village.invs.toml │ │ │ ├── tree_gnome_village.npc-spawns.toml │ │ │ ├── tree_gnome_village.npcs.toml │ │ │ ├── tree_gnome_village.teles.toml │ │ │ └── yewnocks_cave │ │ │ │ ├── yewnocks_cave.npc-spawns.toml │ │ │ │ └── yewnocks_cave.npcs.toml │ │ └── yanille │ │ │ ├── agility_dungeon │ │ │ ├── yanille_agility_dungeon.drops.toml │ │ │ ├── yanille_agility_dungeon.item-spawns.toml │ │ │ ├── yanille_agility_dungeon.items.toml │ │ │ ├── yanille_agility_dungeon.npc-spawns.toml │ │ │ └── yanille_agility_dungeon.npcs.toml │ │ │ ├── instance │ │ │ ├── yanille_instance.npc-spawns.toml │ │ │ └── yanille_instance.npcs.toml │ │ │ ├── watchtower │ │ │ └── watchtower.areas.toml │ │ │ ├── yanille.anims.toml │ │ │ ├── yanille.areas.toml │ │ │ ├── yanille.drops.toml │ │ │ ├── yanille.item-spawns.toml │ │ │ ├── yanille.npc-spawns.toml │ │ │ ├── yanille.npcs.toml │ │ │ ├── yanille.objs.toml │ │ │ ├── yanille.shops.toml │ │ │ └── yanille.teles.toml │ ├── karamja │ │ ├── brimhaven │ │ │ ├── agility_arena │ │ │ │ ├── agility_arena.npc-spawns.toml │ │ │ │ └── agility_arena.npcs.toml │ │ │ ├── brimhaven.areas.toml │ │ │ ├── brimhaven.item-spawns.toml │ │ │ ├── brimhaven.npc-spawns.toml │ │ │ ├── brimhaven.npcs.toml │ │ │ ├── brimhaven.objs.toml │ │ │ ├── brimhaven.shops.toml │ │ │ ├── brimhaven.teles.toml │ │ │ ├── brimhaven_dungeon.vars.toml │ │ │ └── dungeon │ │ │ │ ├── brimhaven_dungeon.npc-spawns.toml │ │ │ │ └── brimhaven_dungeon.npcs.toml │ │ ├── crandor │ │ │ ├── crandor.item-spawns.toml │ │ │ ├── crandor.npc-spawns.toml │ │ │ ├── crandor.npcs.toml │ │ │ ├── crandor.teles.toml │ │ │ ├── crandor_dungeon.item-spawns.toml │ │ │ ├── crandor_dungeon.npc-spawns.toml │ │ │ └── crandor_dungeon.teles.toml │ │ ├── dungeon │ │ │ ├── karamja_dungeon.item-spawns.toml │ │ │ └── karamja_dungeon.npc-spawns.toml │ │ ├── herblore_habitat │ │ │ └── herblore_habitat.shops.toml │ │ ├── jungle_instance │ │ │ ├── karamja_jungle_instance.npc-spawns.toml │ │ │ └── karamja_jungle_instance.npcs.toml │ │ ├── karamja.anims.toml │ │ ├── karamja.areas.toml │ │ ├── karamja.drops.toml │ │ ├── karamja.item-spawns.toml │ │ ├── karamja.npc-spawns.toml │ │ ├── karamja.npcs.toml │ │ ├── karamja.shops.toml │ │ ├── karamja.sounds.toml │ │ ├── karamja.teles.toml │ │ ├── kharazi_jungle │ │ │ ├── caves │ │ │ │ ├── kharazi_caves.npc-spawns.toml │ │ │ │ └── kharazi_caves.npcs.toml │ │ │ ├── kharazi_jungle.drops.toml │ │ │ ├── kharazi_jungle.npc-spawns.toml │ │ │ └── kharazi_jungle.npcs.toml │ │ ├── musa_point │ │ │ ├── musa_point.item-spawns.toml │ │ │ ├── musa_point.npc-spawns.toml │ │ │ ├── musa_point.npcs.toml │ │ │ ├── musa_point.objs.toml │ │ │ └── musa_point.teles.toml │ │ ├── pothole_dungeon │ │ │ ├── pothole_dungeon.anims.toml │ │ │ ├── pothole_dungeon.npc-spawns.toml │ │ │ └── pothole_dungeon.npcs.toml │ │ ├── shilo_village │ │ │ ├── shilo_village.drops.toml │ │ │ ├── shilo_village.item-spawns.toml │ │ │ ├── shilo_village.npc-spawns.toml │ │ │ ├── shilo_village.npcs.toml │ │ │ ├── shilo_village.objs.toml │ │ │ ├── shilo_village.shops.toml │ │ │ └── shilo_village.teles.toml │ │ ├── ship_yard │ │ │ ├── karamja_ship_yard.item-spawns.toml │ │ │ ├── karamja_ship_yard.npc-spawns.toml │ │ │ └── karamja_ship_yard.npcs.toml │ │ ├── tai_bwo_wannai │ │ │ ├── tai_bwo_wannai.areas.toml │ │ │ ├── tai_bwo_wannai.item-spawns.toml │ │ │ ├── tai_bwo_wannai.items.toml │ │ │ ├── tai_bwo_wannai.jingles.toml │ │ │ ├── tai_bwo_wannai.npc-spawns.toml │ │ │ ├── tai_bwo_wannai.npcs.toml │ │ │ ├── tai_bwo_wannai.shops.toml │ │ │ └── tai_bwo_wannai.teles.toml │ │ ├── tzhaar_city │ │ │ ├── tzhaar_city.anims.toml │ │ │ ├── tzhaar_city.drops.toml │ │ │ ├── tzhaar_city.items.toml │ │ │ ├── tzhaar_city.npc-spawns.toml │ │ │ ├── tzhaar_city.npcs.toml │ │ │ └── tzhaar_city.shops.toml │ │ └── volcano │ │ │ ├── karamja_volcano.npc-spawns.toml │ │ │ ├── karamja_volcano.teles.toml │ │ │ └── resource_dungeon │ │ │ ├── karamja_volcano_resource_dungeon.npc-spawns.toml │ │ │ └── karamja_volcano_resource_dungeon.npcs.toml │ ├── kharidian_desert │ │ ├── agility_pyramid │ │ │ ├── agility_pyramid.drops.toml │ │ │ ├── agility_pyramid.npc-spawns.toml │ │ │ └── agility_pyramid.npcs.toml │ │ ├── al_kharid │ │ │ ├── al_kharid.areas.toml │ │ │ ├── al_kharid.drops.toml │ │ │ ├── al_kharid.item-spawns.toml │ │ │ ├── al_kharid.items.toml │ │ │ ├── al_kharid.npc-spawns.toml │ │ │ ├── al_kharid.npcs.toml │ │ │ ├── al_kharid.objs.toml │ │ │ ├── al_kharid.shops.toml │ │ │ ├── al_kharid.teles.toml │ │ │ ├── al_kharid.vars.toml │ │ │ ├── desert_strykewyrm │ │ │ │ ├── desert_strykewyrm.npc-spawns.toml │ │ │ │ └── desert_strykewyrm.npcs.toml │ │ │ ├── duel_arena │ │ │ │ └── duel_arena.npcs.toml │ │ │ ├── faruqs_tools_for_games.items.toml │ │ │ ├── mage_training_arena │ │ │ │ ├── mage_training_arena.npc-spawns.toml │ │ │ │ └── mage_training_arena.npcs.toml │ │ │ └── shantay_pass │ │ │ │ ├── shantay_pass.anims.toml │ │ │ │ ├── shantay_pass.drops.toml │ │ │ │ ├── shantay_pass.npc-spawns.toml │ │ │ │ ├── shantay_pass.npcs.toml │ │ │ │ └── shantay_pass.shops.toml │ │ ├── bandit_camp │ │ │ ├── bandit_camp.areas.toml │ │ │ ├── bandit_camp.drops.toml │ │ │ ├── bandit_camp.npc-spawns.toml │ │ │ ├── bandit_camp.npcs.toml │ │ │ ├── bandit_camp.shops.toml │ │ │ └── enakhras_temple │ │ │ │ ├── enakhras_temple.npc-spawns.toml │ │ │ │ └── enakhras_temple.npcs.toml │ │ ├── bedabin_camp │ │ │ ├── bedabin.shops.toml │ │ │ ├── bedabin_camp.npc-spawns.toml │ │ │ └── bedabin_camp.npcs.toml │ │ ├── desert.items.toml │ │ ├── desert.objs.toml │ │ ├── desert.teles.toml │ │ ├── harmony_island │ │ │ ├── harmony.drops.toml │ │ │ ├── harmony.item-spawns.toml │ │ │ ├── harmony.npc-spawns.toml │ │ │ ├── harmony.npcs.toml │ │ │ └── windmill_cellar │ │ │ │ ├── windmill_cellar.npc-spawns.toml │ │ │ │ └── windmill_cellar.npcs.toml │ │ ├── jaldraocht_pyramid │ │ │ ├── jaldraocht_pyramid.npc-spawns.toml │ │ │ └── jaldraocht_pyramid.npcs.toml │ │ ├── kalphite_hive │ │ │ ├── kalphite_hive.drops.toml │ │ │ ├── kalphite_hive.npc-spawns.toml │ │ │ └── kalphite_hive.npcs.toml │ │ ├── kharidian_desert.anims.toml │ │ ├── kharidian_desert.areas.toml │ │ ├── kharidian_desert.drops.toml │ │ ├── kharidian_desert.npc-spawns.toml │ │ ├── kharidian_desert.npcs.toml │ │ ├── kharidian_desert.sounds.toml │ │ ├── klenters_pyramid │ │ │ ├── klenters_pyramid.npc-spawns.toml │ │ │ └── klenters_pyramid.npcs.toml │ │ ├── mining_camp │ │ │ ├── desert_mining_camp.drops.toml │ │ │ ├── desert_mining_camp.item-spawns.toml │ │ │ ├── desert_mining_camp.npc-spawns.toml │ │ │ └── desert_mining_camp.npcs.toml │ │ ├── monkey_colony │ │ │ └── monkey_colony.shops.toml │ │ ├── nardah │ │ │ ├── genies_cave │ │ │ │ ├── genies_cave.npc-spawns.toml │ │ │ │ └── genies_cave.npcs.toml │ │ │ ├── nardah.item-spawns.toml │ │ │ ├── nardah.npc-spawns.toml │ │ │ ├── nardah.npcs.toml │ │ │ ├── nardah.objs.toml │ │ │ └── nardah.shops.toml │ │ ├── pollnivneach │ │ │ ├── dungeon │ │ │ │ ├── pollninveach_dungeon.npc-spawns.toml │ │ │ │ └── pollninveach_dungeon.npcs.toml │ │ │ ├── pollnivneach.areas.toml │ │ │ ├── pollnivneach.drops.toml │ │ │ ├── pollnivneach.item-spawns.toml │ │ │ ├── pollnivneach.npc-spawns.toml │ │ │ ├── pollnivneach.npcs.toml │ │ │ ├── pollnivneach.shops.toml │ │ │ └── smoke_dungeon │ │ │ │ ├── smoke_dungeon.npc-spawns.toml │ │ │ │ └── smoke_dungeon.npcs.toml │ │ ├── quarry │ │ │ ├── quarry.npc-spawns.toml │ │ │ └── quarry.npcs.toml │ │ ├── river_elid_cave │ │ │ ├── river_elid_cave.npc-spawns.toml │ │ │ └── river_elid_cave.npcs.toml │ │ ├── rock_island_prison │ │ │ ├── rock_island_prison.npc-spawns.toml │ │ │ └── rock_island_prison.npcs.toml │ │ ├── ruins_of_uzer │ │ │ ├── ruins_of_uzer.anims.toml │ │ │ ├── ruins_of_uzer.item-spawns.toml │ │ │ ├── ruins_of_uzer.npc-spawns.toml │ │ │ └── ruins_of_uzer.npcs.toml │ │ ├── sophanem │ │ │ ├── sophanem.anims.toml │ │ │ ├── sophanem.areas.toml │ │ │ ├── sophanem.drops.toml │ │ │ ├── sophanem.items.toml │ │ │ ├── sophanem.npc-spawns.toml │ │ │ ├── sophanem.npcs.toml │ │ │ ├── sophanem.objs.toml │ │ │ ├── sophanem.shops.toml │ │ │ ├── sophanem.sounds.toml │ │ │ ├── sophanem.teles.toml │ │ │ └── sophanem_dungeon │ │ │ │ ├── sophanem_dungeon.drops.toml │ │ │ │ ├── sophanem_dungeon.npc-spawns.toml │ │ │ │ └── sophanem_dungeon.npcs.toml │ │ ├── ullek │ │ │ ├── scabaras_dungeon │ │ │ │ ├── scabaras_dungeon.npc-spawns.toml │ │ │ │ └── scabaras_dungeon.npcs.toml │ │ │ ├── ullek.npc-spawns.toml │ │ │ └── ullek.npcs.toml │ │ └── uzer │ │ │ ├── hunter_area │ │ │ ├── uzer_hunter_area.npc-spawns.toml │ │ │ └── uzer_hunter_area.npcs.toml │ │ │ ├── mastaba │ │ │ ├── uzer_mastaba.npc-spawns.toml │ │ │ └── uzer_mastaba.npcs.toml │ │ │ ├── uzer.npc-spawns.toml │ │ │ └── uzer.npcs.toml │ ├── misthalin │ │ ├── barbarian_village │ │ │ ├── barbarian_village.areas.toml │ │ │ ├── barbarian_village.drops.toml │ │ │ ├── barbarian_village.npc-spawns.toml │ │ │ ├── barbarian_village.npcs.toml │ │ │ ├── barbarian_village.objs.toml │ │ │ ├── barbarian_village.shops.toml │ │ │ ├── barbarian_village.teles.toml │ │ │ ├── stronghold_of_player_safety │ │ │ │ ├── stronghold_of_player_safety.npc-spawns.toml │ │ │ │ └── stronghold_of_player_safety.npcs.toml │ │ │ └── stronghold_of_security │ │ │ │ ├── catablepon │ │ │ │ ├── catablepon.anims.toml │ │ │ │ ├── catablepon.drops.toml │ │ │ │ ├── catablepon.npc-spawns.toml │ │ │ │ └── catablepon.npcs.toml │ │ │ │ ├── flesh_crawler │ │ │ │ ├── flesh_crawler.anims.toml │ │ │ │ ├── flesh_crawler.drops.toml │ │ │ │ ├── flesh_crawler.npcs.toml │ │ │ │ └── flesh_crawler.sounds.toml │ │ │ │ ├── minotaur │ │ │ │ ├── minotaur.anims.toml │ │ │ │ ├── minotaur.drops.toml │ │ │ │ ├── minotaur.npc-spawns.toml │ │ │ │ ├── minotaur.npcs.toml │ │ │ │ └── minotaur.sounds.toml │ │ │ │ ├── stronghold_of_security.anims.toml │ │ │ │ ├── stronghold_of_security.areas.toml │ │ │ │ ├── stronghold_of_security.books.toml │ │ │ │ ├── stronghold_of_security.gfx.toml │ │ │ │ ├── stronghold_of_security.items.toml │ │ │ │ ├── stronghold_of_security.jingles.toml │ │ │ │ ├── stronghold_of_security.npc-spawns.toml │ │ │ │ ├── stronghold_of_security.npcs.toml │ │ │ │ ├── stronghold_of_security.objs.toml │ │ │ │ ├── stronghold_of_security.recipes.toml │ │ │ │ ├── stronghold_of_security.sounds.toml │ │ │ │ ├── stronghold_of_security.teles.toml │ │ │ │ └── stronghold_of_security.vars.toml │ │ ├── border_guard.anims.toml │ │ ├── border_guard.areas.toml │ │ ├── border_guard.objs.toml │ │ ├── clan_cup_plaque.ifaces.toml │ │ ├── dorgesh_kaan │ │ │ ├── agility │ │ │ │ ├── dorgesh_kaan_agility_course.npc-spawns.toml │ │ │ │ └── dorgesh_kaan_agility_course.npcs.toml │ │ │ ├── dorgesh_kaan.areas.toml │ │ │ ├── dorgesh_kaan.drops.toml │ │ │ ├── dorgesh_kaan.items.toml │ │ │ ├── dorgesh_kaan.npc-spawns.toml │ │ │ ├── dorgesh_kaan.npcs.toml │ │ │ ├── dorgesh_kaan.objs.toml │ │ │ ├── dorgesh_kaan.shops.toml │ │ │ ├── station │ │ │ │ ├── dorgesh_kaan_station.npc-spawns.toml │ │ │ │ └── dorgesh_kaan_station.npcs.toml │ │ │ └── station_construction_site │ │ │ │ ├── dorgesh_kaan_station_construction_site.npc-spawns.toml │ │ │ │ └── dorgesh_kaan_station_construction_site.npcs.toml │ │ ├── draynor │ │ │ ├── bank_robbery │ │ │ │ ├── draynor_instance.npc-spawns.toml │ │ │ │ └── draynor_instance.npcs.toml │ │ │ ├── diango │ │ │ │ ├── diango.gfx.toml │ │ │ │ ├── diango.ifaces.toml │ │ │ │ ├── diango.invs.toml │ │ │ │ ├── diango.items.toml │ │ │ │ ├── diango.vars.toml │ │ │ │ └── diango_codes.toml │ │ │ ├── draynor.areas.toml │ │ │ ├── draynor.drops.toml │ │ │ ├── draynor.gfx.toml │ │ │ ├── draynor.item-spawns.toml │ │ │ ├── draynor.items.toml │ │ │ ├── draynor.npc-spawns.toml │ │ │ ├── draynor.npcs.toml │ │ │ ├── draynor.objs.toml │ │ │ ├── draynor.shops.toml │ │ │ ├── draynor.teles.toml │ │ │ └── sewers │ │ │ │ ├── draynor_sewers.npc-spawns.toml │ │ │ │ └── draynor_sewers.teles.toml │ │ ├── edgeville │ │ │ ├── dungeon │ │ │ │ ├── edgeville_dungeon.item-spawns.toml │ │ │ │ ├── edgeville_dungeon.items.toml │ │ │ │ ├── edgeville_dungeon.npc-spawns.toml │ │ │ │ └── edgeville_dungeon.teles.toml │ │ │ ├── edgeville.areas.toml │ │ │ ├── edgeville.drops.toml │ │ │ ├── edgeville.npc-spawns.toml │ │ │ ├── edgeville.npcs.toml │ │ │ ├── edgeville.objs.toml │ │ │ ├── edgeville.shops.toml │ │ │ ├── edgeville.teles.toml │ │ │ ├── monastery │ │ │ │ └── monastery.item-spawns.toml │ │ │ ├── resource_dungeon │ │ │ │ ├── edgeville_resource_dungeon.npc-spawns.toml │ │ │ │ └── edgeville_resource_dungeon.npcs.toml │ │ │ └── stronghold_of_player_safety │ │ │ │ └── stronghold_of_player_safety.teles.toml │ │ ├── gnomecopters.items.toml │ │ ├── ham_hideout │ │ │ ├── ham_hideout.drops.toml │ │ │ ├── ham_hideout.npc-spawns.toml │ │ │ ├── ham_hideout.npcs.toml │ │ │ └── store_rooms │ │ │ │ ├── ham_store_rooms.npc-spawns.toml │ │ │ │ └── ham_store_rooms.npcs.toml │ │ ├── ice_mountain │ │ │ ├── ice_mountain.areas.toml │ │ │ ├── ice_mountain.drops.toml │ │ │ ├── ice_mountain.npc-spawns.toml │ │ │ ├── ice_mountain.npcs.toml │ │ │ └── ramarnos_forge │ │ │ │ ├── ramarnos_forge.npc-spawns.toml │ │ │ │ └── ramarnos_forge.npcs.toml │ │ ├── lumbridge │ │ │ ├── basement │ │ │ │ ├── goblin_mines │ │ │ │ │ ├── goblin_mines.drops.toml │ │ │ │ │ ├── goblin_mines.npc-spawns.toml │ │ │ │ │ └── goblin_mines.npcs.toml │ │ │ │ ├── lumbridge_basement.item-spawns.toml │ │ │ │ ├── lumbridge_basement.npc-spawns.toml │ │ │ │ ├── lumbridge_basement.npcs.toml │ │ │ │ └── lumbridge_basement.teles.toml │ │ │ ├── cellar │ │ │ │ ├── lumbridge_cellar.npc-spawns.toml │ │ │ │ └── lumbridge_cellar.npcs.toml │ │ │ ├── church │ │ │ │ ├── church.jingles.toml │ │ │ │ ├── gravestone.anims.toml │ │ │ │ ├── gravestone.ifaces.toml │ │ │ │ ├── gravestone.npcs.toml │ │ │ │ ├── gravestone.varbits.toml │ │ │ │ └── lumbridge_church.midis.toml │ │ │ ├── combat_hall │ │ │ │ ├── combat_hall.npcs.toml │ │ │ │ ├── combat_hall.objs.toml │ │ │ │ └── combat_hall.vars.toml │ │ │ ├── freds_farm │ │ │ │ ├── freds_farm.item-spawns.toml │ │ │ │ ├── freds_farm.npc-spawns.toml │ │ │ │ ├── freds_farm.npcs.toml │ │ │ │ ├── freds_farm.teles.toml │ │ │ │ ├── ram.anims.toml │ │ │ │ └── ram.sounds.toml │ │ │ ├── lumbridge.anims.toml │ │ │ ├── lumbridge.areas.toml │ │ │ ├── lumbridge.drops.toml │ │ │ ├── lumbridge.item-spawns.toml │ │ │ ├── lumbridge.items.toml │ │ │ ├── lumbridge.npc-spawns.toml │ │ │ ├── lumbridge.npcs.toml │ │ │ ├── lumbridge.objs.toml │ │ │ ├── lumbridge.shops.toml │ │ │ ├── lumbridge.teles.toml │ │ │ ├── lumbridge_catacombs_statuettes.varbits.toml │ │ │ ├── swamp │ │ │ │ ├── caves │ │ │ │ │ ├── lumbridge_swamp_caves.anims.toml │ │ │ │ │ ├── lumbridge_swamp_caves.drops.toml │ │ │ │ │ ├── lumbridge_swamp_caves.npc-spawns.toml │ │ │ │ │ ├── lumbridge_swamp_caves.npcs.toml │ │ │ │ │ └── lumbridge_swamp_caves.sounds.toml │ │ │ │ ├── lumbridge_swamp.drops.toml │ │ │ │ ├── lumbridge_swamp.item-spawns.toml │ │ │ │ ├── lumbridge_swamp.npc-spawns.toml │ │ │ │ ├── lumbridge_swamp.npcs.toml │ │ │ │ ├── lumbridge_swamp.teles.toml │ │ │ │ ├── lumbridge_swamp_caves.items.toml │ │ │ │ └── mine │ │ │ │ │ ├── lumbridge_swamp_mine.npc-spawns.toml │ │ │ │ │ └── lumbridge_swamp_mine.npcs.toml │ │ │ └── thieves_guild │ │ │ │ ├── thieves_guild.items.toml │ │ │ │ ├── thieves_guild.npc-spawns.toml │ │ │ │ ├── thieves_guild.npcs.toml │ │ │ │ ├── thieves_guild.objs.toml │ │ │ │ └── thieves_guild.shops.toml │ │ ├── signposts.ifaces.toml │ │ ├── signposts.objs.toml │ │ ├── training_centre.items.toml │ │ ├── tutorial_island │ │ │ ├── tutorial_island.items.toml │ │ │ ├── tutorial_island.npc-spawns.toml │ │ │ ├── tutorial_island.npcs.toml │ │ │ ├── tutorial_island.objs.toml │ │ │ └── tutorial_island.teles.toml │ │ ├── varrock │ │ │ ├── air_rune_temple │ │ │ │ ├── air_rune_temple.npc-spawns.toml │ │ │ │ └── air_rune_temple.npcs.toml │ │ │ ├── digsite │ │ │ │ ├── dig_site_caves.npc-spawns.toml │ │ │ │ ├── digsite.areas.toml │ │ │ │ ├── digsite.drops.toml │ │ │ │ ├── digsite.item-spawns.toml │ │ │ │ ├── digsite.npc-spawns.toml │ │ │ │ ├── digsite.npcs.toml │ │ │ │ ├── exam_centre │ │ │ │ │ ├── exam_centre.npc-spawns.toml │ │ │ │ │ └── exam_centre.npcs.toml │ │ │ │ ├── senntisten_dig │ │ │ │ │ └── senntisten_dig.npc-spawns.toml │ │ │ │ └── senntisten_temple │ │ │ │ │ ├── senntisten_temple.npc-spawns.toml │ │ │ │ │ └── senntisten_temple.npcs.toml │ │ │ ├── grand_exchange │ │ │ │ └── grand_exchange.npcs.toml │ │ │ ├── sewer │ │ │ │ ├── varrock_sewer.item-spawns.toml │ │ │ │ ├── varrock_sewer.npc-spawns.toml │ │ │ │ ├── varrock_sewer.teles.toml │ │ │ │ └── varrock_sewers.npcs.toml │ │ │ ├── silvarea │ │ │ │ ├── silvarea.npc-spawns.toml │ │ │ │ └── silvarea.npcs.toml │ │ │ ├── tolnas_rift │ │ │ │ ├── tolnas_rift.npc-spawns.toml │ │ │ │ └── tolnas_rift.npcs.toml │ │ │ ├── tunnel_of_chaos │ │ │ │ ├── tunnel_of_chaos.npc-spawns.toml │ │ │ │ └── tunnel_of_chaos.npcs.toml │ │ │ ├── varrock.anims.toml │ │ │ ├── varrock.areas.toml │ │ │ ├── varrock.drops.toml │ │ │ ├── varrock.item-spawns.toml │ │ │ ├── varrock.npc-spawns.toml │ │ │ ├── varrock.npcs.toml │ │ │ ├── varrock.objs.toml │ │ │ ├── varrock.shops.toml │ │ │ ├── varrock.teles.toml │ │ │ └── varrock_museum.items.toml │ │ ├── wizards_tower │ │ │ ├── runecrafting_guild │ │ │ │ ├── runecrafting_guild.npc-spawns.toml │ │ │ │ └── runecrafting_guild.npcs.toml │ │ │ ├── wizards_tower.areas.toml │ │ │ ├── wizards_tower.item-spawns.toml │ │ │ ├── wizards_tower.npc-spawns.toml │ │ │ ├── wizards_tower.npcs.toml │ │ │ ├── wizards_tower.objs.toml │ │ │ ├── wizards_tower.shops.toml │ │ │ └── wizards_tower.teles.toml │ │ └── zanaris │ │ │ ├── evil_chicken_lair │ │ │ ├── evil_chicken_lair.anims.toml │ │ │ ├── evil_chicken_lair.drops.toml │ │ │ ├── evil_chicken_lair.npc-spawns.toml │ │ │ ├── evil_chicken_lair.npcs.toml │ │ │ └── evil_chicken_lair.sounds.toml │ │ │ ├── zanaris.anims.toml │ │ │ ├── zanaris.areas.toml │ │ │ ├── zanaris.drops.toml │ │ │ ├── zanaris.item-spawns.toml │ │ │ ├── zanaris.npc-spawns.toml │ │ │ ├── zanaris.npcs.toml │ │ │ ├── zanaris.objs.toml │ │ │ ├── zanaris.shops.toml │ │ │ ├── zanaris.sounds.toml │ │ │ └── zanaris.teles.toml │ ├── morytania │ │ ├── braindeath_island │ │ │ ├── braindeath_island.drops.toml │ │ │ ├── braindeath_island.npc-spawns.toml │ │ │ └── braindeath_island.npcs.toml │ │ ├── burgh_de_rott │ │ │ ├── burgh_de_rott.areas.toml │ │ │ ├── burgh_de_rott.item-spawns.toml │ │ │ ├── burgh_de_rott.npc-spawns.toml │ │ │ ├── burgh_de_rott.npcs.toml │ │ │ ├── burgh_de_rott.objs.toml │ │ │ └── burgh_de_rott.shops.toml │ │ ├── canifis │ │ │ ├── canifis.areas.toml │ │ │ ├── canifis.drops.toml │ │ │ ├── canifis.item-spawns.toml │ │ │ ├── canifis.items.toml │ │ │ ├── canifis.npc-spawns.toml │ │ │ ├── canifis.npcs.toml │ │ │ ├── canifis.objs.toml │ │ │ ├── canifis.shops.toml │ │ │ └── canifis.teles.toml │ │ ├── darkmeyer │ │ │ ├── darkmeyer.npc-spawns.toml │ │ │ └── darkmeyer.npcs.toml │ │ ├── dragontooth_island │ │ │ ├── dragontooth_island.areas.toml │ │ │ └── dragontooth_island.npc-spawns.toml │ │ ├── dragontooth_shipwreck │ │ │ ├── dragontooth_shipwreck.npc-spawns.toml │ │ │ └── dragontooth_shipwreck.npcs.toml │ │ ├── fenkenstrains_castle │ │ │ ├── dungeon │ │ │ │ ├── fenkenstrains_dungeon.drops.toml │ │ │ │ ├── fenkenstrains_dungeon.npc-spawns.toml │ │ │ │ └── fenkenstrains_dungeon.npcs.toml │ │ │ ├── fenkenstrains_castle.npc-spawns.toml │ │ │ └── fenkenstrains_castle.npcs.toml │ │ ├── haunted_woods │ │ │ ├── haunted_woods.npc-spawns.toml │ │ │ └── haunted_woods.npcs.toml │ │ ├── lair_of_tarn_razorlor │ │ │ ├── lair_of_tarn_razorlor.drops.toml │ │ │ ├── lair_of_tarn_razorlor.npc-spawns.toml │ │ │ └── lair_of_tarn_razorlor.npcs.toml │ │ ├── meiyerditch │ │ │ ├── daeyalt_mine │ │ │ │ ├── meiyerditch_daeyalt_mine.npc-spawns.toml │ │ │ │ └── meiyerditch_daeyalt_mine.npcs.toml │ │ │ ├── meiyerditch.areas.toml │ │ │ ├── meiyerditch.item-spawns.toml │ │ │ ├── meiyerditch.npc-spawns.toml │ │ │ ├── meiyerditch.npcs.toml │ │ │ ├── meiyerditch.shops.toml │ │ │ ├── meiyerditch_tunnels.item-spawns.toml │ │ │ ├── meiyerditch_tunnels.teles.toml │ │ │ └── tunnels │ │ │ │ ├── meiyerditch_tunnels.npc-spawns.toml │ │ │ │ └── meiyerditch_tunnels.npcs.toml │ │ ├── mort_myre_swamp │ │ │ ├── grotto │ │ │ │ └── grotto.objs.toml │ │ │ ├── hunter_area │ │ │ │ ├── mort_myre_swamp_hunter_area.npc-spawns.toml │ │ │ │ └── mort_myre_swamp_hunter_area.npcs.toml │ │ │ ├── mort_myre_swamp.drops.toml │ │ │ ├── mort_myre_swamp.item-spawns.toml │ │ │ ├── mort_myre_swamp.items.toml │ │ │ ├── mort_myre_swamp.npc-spawns.toml │ │ │ ├── mort_myre_swamp.npcs.toml │ │ │ ├── myreque_hideout │ │ │ │ ├── myreque_hideout.npc-spawns.toml │ │ │ │ └── myreque_hideout.npcs.toml │ │ │ └── werewolf_agility_course │ │ │ │ ├── werewolf_agility_course.npc-spawns.toml │ │ │ │ └── werewolf_agility_course.npcs.toml │ │ ├── mort_ton │ │ │ ├── mort_ton.drops.toml │ │ │ ├── mort_ton.item-spawns.toml │ │ │ ├── mort_ton.npc-spawns.toml │ │ │ ├── mort_ton.npcs.toml │ │ │ └── mort_ton.shops.toml │ │ ├── mos_le_harmless │ │ │ ├── caves │ │ │ │ ├── mos_le_harmless_caves.anims.toml │ │ │ │ ├── mos_le_harmless_caves.drops.toml │ │ │ │ ├── mos_le_harmless_caves.npc-spawns.toml │ │ │ │ ├── mos_le_harmless_caves.npcs.toml │ │ │ │ └── mos_le_harmless_caves.sounds.toml │ │ │ ├── mos_le_harmless.areas.toml │ │ │ ├── mos_le_harmless.drops.toml │ │ │ ├── mos_le_harmless.items.toml │ │ │ ├── mos_le_harmless.npc-spawns.toml │ │ │ ├── mos_le_harmless.npcs.toml │ │ │ ├── mos_le_harmless.objs.toml │ │ │ └── mos_le_harmless.shops.toml │ │ ├── paterdomus │ │ │ ├── paterdomus.npc-spawns.toml │ │ │ ├── paterdomus.npcs.toml │ │ │ └── temple │ │ │ │ ├── paterdomus_temple.npc-spawns.toml │ │ │ │ └── paterdomus_temple.npcs.toml │ │ ├── port_phasmatys │ │ │ ├── alices_farm │ │ │ │ ├── alices_farm.npc-spawns.toml │ │ │ │ └── alices_farm.npcs.toml │ │ │ ├── distillery │ │ │ │ ├── port_phasmatys_distillery.npc-spawns.toml │ │ │ │ └── port_phasmatys_distillery.npcs.toml │ │ │ ├── port_phasmatys.areas.toml │ │ │ ├── port_phasmatys.drops.toml │ │ │ ├── port_phasmatys.items.toml │ │ │ ├── port_phasmatys.npc-spawns.toml │ │ │ ├── port_phasmatys.npcs.toml │ │ │ ├── port_phasmatys.objs.toml │ │ │ ├── port_phasmatys.shops.toml │ │ │ └── port_phasmatys.teles.toml │ │ └── slayer_tower │ │ │ ├── aberrant_spectre │ │ │ ├── aberrant_spectre.anims.toml │ │ │ ├── aberrant_spectre.drops.toml │ │ │ ├── aberrant_spectre.gfx.toml │ │ │ ├── aberrant_spectre.npcs.toml │ │ │ └── aberrant_spectre.sounds.toml │ │ │ ├── banshee │ │ │ ├── banshee.anims.toml │ │ │ ├── banshee.drops.toml │ │ │ ├── banshee.gfx.toml │ │ │ ├── banshee.npcs.toml │ │ │ └── banshee.sounds.toml │ │ │ ├── gargoyle │ │ │ ├── gargoyle.anims.toml │ │ │ ├── gargoyle.drops.toml │ │ │ ├── gargoyle.npcs.toml │ │ │ └── gargoyle.sounds.toml │ │ │ ├── infernal_mage │ │ │ ├── infernal_mage.drops.toml │ │ │ ├── infernal_mage.npcs.toml │ │ │ └── infernal_mage.sounds.toml │ │ │ ├── nechryael │ │ │ ├── nechryael.anims.toml │ │ │ ├── nechryael.drops.toml │ │ │ ├── nechryael.npcs.toml │ │ │ └── nechryael.sounds.toml │ │ │ ├── slayer_tower.anims.toml │ │ │ ├── slayer_tower.areas.toml │ │ │ ├── slayer_tower.npc-spawns.toml │ │ │ ├── slayer_tower.npcs.toml │ │ │ ├── slayer_tower.objs.toml │ │ │ └── slayer_tower.teles.toml │ ├── realm │ │ ├── corporeal_beasts_lair │ │ │ ├── corporeal_beasts_lair.npc-spawns.toml │ │ │ └── corporeal_beasts_lair.npcs.toml │ │ ├── cosmic_entity_plane │ │ │ ├── cosmic_entity_plane.npc-spawns.toml │ │ │ └── cosmic_entity_plane.npcs.toml │ │ ├── dragonkin_castle │ │ │ ├── dragonkin_castle.npc-spawns.toml │ │ │ └── dragonkin_castle.npcs.toml │ │ ├── dream_world │ │ │ ├── dream_world.npc-spawns.toml │ │ │ ├── dream_world.npcs.toml │ │ │ ├── korasis_dream │ │ │ │ ├── korasis_dream.npc-spawns.toml │ │ │ │ └── korasis_dream.npcs.toml │ │ │ └── silass_dream │ │ │ │ ├── silass_dream.npc-spawns.toml │ │ │ │ └── silass_dream.npcs.toml │ │ ├── enchanted_valley │ │ │ ├── enchanted_valley.areas.toml │ │ │ ├── enchanted_valley.drops.toml │ │ │ ├── enchanted_valley.npc-spawns.toml │ │ │ └── enchanted_valley.npcs.toml │ │ ├── fisher_realm │ │ │ ├── fisher_realm.npc-spawns.toml │ │ │ └── fisher_realm.npcs.toml │ │ ├── gorak_plane │ │ │ ├── gorak.anims.toml │ │ │ ├── gorak.drops.toml │ │ │ ├── gorak.npcs.toml │ │ │ ├── gorak.sounds.toml │ │ │ └── gorak_plane.npc-spawns.toml │ │ ├── killerwatt_plane │ │ │ ├── killerwatt_plane.anims.toml │ │ │ ├── killerwatt_plane.drop.toml │ │ │ ├── killerwatt_plane.npc-spawns.toml │ │ │ ├── killerwatt_plane.npcs.toml │ │ │ └── killerwatt_plane.sounds.toml │ │ ├── rune_essence_mine │ │ │ └── rune_essence_mine.areas.toml │ │ ├── spirit_plane │ │ │ ├── spirit_plane.npc-spawns.toml │ │ │ └── spirit_plane.npcs.toml │ │ └── spirit_realm │ │ │ ├── spirit_realm.npc-spawns.toml │ │ │ └── spirit_realm.npcs.toml │ ├── tirannwn │ │ ├── iorwerth_camp │ │ │ ├── iorwerth_camp.drops.toml │ │ │ ├── iorwerth_camp.item-spawns.toml │ │ │ ├── iorwerth_camp.npc-spawns.toml │ │ │ └── iorwerth_camp.npcs.toml │ │ ├── isafdar │ │ │ ├── isafdar.item-spawns.toml │ │ │ ├── isafdar.npc-spawns.toml │ │ │ └── isafdar.npcs.toml │ │ ├── lletya │ │ │ ├── lletya.npc-spawns.toml │ │ │ ├── lletya.npcs.toml │ │ │ └── lletya.shops.toml │ │ ├── poison_waste │ │ │ ├── poison_waste.npc-spawns.toml │ │ │ ├── poison_waste.npcs.toml │ │ │ └── slayer_dungeon │ │ │ │ ├── poison_waste_slayer_dungeon.npc-spawns.toml │ │ │ │ └── poison_waste_slayer_dungeon.npcs.toml │ │ ├── port_tyras │ │ │ └── port_tyras.npc-spawns.toml │ │ ├── tirannwn.areas.toml │ │ └── tyras_camp │ │ │ ├── tyras_camp.drops.toml │ │ │ ├── tyras_camp.item-spawns.toml │ │ │ ├── tyras_camp.npc-spawns.toml │ │ │ ├── tyras_camp.npcs.toml │ │ │ └── tyras_camp.shops.toml │ ├── troll_country │ │ ├── death_plateau │ │ │ ├── death_plateau.areas.toml │ │ │ ├── death_plateau.drops.toml │ │ │ ├── death_plateau.item-spawns.toml │ │ │ ├── death_plateau.npc-spawns.toml │ │ │ └── death_plateau.npcs.toml │ │ ├── ghorrock │ │ │ ├── ghorrock.npc-spawns.toml │ │ │ ├── ghorrock_fortress_dungeon │ │ │ │ ├── ghorrock_fortress_dungeon.npc-spawns.toml │ │ │ │ └── ghorrock_fortress_dungeon.npcs.toml │ │ │ └── jhallans_resting_place │ │ │ │ ├── jhallans_resting_place.npc-spawns.toml │ │ │ │ └── jhallans_resting_place.npcs.toml │ │ ├── god_wars_dungeon │ │ │ ├── armadyl │ │ │ │ ├── armadyl.anims.toml │ │ │ │ ├── armadyl.drops.toml │ │ │ │ ├── armadyl.gfx.toml │ │ │ │ ├── armadyl.npcs.toml │ │ │ │ ├── armadyl.sounds.toml │ │ │ │ └── aviansie │ │ │ │ │ ├── aviansie.anims.toml │ │ │ │ │ ├── aviansie.drops.toml │ │ │ │ │ ├── aviansie.gfx.toml │ │ │ │ │ ├── aviansie.npcs.toml │ │ │ │ │ └── aviansie.sounds.toml │ │ │ ├── bandos │ │ │ │ ├── bandos.anims.toml │ │ │ │ ├── bandos.drops.toml │ │ │ │ ├── bandos.gfx.toml │ │ │ │ ├── bandos.npcs.toml │ │ │ │ ├── bandos.sounds.toml │ │ │ │ └── ork │ │ │ │ │ ├── ork.anims.toml │ │ │ │ │ ├── ork.drops.toml │ │ │ │ │ ├── ork.npcs.toml │ │ │ │ │ └── ork.sounds.toml │ │ │ ├── god_wars.areas.toml │ │ │ ├── god_wars.ifaces.toml │ │ │ ├── god_wars.npcs.toml │ │ │ ├── god_wars_dungeon.anims.toml │ │ │ ├── god_wars_dungeon.gfx.toml │ │ │ ├── god_wars_dungeon.items.toml │ │ │ ├── god_wars_dungeon.npc-spawns.toml │ │ │ ├── god_wars_dungeon.objs.toml │ │ │ ├── god_wars_dungeon.sounds.toml │ │ │ ├── god_wars_dungeon.teles.toml │ │ │ ├── god_wars_dungeon.varbits.toml │ │ │ ├── god_wars_dungeon.varcs.toml │ │ │ ├── god_wars_dungeon.vars.toml │ │ │ ├── godwars.midis.toml │ │ │ ├── saradomin │ │ │ │ ├── knight_of_saradomin │ │ │ │ │ └── knight_of_saradomin.npcs.toml │ │ │ │ ├── saradomin.anims.toml │ │ │ │ ├── saradomin.drops.toml │ │ │ │ ├── saradomin.gfx.toml │ │ │ │ ├── saradomin.npcs.toml │ │ │ │ ├── saradomin.sounds.toml │ │ │ │ └── saradomin_preist │ │ │ │ │ ├── saradomin_priest.anims.toml │ │ │ │ │ └── saradomin_priest.npcs.toml │ │ │ ├── spiritual_mage │ │ │ │ ├── spiritual_mage.anims.toml │ │ │ │ ├── spiritual_mage.drops.toml │ │ │ │ ├── spiritual_mage.npcs.toml │ │ │ │ └── spiritual_mage.sounds.toml │ │ │ ├── spiritual_ranger │ │ │ │ ├── spiritual_ranger.anims.toml │ │ │ │ ├── spiritual_ranger.drops.toml │ │ │ │ ├── spiritual_ranger.npcs.toml │ │ │ │ └── spiritual_ranger.sounds.toml │ │ │ ├── spiritual_warrior │ │ │ │ ├── spiritual_warrior.anims.toml │ │ │ │ ├── spiritual_warrior.drops.toml │ │ │ │ ├── spiritual_warrior.npcs.toml │ │ │ │ └── spiritual_warrior.sounds.toml │ │ │ └── zamorak │ │ │ │ ├── zamorak.anims.toml │ │ │ │ ├── zamorak.drops.toml │ │ │ │ ├── zamorak.gfx.toml │ │ │ │ ├── zamorak.npcs.toml │ │ │ │ └── zamorak.sounds.toml │ │ ├── ice_path │ │ │ ├── ice_path.npc-spawns.toml │ │ │ ├── ice_path.npcs.toml │ │ │ └── ice_wolf │ │ │ │ ├── ice_wolf.drops.toml │ │ │ │ ├── ice_wolf.npc-spawns.toml │ │ │ │ └── ice_wolf.npcs.toml │ │ ├── mountain_camp │ │ │ ├── caves │ │ │ │ ├── mountain_camp_caves.npc-spawns.toml │ │ │ │ └── mountain_camp_caves.npcs.toml │ │ │ ├── mountain_camp.item-spawns.toml │ │ │ ├── mountain_camp.npc-spawns.toml │ │ │ └── mountain_camp.npcs.toml │ │ ├── troll_country.drops.toml │ │ ├── troll_country.npc-spawns.toml │ │ ├── troll_country.npcs.toml │ │ ├── troll_stronghold │ │ │ ├── troll_stronghold.shops.toml │ │ │ └── troll_stronghold.teles.toml │ │ ├── troll_tunnels │ │ │ ├── troll_tunnels.npc-spawns.toml │ │ │ └── troll_tunnels.npcs.toml │ │ ├── trollheim │ │ │ ├── trollheim.anims.toml │ │ │ ├── trollheim.areas.toml │ │ │ ├── trollheim.drops.toml │ │ │ ├── trollheim.gfx.toml │ │ │ ├── trollheim.npc-spawns.toml │ │ │ ├── trollheim.npcs.toml │ │ │ ├── trollheim.objs.toml │ │ │ └── trollheim.sounds.toml │ │ └── trollweiss │ │ │ ├── trollweiss.item-spawns.toml │ │ │ ├── trollweiss.npc-spawns.toml │ │ │ └── trollweiss.npcs.toml │ └── wilderness │ │ ├── abyss │ │ ├── abyss.anims.toml │ │ ├── abyss.areas.toml │ │ ├── abyss.drops.toml │ │ ├── abyss.npc-spawns.toml │ │ ├── abyss.npcs.toml │ │ ├── abyss.objs.toml │ │ ├── abyss.sounds.toml │ │ ├── abyss.teles.toml │ │ └── abyssal_demon │ │ │ ├── abyssal_demon.anims.toml │ │ │ ├── abyssal_demon.drops.toml │ │ │ ├── abyssal_demon.gfx.toml │ │ │ ├── abyssal_demon.npcs.toml │ │ │ └── abyssal_demon.sounds.toml │ │ ├── agility_course │ │ ├── wilderness_agility.anims.toml │ │ ├── wilderness_agility_course.item-spawns.toml │ │ ├── wilderness_agility_course.npc-spawns.toml │ │ └── wilderness_agility_course.teles.toml │ │ ├── bandit_camp │ │ ├── wilderness_bandit_camp.drops.toml │ │ ├── wilderness_bandit_camp.item-spawns.toml │ │ ├── wilderness_bandit_camp.npc-spawns.toml │ │ ├── wilderness_bandit_camp.npcs.toml │ │ └── wilderness_bandit_camp.teles.toml │ │ ├── chaos_temple_dungeon │ │ ├── chaos_temple_dungeon.npc-spawns.toml │ │ └── chaos_temple_dungeon.npcs.toml │ │ ├── chaos_tunnels │ │ ├── chaos_tunnels.anims.toml │ │ ├── chaos_tunnels.drops.toml │ │ ├── chaos_tunnels.npc-spawns.toml │ │ ├── chaos_tunnels.npcs.toml │ │ ├── chaos_tunnels.sounds.toml │ │ └── resource_dungeon │ │ │ ├── chaos_tunnels_resource_dungeon.npc-spawns.toml │ │ │ └── chaos_tunnels_resource_dungeon.npcs.toml │ │ ├── daemonheim │ │ ├── daemonheim.areas.toml │ │ ├── daemonheim.npc-spawns.toml │ │ └── daemonheim.npcs.toml │ │ ├── deep_dungeon │ │ ├── deep_wilderness_dungeon.item-spawns.toml │ │ ├── deep_wilderness_dungeon.npc-spawns.toml │ │ └── deep_wilderness_dungeon.teles.toml │ │ ├── mage_arena │ │ ├── mage_arena.areas.toml │ │ ├── mage_arena.npc-spawns.toml │ │ ├── mage_arena.npcs.toml │ │ └── mage_arena.shops.toml │ │ ├── rogues_castle │ │ ├── rogues_castle.drops.toml │ │ └── rogues_castle.npc-spawns.toml │ │ ├── wilderness.anims.toml │ │ ├── wilderness.areas.toml │ │ ├── wilderness.drops.toml │ │ ├── wilderness.ifaces.toml │ │ ├── wilderness.item-spawns.toml │ │ ├── wilderness.items.toml │ │ ├── wilderness.npc-spawns.toml │ │ ├── wilderness.npcs.toml │ │ ├── wilderness.objs.toml │ │ ├── wilderness.shops.toml │ │ ├── wilderness.sounds.toml │ │ ├── wilderness.teles.toml │ │ ├── wilderness.varbits.toml │ │ └── wilderness.vars.toml ├── client │ ├── categories.toml │ ├── client.scripts.toml │ ├── enums.toml │ ├── parameters.toml │ └── structs.toml ├── entity │ ├── bot │ │ ├── gear_sets.toml │ │ └── nav_graph.toml │ ├── npc │ │ ├── animal │ │ │ ├── bat │ │ │ │ ├── bat.anims.toml │ │ │ │ ├── bat.drops.toml │ │ │ │ ├── bat.npc-spawns.toml │ │ │ │ ├── bat.npcs.toml │ │ │ │ └── bat.sounds.toml │ │ │ ├── bear │ │ │ │ ├── bear.anims.toml │ │ │ │ ├── bear.drops.toml │ │ │ │ ├── bear.npc-spawns.toml │ │ │ │ ├── bear.npcs.toml │ │ │ │ └── bear.sounds.toml │ │ │ ├── birds.npcs.toml │ │ │ ├── butterflies.npcs.toml │ │ │ ├── camels.npcs.toml │ │ │ ├── chicken │ │ │ │ ├── chicken.anims.toml │ │ │ │ ├── chicken.drops.toml │ │ │ │ ├── chicken.npcs.toml │ │ │ │ └── chicken.sounds.toml │ │ │ ├── cow │ │ │ │ ├── cow.anims.toml │ │ │ │ ├── cow.drops.toml │ │ │ │ ├── cow.npcs.toml │ │ │ │ └── cow.sounds.toml │ │ │ ├── crab │ │ │ │ ├── crab.anims.toml │ │ │ │ ├── crab.drops.toml │ │ │ │ ├── crab.npc-spawns.toml │ │ │ │ ├── crab.npcs.toml │ │ │ │ └── crab.sounds.toml │ │ │ ├── dog │ │ │ │ ├── dog.anims.toml │ │ │ │ ├── dog.drops.toml │ │ │ │ ├── dog.npc-spawns.toml │ │ │ │ ├── dog.npcs.toml │ │ │ │ └── dog.sounds.toml │ │ │ ├── gecko.anims.toml │ │ │ ├── monkey │ │ │ │ ├── monkey.anims.toml │ │ │ │ ├── monkey.drops.toml │ │ │ │ ├── monkey.npc-spawns.toml │ │ │ │ ├── monkey.npcs.toml │ │ │ │ └── monkey.sounds.toml │ │ │ ├── rat │ │ │ │ ├── rat.anims.toml │ │ │ │ ├── rat.drops.toml │ │ │ │ ├── rat.npcs.toml │ │ │ │ └── rat.sounds.toml │ │ │ ├── sheep │ │ │ │ ├── sheep.anims.toml │ │ │ │ ├── sheep.gfx.toml │ │ │ │ ├── sheep.npcs.toml │ │ │ │ └── sheep.sounds.toml │ │ │ └── wolf │ │ │ │ ├── wolf.anims.toml │ │ │ │ ├── wolf.npcs.toml │ │ │ │ └── wolf.sounds.toml │ │ ├── boss │ │ │ ├── giant_mole │ │ │ │ ├── giant_mole.anims.toml │ │ │ │ ├── giant_mole.areas.toml │ │ │ │ ├── giant_mole.drops.toml │ │ │ │ ├── giant_mole.gfx.toml │ │ │ │ ├── giant_mole.ifaces.toml │ │ │ │ ├── giant_mole.items.toml │ │ │ │ ├── giant_mole.npcs.toml │ │ │ │ ├── giant_mole.objs.toml │ │ │ │ ├── giant_mole.sounds.toml │ │ │ │ └── giant_mole_lair.npc-spawns.toml │ │ │ ├── haakon_the_champion │ │ │ │ └── haakon_the_champion.drops.toml │ │ │ ├── kalphite_queen │ │ │ │ └── kalphite_queen.areas.toml │ │ │ ├── king_black_dragon │ │ │ │ ├── king_black_dragon.areas.toml │ │ │ │ ├── king_black_dragon.drops.toml │ │ │ │ ├── king_black_dragons_lair.npc-spawns.toml │ │ │ │ └── king_black_dragons_lair.teles.toml │ │ │ └── skeletal_horror.gfx.toml │ │ ├── dark_wizard.drops.toml │ │ ├── humanoid │ │ │ ├── bankers.npcs.toml │ │ │ ├── chaos_druid │ │ │ │ ├── chaos_druid.anims.toml │ │ │ │ ├── chaos_druid.drops.toml │ │ │ │ ├── chaos_druid.npcs.toml │ │ │ │ └── chaos_druid.sounds.toml │ │ │ ├── cyclops │ │ │ │ ├── cyclops.anims.toml │ │ │ │ ├── cyclops.drops.toml │ │ │ │ └── cyclops.npcs.toml │ │ │ ├── dwarf │ │ │ │ ├── dwarf.anims.toml │ │ │ │ ├── dwarf.drops.toml │ │ │ │ ├── dwarf.npc-spawns.toml │ │ │ │ ├── dwarf.npcs.toml │ │ │ │ └── dwarf.sounds.toml │ │ │ ├── gnomes.npcs.toml │ │ │ ├── human │ │ │ │ ├── human.drops.toml │ │ │ │ ├── humans.npcs.toml │ │ │ │ ├── man.sounds.toml │ │ │ │ └── woman.sounds.toml │ │ │ ├── jogre │ │ │ │ ├── jogre.anims.toml │ │ │ │ ├── jogre.drops.toml │ │ │ │ └── jogre.npcs.toml │ │ │ ├── monk │ │ │ │ ├── monk.anims.toml │ │ │ │ ├── monk.drops.toml │ │ │ │ ├── monk.npcs.toml │ │ │ │ └── monk.sounds.toml │ │ │ ├── mugger │ │ │ │ ├── mugger.anims.toml │ │ │ │ ├── mugger.drops.toml │ │ │ │ ├── mugger.npcs.toml │ │ │ │ └── mugger.sounds.toml │ │ │ ├── musicians.npcs.toml │ │ │ ├── ogre │ │ │ │ ├── ogre.anims.toml │ │ │ │ ├── ogre.drops.toml │ │ │ │ └── ogre.npcs.toml │ │ │ ├── pirate │ │ │ │ ├── pirate.anims.toml │ │ │ │ ├── pirate.drops.toml │ │ │ │ ├── pirate.npcs.toml │ │ │ │ └── pirate.sounds.toml │ │ │ └── thug │ │ │ │ ├── thug.anims.toml │ │ │ │ ├── thug.drops.toml │ │ │ │ ├── thug.npcs.toml │ │ │ │ └── thug.sounds.toml │ │ ├── hunt │ │ │ └── hunt.vars.toml │ │ ├── hunt_modes.toml │ │ ├── misc.drops.toml │ │ ├── monster │ │ │ ├── bloodveld │ │ │ │ └── bloodveld.drops.toml │ │ │ ├── cave │ │ │ │ ├── cave_bug │ │ │ │ │ ├── cave_bug.anims.toml │ │ │ │ │ ├── cave_bug.drops.toml │ │ │ │ │ ├── cave_bug.npc-spawns.toml │ │ │ │ │ ├── cave_bug.npcs.toml │ │ │ │ │ └── cave_bug.sounds.toml │ │ │ │ ├── cave_crawler │ │ │ │ │ ├── cave_crawler.anims.toml │ │ │ │ │ ├── cave_crawler.drops.toml │ │ │ │ │ ├── cave_crawler.npc-spawns.toml │ │ │ │ │ ├── cave_crawler.npcs.toml │ │ │ │ │ └── cave_crawler.sounds.toml │ │ │ │ └── cave_slime │ │ │ │ │ ├── cave_slime.anims.toml │ │ │ │ │ ├── cave_slime.drops.toml │ │ │ │ │ ├── cave_slime.npc-spawns.toml │ │ │ │ │ ├── cave_slime.npcs.toml │ │ │ │ │ └── cave_slime.sounds.toml │ │ │ ├── dagannoth │ │ │ │ ├── dagannoth.anims.toml │ │ │ │ ├── dagannoth.drops.toml │ │ │ │ ├── dagannoth.gfx.toml │ │ │ │ ├── dagannoth.npc-spawns.toml │ │ │ │ ├── dagannoth.npcs.toml │ │ │ │ └── dagannoth.sounds.toml │ │ │ ├── demon │ │ │ │ ├── demon.drops.toml │ │ │ │ ├── demons.npcs.toml │ │ │ │ └── hellhound │ │ │ │ │ ├── hellhound.anims.toml │ │ │ │ │ ├── hellhound.drops.toml │ │ │ │ │ ├── hellhound.npcs.toml │ │ │ │ │ └── hellhound.sounds.toml │ │ │ ├── draconic │ │ │ │ ├── dragon.anims.toml │ │ │ │ ├── dragon.drops.toml │ │ │ │ ├── dragon.gfx.toml │ │ │ │ ├── dragon.sounds.toml │ │ │ │ └── dragons.npcs.toml │ │ │ ├── fiend │ │ │ │ └── ice_fiend │ │ │ │ │ ├── icefiend.anims.toml │ │ │ │ │ ├── icefiend.drops.toml │ │ │ │ │ ├── icefiend.npc-spawns.toml │ │ │ │ │ ├── icefiend.npcs.toml │ │ │ │ │ └── icefiend.sounds.toml │ │ │ ├── giant │ │ │ │ ├── fire_giant │ │ │ │ │ ├── fire_giant.anims.toml │ │ │ │ │ ├── fire_giant.drops.toml │ │ │ │ │ └── fire_giant.npcs.toml │ │ │ │ ├── giant.sounds.toml │ │ │ │ ├── hill_giant │ │ │ │ │ ├── hill_giant.anims.toml │ │ │ │ │ ├── hill_giant.drops.toml │ │ │ │ │ ├── hill_giant.npcs.toml │ │ │ │ │ └── hill_giant.sounds.toml │ │ │ │ ├── ice_giant │ │ │ │ │ ├── ice_giant.anims.toml │ │ │ │ │ ├── ice_giant.drops.toml │ │ │ │ │ ├── ice_giant.npcs.toml │ │ │ │ │ └── ice_giant.sounds.toml │ │ │ │ └── moss_giant │ │ │ │ │ ├── moss_giant.anims.toml │ │ │ │ │ ├── moss_giant.drops.toml │ │ │ │ │ └── moss_giant.npcs.toml │ │ │ ├── goblin │ │ │ │ ├── goblin.anims.toml │ │ │ │ ├── goblin.drops.toml │ │ │ │ ├── goblin.npcs.toml │ │ │ │ ├── goblin.sounds.toml │ │ │ │ ├── hobgoblin │ │ │ │ │ ├── hobgoblin.anims.toml │ │ │ │ │ ├── hobgoblin.drops.toml │ │ │ │ │ ├── hobgoblin.npcs.toml │ │ │ │ │ └── hobgoblin.sounds.toml │ │ │ │ └── hobgoblins.drops.toml │ │ │ ├── gorak │ │ │ │ └── gorak.drops.toml │ │ │ ├── imp │ │ │ │ ├── imp.anims.toml │ │ │ │ ├── imp.drops.toml │ │ │ │ ├── imp.gfx.toml │ │ │ │ ├── imp.npcs.toml │ │ │ │ └── imp.sounds.toml │ │ │ ├── kalphite │ │ │ │ ├── kalphite.anims.toml │ │ │ │ ├── kalphite.drops.toml │ │ │ │ ├── kalphite.npc-spawns.toml │ │ │ │ ├── kalphite.npcs.toml │ │ │ │ └── kalphite.sounds.toml │ │ │ ├── knights │ │ │ │ └── black_knights │ │ │ │ │ ├── black_knights.anims.toml │ │ │ │ │ ├── black_knights.drops.toml │ │ │ │ │ ├── black_knights.npcs.toml │ │ │ │ │ └── black_knights.sounds.toml │ │ │ ├── pyrefiend │ │ │ │ ├── pyrefiend.anims.toml │ │ │ │ ├── pyrefiend.drops.toml │ │ │ │ ├── pyrefiend.npcs.toml │ │ │ │ └── pyrefiend.sounds.toml │ │ │ ├── reptile │ │ │ │ ├── lizard │ │ │ │ │ ├── lizard.anims.toml │ │ │ │ │ ├── lizard.drops.toml │ │ │ │ │ ├── lizard.gfx.toml │ │ │ │ │ ├── lizard.npc-spawns.toml │ │ │ │ │ ├── lizard.npcs.toml │ │ │ │ │ └── lizard.sounds.toml │ │ │ │ ├── scorpion │ │ │ │ │ ├── scorpion.anims.toml │ │ │ │ │ ├── scorpion.drops.toml │ │ │ │ │ ├── scorpion.npc-spawns.toml │ │ │ │ │ ├── scorpion.npcs.toml │ │ │ │ │ └── scorpion.sounds.toml │ │ │ │ ├── snake │ │ │ │ │ ├── snake.npcs.toml │ │ │ │ │ └── snake.sounds.toml │ │ │ │ └── spider │ │ │ │ │ ├── spider.anims.toml │ │ │ │ │ ├── spider.npc-spawns.toml │ │ │ │ │ ├── spider.npcs.toml │ │ │ │ │ └── spider.sounds.toml │ │ │ ├── rock_lobsters │ │ │ │ ├── rocklobster.anims.toml │ │ │ │ ├── rocklobster.drops.toml │ │ │ │ ├── rocklobster.npc-spawns.toml │ │ │ │ ├── rocklobster.npcs.toml │ │ │ │ └── rocklobster.sounds.toml │ │ │ ├── undead │ │ │ │ ├── ankou │ │ │ │ │ ├── ankou.drops.toml │ │ │ │ │ ├── ankou.npc-spawns.toml │ │ │ │ │ ├── ankou.npcs.toml │ │ │ │ │ └── ankou.sounds.toml │ │ │ │ ├── bloodveld │ │ │ │ │ ├── bloodveld.anims.toml │ │ │ │ │ ├── bloodveld.drops.toml │ │ │ │ │ ├── bloodveld.npcs.toml │ │ │ │ │ └── bloodveld.sounds.toml │ │ │ │ ├── corpse │ │ │ │ │ ├── corpse.anims.toml │ │ │ │ │ ├── corpse.drops.toml │ │ │ │ │ ├── corpse.npc-spawns.toml │ │ │ │ │ └── corpse.npcs.toml │ │ │ │ ├── crawling_hand │ │ │ │ │ ├── crawling_hand.anims.toml │ │ │ │ │ ├── crawling_hand.drops.toml │ │ │ │ │ ├── crawling_hand.npcs.toml │ │ │ │ │ └── crawling_hand.sounds.toml │ │ │ │ ├── dragith_nurn │ │ │ │ │ ├── dragith_nurn.anims.toml │ │ │ │ │ ├── dragith_nurn.drops.toml │ │ │ │ │ └── dragith_nurn.npcs.toml │ │ │ │ ├── ghost │ │ │ │ │ ├── ghost.anims.toml │ │ │ │ │ ├── ghost.drops.toml │ │ │ │ │ ├── ghost.npc-spawns.toml │ │ │ │ │ ├── ghost.npcs.toml │ │ │ │ │ └── ghost.sounds.toml │ │ │ │ ├── magic_axe │ │ │ │ │ ├── magic_axe.anims.toml │ │ │ │ │ ├── magic_axe.drops.toml │ │ │ │ │ ├── magic_axe.npcs.toml │ │ │ │ │ └── magic_axe.sounds.toml │ │ │ │ ├── shade │ │ │ │ │ ├── shade.anims.toml │ │ │ │ │ ├── shade.drops.toml │ │ │ │ │ ├── shade.npc-spawns.toml │ │ │ │ │ ├── shade.npcs.toml │ │ │ │ │ └── shade.sounds.toml │ │ │ │ ├── skeleton │ │ │ │ │ ├── skeleton.anims.toml │ │ │ │ │ ├── skeleton.drops.toml │ │ │ │ │ ├── skeleton.npc-spawns.toml │ │ │ │ │ └── skeletons.npcs.toml │ │ │ │ ├── skoblin │ │ │ │ │ ├── skoblin.anims.toml │ │ │ │ │ ├── skoblin.drops.toml │ │ │ │ │ ├── skoblin.npc-spawns.toml │ │ │ │ │ └── skoblin.npcs.toml │ │ │ │ ├── warped │ │ │ │ │ ├── warped.anims.toml │ │ │ │ │ ├── warped.drops.toml │ │ │ │ │ ├── warped.npc-spawns.toml │ │ │ │ │ └── warped.npcs.toml │ │ │ │ └── zombie │ │ │ │ │ ├── zombie.anims.toml │ │ │ │ │ ├── zombie.drops.toml │ │ │ │ │ ├── zombie.npc-spawns.toml │ │ │ │ │ ├── zombie.npcs.toml │ │ │ │ │ └── zombie.sounds.toml │ │ │ ├── vampyre │ │ │ │ ├── vampyre.anims.toml │ │ │ │ ├── vampyre.drops.toml │ │ │ │ ├── vampyre.npcs.toml │ │ │ │ └── vampyre.sounds.toml │ │ │ ├── wallasalki │ │ │ │ ├── wallasalki.anims.toml │ │ │ │ ├── wallasalki.drops.toml │ │ │ │ ├── wallasalki.npc-spawns.toml │ │ │ │ └── wallasalki.npcs.toml │ │ │ ├── warrior │ │ │ │ ├── earth_warrior │ │ │ │ │ ├── earth_warrior.anims.toml │ │ │ │ │ ├── earth_warrior.drops.toml │ │ │ │ │ ├── earth_warrior.npcs.toml │ │ │ │ │ └── earth_warrior.sounds.toml │ │ │ │ └── ice_warrior │ │ │ │ │ ├── ice_warrior.anims.toml │ │ │ │ │ ├── ice_warrior.drops.toml │ │ │ │ │ ├── ice_warrior.npcs.toml │ │ │ │ │ └── ice_warrior.sounds.toml │ │ │ └── werewolf │ │ │ │ ├── werewolf.anims.toml │ │ │ │ ├── werewolf.drops.toml │ │ │ │ ├── werewolf.npcs.toml │ │ │ │ └── werewolf.sounds.toml │ │ ├── rare_drop_table.drops.toml │ │ └── shop │ │ │ ├── shop.ifaces.toml │ │ │ ├── shop.items.toml │ │ │ ├── shop.varps.toml │ │ │ └── team_cape.items.toml │ ├── obj │ │ ├── all.objs.toml │ │ ├── balloon │ │ │ └── balloon_transport.ifaces.toml │ │ ├── barriers.objs.toml │ │ ├── boat │ │ │ ├── boat.jingles.toml │ │ │ ├── charter_ship.areas.toml │ │ │ ├── charter_ship.ifaces.toml │ │ │ ├── charter_ship.npcs.toml │ │ │ ├── charter_ship.objs.toml │ │ │ ├── charter_ship.scripts.toml │ │ │ ├── charter_ship.teles.toml │ │ │ ├── charter_ship.varps.toml │ │ │ ├── charter_ship_prices.toml │ │ │ └── trader_stans_trading_post.shops.toml │ │ ├── canoe │ │ │ ├── canoe.anims.toml │ │ │ ├── canoe.ifaces.toml │ │ │ ├── canoe.items.toml │ │ │ ├── canoe.objs.toml │ │ │ ├── canoe.sounds.toml │ │ │ ├── canoe.varbits.toml │ │ │ └── canoe_stations.toml │ │ ├── chairs.objs.toml │ │ ├── crates.objs.toml │ │ ├── door │ │ │ ├── door.objs.toml │ │ │ ├── door.sounds.toml │ │ │ └── door.vars.toml │ │ ├── gates.objs.toml │ │ ├── gnome_glider │ │ │ ├── gnome_glider.ifaces.toml │ │ │ └── gnome_glider.varps.toml │ │ ├── obj.sounds.toml │ │ ├── stairs_ladders.objs.toml │ │ ├── stones.objs.toml │ │ ├── trapdoors.objs.toml │ │ ├── trees.objs.toml │ │ └── windmill │ │ │ ├── windmill.varps.toml │ │ │ └── windmill.vars.toml │ └── player │ │ ├── bank │ │ ├── bank.ifaces.toml │ │ ├── bank.invs.toml │ │ ├── bank.varbits.toml │ │ ├── bank.varcs.toml │ │ └── bank.varps.toml │ │ ├── cape.items.toml │ │ ├── charges.vars.toml │ │ ├── combat │ │ ├── combat.sounds.toml │ │ ├── combat.varcs.toml │ │ ├── combat_styles │ │ │ ├── attack_style.vars.toml │ │ │ ├── combat_style.ifaces.toml │ │ │ ├── combat_style.varps.toml │ │ │ └── weapon_styles.toml │ │ ├── special_attack.gfx.toml │ │ ├── weapon.anims.toml │ │ └── weapon_animations.toml │ │ ├── credit.varps.toml │ │ ├── dialogue │ │ ├── dialogue.ifaces.toml │ │ ├── dialogue.varbits.toml │ │ ├── dialogue.varcs.toml │ │ └── dialogue_expressions.anims.toml │ │ ├── effect │ │ ├── energy │ │ │ ├── rest.anims.toml │ │ │ └── rest.gfx.toml │ │ ├── poison │ │ │ ├── poison.varps.toml │ │ │ └── poison.vars.toml │ │ ├── skull │ │ │ └── skull.vars.toml │ │ └── stun │ │ │ └── stun.vars.toml │ │ ├── equipment │ │ ├── equipment.sounds.toml │ │ ├── worn_equipment.ifaces.toml │ │ ├── worn_equipment.invs.toml │ │ ├── worn_equipment.strings.toml │ │ ├── worn_equipment.varbits.toml │ │ └── worn_equipment.varcs.toml │ │ ├── human.anims.toml │ │ ├── inventory │ │ ├── inventory.ifaces.toml │ │ ├── inventory.invs.toml │ │ └── inventory_side.ifaces.toml │ │ ├── kept │ │ └── items_kept_on_death.ifaces.toml │ │ ├── misc.invs.toml │ │ ├── modal │ │ ├── book │ │ │ └── books.ifaces.toml │ │ ├── character_creation │ │ │ ├── character_creation.ifaces.toml │ │ │ ├── character_creation.invs.toml │ │ │ ├── character_creation.varbits.toml │ │ │ ├── character_rename.ifaces.toml │ │ │ └── character_rename.vars.toml │ │ ├── chat_box │ │ │ ├── chat_box.ifaces.toml │ │ │ ├── chat_box.varbits.toml │ │ │ ├── chat_box.varcs.toml │ │ │ ├── chat_box.varps.toml │ │ │ ├── chat_box.vars.toml │ │ │ ├── warning.varbits.toml │ │ │ └── warnings.ifaces.toml │ │ ├── fonts.toml │ │ ├── icon.items.toml │ │ ├── interface_types.toml │ │ ├── makeover │ │ │ ├── makeover.gfx.toml │ │ │ ├── makeover.ifaces.toml │ │ │ ├── makeover.varbits.toml │ │ │ └── makeover.varcs.toml │ │ ├── scrolls.ifaces.toml │ │ ├── tab │ │ │ ├── emote │ │ │ │ ├── emotes.anims.toml │ │ │ │ ├── emotes.gfx.toml │ │ │ │ ├── emotes.ifaces.toml │ │ │ │ ├── emotes.jingles.toml │ │ │ │ ├── emotes.npcs.toml │ │ │ │ └── emotes.varbits.toml │ │ │ ├── logout.ifaces.toml │ │ │ ├── music_player │ │ │ │ ├── music.varbits.toml │ │ │ │ ├── music.varps.toml │ │ │ │ ├── music_player.ifaces.toml │ │ │ │ └── music_tracks.toml │ │ │ ├── notes │ │ │ │ └── notes.ifaces.toml │ │ │ ├── options │ │ │ │ ├── options.ifaces.toml │ │ │ │ └── options.varps.toml │ │ │ └── tab.varcs.toml │ │ ├── toplevel │ │ │ ├── fade.ifaces.toml │ │ │ ├── fade.varbits.toml │ │ │ ├── gameframe.ifaces.toml │ │ │ ├── gameframe.varbits.toml │ │ │ ├── gameframe.varps.toml │ │ │ └── gameframe.vars.toml │ │ └── world_map │ │ │ ├── world_map.strings.toml │ │ │ ├── world_map.varbits.toml │ │ │ ├── world_map.varcs.toml │ │ │ └── world_map.varps.toml │ │ ├── player.gfx.toml │ │ ├── player.jingles.toml │ │ ├── player.sounds.toml │ │ ├── player.vars.toml │ │ ├── price_checker │ │ ├── price_checker.ifaces.toml │ │ └── price_checker.varcs.toml │ │ ├── render_emotes.toml │ │ └── unobtainable.items.toml ├── minigame │ ├── barbarian_assault │ │ ├── barbarian_assault.items.toml │ │ ├── barbarian_assault.jingles.toml │ │ ├── barbarian_assault.npc-spawns.toml │ │ ├── barbarian_assault.npcs.toml │ │ ├── barbarian_assault.varbits.toml │ │ ├── barbarian_assault_lobby.npc-spawns.toml │ │ ├── barbarian_assault_lobby.npcs.toml │ │ └── barbarian_assult.ifaces.toml │ ├── barrows_brothers │ │ ├── barrows.item-spawns.toml │ │ ├── barrows.npc-spawns.toml │ │ ├── barrows.npcs.toml │ │ ├── barrows_brother.vars.toml │ │ ├── barrows_brothers.ifaces.toml │ │ ├── barrows_brothers.items.toml │ │ └── barrows_brothers.jingles.toml │ ├── blast_furnace │ │ ├── blast_furnace.ifaces.toml │ │ ├── blast_furnace.item-spawns.toml │ │ ├── blast_furnace.items.toml │ │ ├── blast_furnace.npc-spawns.toml │ │ └── blast_furnace.npcs.toml │ ├── bounty_hunter │ │ ├── bounty_hunter.ifaces.toml │ │ └── bounty_hunter.npc-spawns.toml │ ├── burthorpe_games_room │ │ ├── burthorpe_games_room.jingles.toml │ │ └── burthorpe_games_room.teles.toml │ ├── castle_wars │ │ ├── castle_wars.areas.toml │ │ ├── castle_wars.ifaces.toml │ │ ├── castle_wars.items.toml │ │ ├── castle_wars.jingles.toml │ │ ├── castle_wars.npc-spawns.toml │ │ ├── castle_wars.npcs.toml │ │ ├── castle_wars.objs.toml │ │ └── castle_wars.shops.toml │ ├── champions_challenge │ │ ├── champions_challenge.drops.toml │ │ ├── champions_challenge.items.toml │ │ ├── champions_challenge.jingles.toml │ │ ├── champions_challenge.npc-spawns.toml │ │ ├── champions_challenge.npcs.toml │ │ ├── champions_challenge.teles.toml │ │ └── champions_challenge.varbits.toml │ ├── clan_wars │ │ ├── clan_wars.areas.toml │ │ └── clan_wars.ifaces.toml │ ├── clue_scrolls │ │ └── clue_scrolls.items.toml │ ├── conquest │ │ ├── conquest.ifaces.toml │ │ └── conquest.items.toml │ ├── duel_arena │ │ ├── duel_arena.areas.toml │ │ ├── duel_arena.ifaces.toml │ │ ├── duel_arena.jingles.toml │ │ ├── duel_arena.npc-spawns.toml │ │ ├── duel_arena.shops.toml │ │ └── duel_arena.teles.toml │ ├── familiarisation │ │ ├── familiarisation.items.toml │ │ ├── familiarisation.npcs.toml │ │ └── familiarisation.varbits.toml │ ├── first_of_guthix │ │ ├── fist_of_guthix.areas.toml │ │ ├── fist_of_guthix.ifaces.toml │ │ ├── fist_of_guthix.items.toml │ │ ├── fist_of_guthix.npc-spawns.toml │ │ ├── fist_of_guthix.npcs.toml │ │ ├── fist_of_guthix.varbits.toml │ │ └── fist_of_guthix.varps.toml │ ├── fishing_trawler │ │ ├── fishing_trawler.items.toml │ │ ├── fishing_trawler.npc-spawns.toml │ │ └── fishing_trawler.npcs.toml │ ├── gnome_resturant │ │ ├── gnome_restaurant.jingles.toml │ │ └── gnome_resturant.items.toml │ ├── gnomeball │ │ ├── gnomeball.items.toml │ │ └── gnomeball.jingles.toml │ ├── great_orb_project │ │ ├── great_orb_project.gfx.toml │ │ ├── great_orb_project.ifaces.toml │ │ └── great_orb_project.items.toml │ ├── hand_in_the_sand │ │ └── hand_in_the_sand.items.toml │ ├── herblore_habitat │ │ └── herblore_habitat.items.toml │ ├── impetuous_impulses │ │ ├── impetuous_impulses.items.toml │ │ └── impetuous_impulses.shops.toml │ ├── mage_training_arena │ │ ├── mage_training_arena.areas.toml │ │ ├── mage_training_arena.items.toml │ │ ├── mage_training_arena.npc-spawns.toml │ │ ├── mage_training_arena.npcs.toml │ │ ├── mage_training_arena.shops.toml │ │ └── mage_training_arena.teles.toml │ ├── mobilising_armies │ │ ├── mobilising_armies.areas.toml │ │ ├── mobilising_armies.ifaces.toml │ │ ├── mobilising_armies.items.toml │ │ └── mobilising_armies.varbits.toml │ ├── pest_control │ │ ├── pest_control.areas.toml │ │ ├── pest_control.gfx.toml │ │ ├── pest_control.ifaces.toml │ │ ├── pest_control.items.toml │ │ ├── pest_control.jingles.toml │ │ ├── pest_control.npc-spawns.toml │ │ ├── pest_control.npcs.toml │ │ ├── pest_control.objs.toml │ │ ├── pest_control.teles.toml │ │ ├── pest_control.vars.toml │ │ └── post_control.shops.toml │ ├── puro_puro │ │ ├── puro_puro.npc-spawns.toml │ │ └── puro_puro.npcs.toml │ ├── pyramid_plunder │ │ ├── pyramid_plunder.items.toml │ │ ├── pyramid_plunder.jingles.toml │ │ ├── pyramid_plunder.npc-spawns.toml │ │ ├── pyramid_plunder.npcs.toml │ │ └── pyramid_plunder.teles.toml │ ├── rogues_den │ │ ├── rogues_den.items.toml │ │ ├── rogues_den.jingles.toml │ │ └── rogues_den.shops.toml │ ├── shades_of_mort'ton │ │ ├── shade_catacombs │ │ │ ├── shade_catacombs.drops.toml │ │ │ ├── shade_catacombs.npc-spawns.toml │ │ │ └── shade_catacombs.npcs.toml │ │ ├── shades_of_mort'ton.items.toml │ │ └── shades_of_mort'ton.jingles.toml │ ├── sorceress's_garden │ │ ├── sorceress's_garden.items.toml │ │ ├── sorceress_garden.anims.toml │ │ ├── sorceress_garden.drops.toml │ │ ├── sorceress_garden.npc-spawns.toml │ │ ├── sorceress_garden.npcs.toml │ │ ├── sorceress_garden.objs.toml │ │ ├── sorceress_garden.patrols.toml │ │ ├── sorceress_garden.recipes.toml │ │ ├── sorceress_garden.sounds.toml │ │ └── sorceress_garden.varbits.toml │ ├── soul_wars │ │ ├── nomads_temple │ │ │ ├── nomads_temple.npc-spawns.toml │ │ │ └── nomads_temple.npcs.toml │ │ ├── soul_wars.ifaces.toml │ │ ├── soul_wars.items.toml │ │ ├── soul_wars.jingles.toml │ │ ├── soul_wars.npc-spawns.toml │ │ ├── soul_wars.npcs.toml │ │ ├── soul_wars.objs.toml │ │ └── tutorial │ │ │ └── soul_wars_tutorial.npc-spawns.toml │ ├── stealing_creation │ │ ├── stealing_creation.ifaces.toml │ │ ├── stealing_creation.items.toml │ │ └── stealing_creation.varbits.toml │ ├── tai_bwo_wannai_cleanup │ │ ├── tai_bwo_wannai_cleanup.drops.toml │ │ ├── tai_bwo_wannai_cleanup.items.toml │ │ └── tai_bwo_wannai_cleanup.npcs.toml │ ├── temple_trekking │ │ ├── temple_trekking.drops.toml │ │ ├── temple_trekking.items.toml │ │ ├── temple_trekking.jingles.toml │ │ ├── temple_trekking.npc-spawns.toml │ │ └── temple_trekking.npcs.toml │ ├── treasure_trail │ │ ├── treasure_trail.items.toml │ │ └── treasure_trail.jingles.toml │ ├── trouble_brewing │ │ ├── trouble_brewing.item-spawns.toml │ │ ├── trouble_brewing.items.toml │ │ ├── trouble_brewing.npc-spawns.toml │ │ ├── trouble_brewing.npcs.toml │ │ └── trouble_brewing.shops.toml │ ├── tzhaar_fight_cave │ │ ├── tzhaar_fight_cave.areas.toml │ │ ├── tzhaar_fight_cave.npcs.toml │ │ └── tzhaar_fight_pit.jingles.toml │ ├── tzhaar_fight_pits │ │ └── fight_pits.jingles.toml │ ├── vinesweeper │ │ ├── vinesweeper.gfx.toml │ │ ├── vinesweeper.items.toml │ │ ├── vinesweeper.npc-spawns.toml │ │ └── vinesweeper.npcs.toml │ └── warriors_guild │ │ ├── warriors_guild.areas.toml │ │ ├── warriors_guild.drops.toml │ │ ├── warriors_guild.ifaces.toml │ │ ├── warriors_guild.items.toml │ │ ├── warriors_guild.npc-spawns.toml │ │ ├── warriors_guild.npcs.toml │ │ └── warriors_guild.shops.toml ├── quest │ ├── free │ │ ├── blood_pact │ │ │ ├── blood_pact.items.toml │ │ │ └── the_blood_pact.teles.toml │ │ ├── cooks_assistant │ │ │ ├── cooks_assistant.invs.toml │ │ │ ├── cooks_assistant.items.toml │ │ │ ├── cooks_assistant.objs.toml │ │ │ ├── cooks_assistant.varps.toml │ │ │ └── cooks_assistant.vars.toml │ │ ├── demon_slayer │ │ │ ├── demon_slayer.anims.toml │ │ │ ├── demon_slayer.areas.toml │ │ │ ├── demon_slayer.gfx.toml │ │ │ ├── demon_slayer.items.toml │ │ │ ├── demon_slayer.npc-spawns.toml │ │ │ ├── demon_slayer.npcs.toml │ │ │ ├── demon_slayer.objs.toml │ │ │ ├── demon_slayer.sounds.toml │ │ │ ├── demon_slayer.varbits.toml │ │ │ └── demon_slayer.vars.toml │ │ ├── dorics_quest │ │ │ └── dorics_quest.varps.toml │ │ ├── dragon_slayer │ │ │ ├── dragon_slayer.items.toml │ │ │ ├── dragon_slayer.jingles.toml │ │ │ ├── the_lady_lumbridge.npc-spawns.toml │ │ │ └── the_lady_lumbridge.npcs.toml │ │ ├── ernest_the_chicken │ │ │ └── ernest_the_chicken.items.toml │ │ ├── goblin_diplomacy │ │ │ └── goblin_diplomacy.items.toml │ │ ├── gunnars_ground │ │ │ ├── gunnars_ground.anims.toml │ │ │ ├── gunnars_ground.items.toml │ │ │ ├── gunnars_ground.npcs.toml │ │ │ ├── gunnars_ground.objs.toml │ │ │ ├── gunnars_ground.varbits.toml │ │ │ └── gunnars_ground.vars.toml │ │ ├── imp_catcher │ │ │ └── imp_catcher.items.toml │ │ ├── learning_the_ropes │ │ │ └── learning_the_ropes.items.toml │ │ ├── myths_of_the_white_lands │ │ │ └── myths_of_the_white_lands.items.toml │ │ ├── prince_ali_rescue │ │ │ ├── prince_ali_rescue.anims.toml │ │ │ ├── prince_ali_rescue.gfx.toml │ │ │ ├── prince_ali_rescue.items.toml │ │ │ ├── prince_ali_rescue.npcs.toml │ │ │ ├── prince_ali_rescue.objs.toml │ │ │ ├── prince_ali_rescue.recipes.toml │ │ │ ├── prince_ali_rescue.sounds.toml │ │ │ ├── prince_ali_rescue.varps.toml │ │ │ └── prince_ali_rescue.vars.toml │ │ ├── romeo_juliet │ │ │ └── romeo_juliet.items.toml │ │ ├── shield_of_arrav │ │ │ ├── shield_of_arrav.books.toml │ │ │ ├── shield_of_arrav.items.toml │ │ │ └── shield_of_arrav.objs.toml │ │ ├── swept_away │ │ │ ├── swept_away.items.toml │ │ │ ├── swept_away.npc-spawns.toml │ │ │ ├── swept_away.npcs.toml │ │ │ └── swept_away.teles.toml │ │ ├── the_knights_sword │ │ │ ├── the_knights_sword.items.toml │ │ │ ├── the_knights_sword.objs.toml │ │ │ └── the_knights_sword.varps.toml │ │ ├── the_restless_ghost │ │ │ ├── the_restless_ghost.anims.toml │ │ │ ├── the_restless_ghost.gfx.toml │ │ │ ├── the_restless_ghost.items.toml │ │ │ ├── the_restless_ghost.npcs.toml │ │ │ ├── the_restless_ghost.objs.toml │ │ │ ├── the_restless_ghost.sounds.toml │ │ │ ├── the_restless_ghost.varbits.toml │ │ │ └── the_restless_ghost.varps.toml │ │ ├── unstable_foundations │ │ │ ├── unstable_foundations.books.toml │ │ │ ├── unstable_foundations.ifaces.toml │ │ │ ├── unstable_foundations.items.toml │ │ │ ├── unstable_foundations.npc-spawns.toml │ │ │ ├── unstable_foundations.npcs.toml │ │ │ ├── unstable_foundations.teles.toml │ │ │ └── unstable_foundations.varps.toml │ │ └── vampyre_slayer │ │ │ ├── vampyre_slayer.items.toml │ │ │ └── vampyre_slayer.npcs.toml │ ├── members │ │ ├── a_souls_bane │ │ │ ├── a_souls_bane.items.toml │ │ │ └── a_souls_bane.npcs.toml │ │ ├── a_tail_of_two_cats │ │ │ └── a_tail_of_two_cats.items.toml │ │ ├── a_void_dance │ │ │ ├── a_void_dance.items.toml │ │ │ └── void_dance.varbits.toml │ │ ├── all_fired_up │ │ │ └── all_fired_up.items.toml │ │ ├── animal_magnetism │ │ │ ├── animal_magnetism.items.toml │ │ │ └── animal_magnetism.jingles.toml │ │ ├── another_slice_of_ham │ │ │ ├── another_slice_of_ham.items.toml │ │ │ └── another_slice_of_ham.npcs.toml │ │ ├── as_a_first_resort │ │ │ ├── as_a_first_resort.items.toml │ │ │ ├── as_a_first_resort.npc-spawns.toml │ │ │ └── as_a_first_resort.npcs.toml │ │ ├── back_to_my_roots │ │ │ └── back_to_my_roots.items.toml │ │ ├── between_a_rock │ │ │ ├── between_a_rock.items.toml │ │ │ ├── between_a_rock.jingles.toml │ │ │ └── between_a_rock.npcs.toml │ │ ├── big_chompy_bird_hunting │ │ │ ├── big_chompy_bird_hunting.anims.toml │ │ │ ├── big_chompy_bird_hunting.drops.toml │ │ │ ├── big_chompy_bird_hunting.gfx.toml │ │ │ ├── big_chompy_bird_hunting.items.toml │ │ │ ├── big_chompy_bird_hunting.npcs.toml │ │ │ └── big_chompy_bird_hunting.sounds.toml │ │ ├── biohazard │ │ │ └── biohazard.items.toml │ │ ├── black_knights_fortress │ │ │ └── black_knights_fortress.items.toml │ │ ├── blood_runs_deep │ │ │ └── blood_runs_deep.items.toml │ │ ├── buyers_and_cellars │ │ │ └── buyers_and_cellars.items.toml │ │ ├── cabin_fever │ │ │ ├── cabin_fever.items.toml │ │ │ ├── cabin_fever.npc-spawns.toml │ │ │ └── cabin_fever.npcs.toml │ │ ├── catapult_construction │ │ │ └── catapult_construction.items.toml │ │ ├── chosen_commander │ │ │ ├── chosen_commander.items.toml │ │ │ ├── zanik_cave │ │ │ │ ├── zanik_cave.npc-spawns.toml │ │ │ │ └── zanik_cave.npcs.toml │ │ │ └── zaniks_lab │ │ │ │ ├── zaniks_lab.npc-spawns.toml │ │ │ │ └── zaniks_lab.npcs.toml │ │ ├── clock_tower │ │ │ ├── clock_tower.items.toml │ │ │ ├── clock_tower_dungeon.item-spawns.toml │ │ │ ├── clock_tower_dungeon.npc-spawns.toml │ │ │ └── clock_tower_dungeon.npcs.toml │ │ ├── cold_war │ │ │ ├── cold_war.items.toml │ │ │ └── cold_war.jingles.toml │ │ ├── contact │ │ │ ├── contact.items.toml │ │ │ └── contact.npcs.toml │ │ ├── creature_of_fenkenstrain │ │ │ └── creature_of_fenkenstrain.items.toml │ │ ├── curse_of_arrav │ │ │ └── curse_of_arrav.items.toml │ │ ├── darkness_of_hallowvale │ │ │ └── darkness_of_hallowvale.items.toml │ │ ├── dealing_with_scabaras │ │ │ └── dealing_with_scabaras.items.toml │ │ ├── death_plateau │ │ │ ├── death_plateau.items.toml │ │ │ └── death_plateau.jingles.toml │ │ ├── death_to_the_dorgeshuun │ │ │ ├── death_to_the_dorgeshuun.items.toml │ │ │ └── death_to_the_dorgeshuun.jingles.toml │ │ ├── defender_of_varrock │ │ │ ├── defender_of_varrock.items.toml │ │ │ ├── defender_of_varrock.npc-spawns.toml │ │ │ └── defender_of_varrock.npcs.toml │ │ ├── desert_treasure │ │ │ ├── desert_treasure.areas.toml │ │ │ ├── desert_treasure.items.toml │ │ │ ├── desert_treasure.npcs.toml │ │ │ ├── shadow_dungeon.drops.toml │ │ │ ├── shadow_dungeon.npc-spawns.toml │ │ │ └── shadow_dungeon.npcs.toml │ │ ├── devious_minds │ │ │ └── devious_minds.items.toml │ │ ├── do_no_evil │ │ │ └── do_no_evil.items.toml │ │ ├── dream_mentor │ │ │ ├── dream_mentor.items.toml │ │ │ └── dream_mentor.npcs.toml │ │ ├── druidic_ritual │ │ │ ├── druidic_ritual.items.toml │ │ │ ├── druidic_ritual.objs.toml │ │ │ └── druidic_ritual.varps.toml │ │ ├── dwarf_cannon │ │ │ ├── dwarf_cannon.items.toml │ │ │ ├── dwarven_outpost.item-spawns.toml │ │ │ ├── dwarven_outpost.npc-spawns.toml │ │ │ └── dwarven_outpost.npcs.toml │ │ ├── eadgars_ruse │ │ │ └── eadgars_ruse.items.toml │ │ ├── eagles_peak │ │ │ ├── eagels_peak.item-spawns.toml │ │ │ ├── eagels_peak.npc-spawns.toml │ │ │ ├── eagels_peak.npcs.toml │ │ │ ├── eagles_eyrie │ │ │ │ ├── eagles_eyrie.npc-spawns.toml │ │ │ │ └── eagles_eyrie.npcs.toml │ │ │ ├── eagles_peak.items.toml │ │ │ └── eagles_peak.objs.toml │ │ ├── elemental_workshop_1 │ │ │ └── elemental_workshop_1.items.toml │ │ ├── elemental_workshop_2 │ │ │ └── elemental_workshop_2.items.toml │ │ ├── elemental_workshop_3 │ │ │ └── elemental_workshop_3.items.toml │ │ ├── enakhras_lament │ │ │ └── enakhras_lament.items.toml │ │ ├── enlightened_journey │ │ │ ├── enlightened_journey.items.toml │ │ │ └── enlightened_journey.jingles.toml │ │ ├── eyes_of_glouphrie │ │ │ ├── battlefield │ │ │ │ ├── eyes_of_glouphrie_battlefield.npc-spawns.toml │ │ │ │ └── eyes_of_glouphrie_battlefield.npcs.toml │ │ │ ├── eyes_of_glouphrie.invs.toml │ │ │ └── eyes_of_glouphrie.items.toml │ │ ├── fairy_tale_i │ │ │ ├── fairy_tale.i.vars.toml │ │ │ ├── fairy_tale_i.drops.toml │ │ │ ├── fairy_tale_i.items.toml │ │ │ ├── fairy_tale_i.npc-spawns.toml │ │ │ └── fairy_tale_i.npcs.toml │ │ ├── fairy_tale_ii │ │ │ ├── fairy_hq │ │ │ │ ├── fairy_hq.npc-spawns.toml │ │ │ │ └── fairy_hq.npcs.toml │ │ │ ├── fairy_ring │ │ │ │ ├── fairy_ring.anims.toml │ │ │ │ ├── fairy_ring.gfx.toml │ │ │ │ ├── fairy_ring.ifaces.toml │ │ │ │ ├── fairy_ring.objs.toml │ │ │ │ ├── fairy_ring.varbits.toml │ │ │ │ ├── fairy_ring.vars.toml │ │ │ │ └── fairy_ring_codes.toml │ │ │ ├── fairy_tale.ii.vars.toml │ │ │ ├── fairy_tale_ii.items.toml │ │ │ └── fairy_tale_ii.jingles.toml │ │ ├── fairy_tale_iii │ │ │ ├── fairy_tale.iii.vars.toml │ │ │ ├── fairy_tale_iii.gfx.toml │ │ │ ├── fairy_tale_iii.items.toml │ │ │ └── orks_rift │ │ │ │ ├── orks_rift.npc-spawns.toml │ │ │ │ └── orks_rift.npcs.toml │ │ ├── family_crest │ │ │ ├── family_crest.items.toml │ │ │ └── family_crest.npcs.toml │ │ ├── fight_arena │ │ │ ├── fight_arena.drops.toml │ │ │ ├── fight_arena.items.toml │ │ │ └── fight_arena.npcs.toml │ │ ├── fishing_contest │ │ │ └── fishing_contest.items.toml │ │ ├── forgettable_tale │ │ │ ├── forgettable_tale.items.toml │ │ │ └── forgettable_tale.jingles.toml │ │ ├── forgiveness_of_a_chaos_dwarf │ │ │ └── forgiveness_of_a_chaos_dwarf.items.toml │ │ ├── fremennik_isles │ │ │ ├── fremennik_isles.items.toml │ │ │ ├── fremennik_isles.jingles.toml │ │ │ └── fremennik_isles.npcs.toml │ │ ├── fremennik_trials │ │ │ ├── fremennik_trials.items.toml │ │ │ ├── fremennik_trials.jingles.toml │ │ │ └── fremennik_trials.npcs.toml │ │ ├── fur_n_seek │ │ │ └── fur_n_seek.items.toml │ │ ├── garden_of_tranquillity │ │ │ └── garden_of_tranquillity.items.toml │ │ ├── gertrudes_cat │ │ │ ├── gertrudes_cat.invs.toml │ │ │ └── gertrudes_cat.items.toml │ │ ├── ghosts_ahoy │ │ │ ├── ghosts_ahoy.drops.toml │ │ │ ├── ghosts_ahoy.items.toml │ │ │ ├── ghosts_ahoy.npcs.toml │ │ │ └── ghosts_ahoy.objs.toml │ │ ├── glorious_memories │ │ │ └── glorious_memories.items.toml │ │ ├── great_brain_robbery │ │ │ ├── great_brain_robbery.items.toml │ │ │ ├── great_brain_robbery.jingles.toml │ │ │ └── great_brain_robbery.npcs.toml │ │ ├── grim_tales │ │ │ ├── grim_tales.drops.toml │ │ │ ├── grim_tales.items.toml │ │ │ ├── grim_tales.jingles.toml │ │ │ └── grim_tales.npcs.toml │ │ ├── haunted_mine │ │ │ ├── abandoned_mine.drops.toml │ │ │ ├── abandoned_mine.item-spawns.toml │ │ │ ├── abandoned_mine.npc-spawns.toml │ │ │ ├── abandoned_mine.npcs.toml │ │ │ ├── haunted_mine.areas.toml │ │ │ ├── haunted_mine.items.toml │ │ │ ├── haunted_mine.npc-spawns.toml │ │ │ └── haunted_mine.npcs.toml │ │ ├── hazeel_cult │ │ │ └── hazeel_cult.items.toml │ │ ├── heroes_quest │ │ │ └── heroes_quest.items.toml │ │ ├── holy_grail │ │ │ ├── holy_grail.items.toml │ │ │ └── holy_grail.npcs.toml │ │ ├── horror_from_the_deep │ │ │ └── horror_from_the_deep.items.toml │ │ ├── hunt_for_red_raktuber │ │ │ ├── desert_island │ │ │ │ ├── desert_island.npc-spawns.toml │ │ │ │ └── desert_island.npcs.toml │ │ │ ├── hunt_for_red_raktuber.items.toml │ │ │ ├── red_raktuber.npc-spawns.toml │ │ │ └── red_raktuber.npcs.toml │ │ ├── icthlarins_little_helper │ │ │ ├── icthlarins_little_helper.drops.toml │ │ │ ├── icthlarins_little_helper.items.toml │ │ │ └── icthlarins_little_helper.npcs.toml │ │ ├── in_aid_of_the_myreque │ │ │ ├── in_aid_of_the_myreque.items.toml │ │ │ └── in_aid_of_the_myreque.npcs.toml │ │ ├── in_pyre_need │ │ │ └── in_pyre_need.items.toml │ │ ├── in_search_of_the_myreque │ │ │ ├── in_search_of_the_myreque.npc-spawns.toml │ │ │ └── in_search_of_the_myreque.npcs.toml │ │ ├── jungle_potion │ │ │ └── jungle_potion.items.toml │ │ ├── kenniths_concerns │ │ │ └── kenniths_concerns.items.toml │ │ ├── king_of_the_dwarves │ │ │ └── king_of_the_dwarves.items.toml │ │ ├── kings_ransom │ │ │ ├── kings_ransom.items.toml │ │ │ └── kings_ransom.jingles.toml │ │ ├── land_of_the_goblins │ │ │ └── land_of_the_goblins.items.toml │ │ ├── legacy_of_seergaze │ │ │ └── legacy_of_seergaze.items.toml │ │ ├── legends_quest │ │ │ ├── legends_quest.items.toml │ │ │ ├── legends_quest.npcs.toml │ │ │ └── viyeldi_cave.npc-spawns.toml │ │ ├── lost_city │ │ │ ├── lost_city.drops.toml │ │ │ ├── lost_city.items.toml │ │ │ └── lost_city.npcs.toml │ │ ├── love_story │ │ │ └── love_story.items.toml │ │ ├── lunar_diplomacy │ │ │ ├── lunar_diplomacy.items.toml │ │ │ ├── lunar_diplomacy.jingles.toml │ │ │ └── lunar_diplomacy.npcs.toml │ │ ├── making_history │ │ │ └── making_history.items.toml │ │ ├── meeting_history │ │ │ ├── meeting_history.items.toml │ │ │ ├── meeting_history.npc-spawns.toml │ │ │ └── meeting_history.npcs.toml │ │ ├── merlins_crystal │ │ │ ├── merlins_crystal.items.toml │ │ │ └── merlins_crystal.npcs.toml │ │ ├── missing_my_mummy │ │ │ └── missing_my_mummy.items.toml │ │ ├── monkey_madness │ │ │ ├── gnome_glider_handle │ │ │ │ ├── gnome_glider_handle.npc-spawns.toml │ │ │ │ └── gnome_glider_handle.npcs.toml │ │ │ ├── gnome_glider_hangar.item-spawns.toml │ │ │ ├── gnome_glider_hangar.npc-spawns.toml │ │ │ ├── gnome_glider_hangar.teles.toml │ │ │ ├── monkey_madness.items.toml │ │ │ ├── monkey_madness.jingles.toml │ │ │ ├── monkey_madness.npcs.toml │ │ │ └── monkey_madness.sounds.toml │ │ ├── monks_friend │ │ │ └── monks_friend.items.toml │ │ ├── mountain_daughter │ │ │ ├── mountain_daughter.items.toml │ │ │ └── mountain_daughter.jingles.toml │ │ ├── mournings_end_part_1 │ │ │ └── mournings_end_part_1.items.toml │ │ ├── mournings_end_part_2 │ │ │ ├── mournings_end_part_2.ifaces.toml │ │ │ ├── mournings_end_part_2.items.toml │ │ │ ├── mournings_end_part_2.jingles.toml │ │ │ ├── mournings_end_part_2.npc-spawns.toml │ │ │ ├── mournings_end_part_2.npcs.toml │ │ │ └── mournings_end_part_2.teles.toml │ │ ├── murder_mystery │ │ │ ├── murder_mystery.items.toml │ │ │ └── murder_mystery.objs.toml │ │ ├── my_arms_big_adventure │ │ │ ├── captain_barnabys_ship │ │ │ │ ├── captain_barnabys_ship.npc-spawns.toml │ │ │ │ └── captain_barnabys_ship.npcs.toml │ │ │ ├── my_arms_big_adventure.gfx.toml │ │ │ ├── my_arms_big_adventure.items.toml │ │ │ └── my_arms_big_adventure.npcs.toml │ │ ├── nature_spirit │ │ │ ├── nature_spirit.item-spawns.toml │ │ │ └── nature_spirit.items.toml │ │ ├── nomads_requiem │ │ │ └── nomads_requiem.items.toml │ │ ├── observatory_quest │ │ │ ├── dungeon │ │ │ │ ├── observatory_dungeon.npc-spawns.toml │ │ │ │ └── observatory_dungeon.npcs.toml │ │ │ ├── observatory.item-spawns.toml │ │ │ ├── observatory.npc-spawns.toml │ │ │ ├── observatory.npcs.toml │ │ │ ├── observatory_dungeon.item-spawns.toml │ │ │ └── observatory_quest.items.toml │ │ ├── olafs_quest │ │ │ ├── olafs_quest.items.toml │ │ │ └── olafs_quest.npcs.toml │ │ ├── one_small_favour │ │ │ ├── one_small_favour.areas.toml │ │ │ ├── one_small_favour.items.toml │ │ │ └── one_small_favour.npcs.toml │ │ ├── path_of_glouphrie │ │ │ └── path_of_glouphrie.items.toml │ │ ├── perils_of_ice_mountain │ │ │ └── perils_of_ice_mountain.items.toml │ │ ├── pirates_treasure │ │ │ └── pirates_treasure.items.toml │ │ ├── plague_city │ │ │ ├── plague_city.anims.toml │ │ │ ├── plague_city.items.toml │ │ │ ├── plague_city.npcs.toml │ │ │ ├── plague_city.objs.toml │ │ │ ├── plague_city.sounds.toml │ │ │ ├── plague_city.teles.toml │ │ │ ├── plague_city.varbits.toml │ │ │ └── plague_city.varps.toml │ │ ├── priest_in_peril │ │ │ ├── priest_in_peril.items.toml │ │ │ └── priest_in_peril.npcs.toml │ │ ├── quiet_before_the_swarm │ │ │ ├── quiet_before_the_swarm.gfx.toml │ │ │ ├── quiet_before_the_swarm.items.toml │ │ │ └── void_knight_ship_battle │ │ │ │ └── void_knight_ship_battle.npc-spawns.toml │ │ ├── rag_and_bone_man_1 │ │ │ └── rag_and_bone_man_1.items.toml │ │ ├── ratcatchers │ │ │ ├── rat_catchers.npc-spawns.toml │ │ │ ├── rat_catchers.npcs.toml │ │ │ ├── rat_pits.npc-spawns.toml │ │ │ ├── rat_pits.npcs.toml │ │ │ ├── rat_pits.teles.toml │ │ │ ├── ratcatchers.items.toml │ │ │ └── ratcatchers.jingles.toml │ │ ├── recipe_for_disaster │ │ │ ├── recipe_for_disaster.drops.toml │ │ │ ├── recipe_for_disaster.ifaces.toml │ │ │ ├── recipe_for_disaster.invs.toml │ │ │ ├── recipe_for_disaster.items.toml │ │ │ ├── recipe_for_disaster.jingles.toml │ │ │ ├── recipe_for_disaster.npc-spawns.toml │ │ │ └── recipe_for_disaster.npcs.toml │ │ ├── recruitment_drive │ │ │ ├── recruitment_drive.items.toml │ │ │ └── recruitment_drive.jingles.toml │ │ ├── regicide │ │ │ └── regicide.items.toml │ │ ├── rocking_out │ │ │ ├── battle_of_the_archipelago │ │ │ │ ├── battle_of_the_archipelago.npc-spawns.toml │ │ │ │ └── battle_of_the_archipelago.npcs.toml │ │ │ └── rocking_out.items.toml │ │ ├── roving_elves │ │ │ └── roving_elves.items.toml │ │ ├── royal_trouble │ │ │ ├── royal_trouble.drops.toml │ │ │ ├── royal_trouble.items.toml │ │ │ └── royal_trouble.npcs.toml │ │ ├── rum_deal │ │ │ ├── braindeath_island.item-spawns.toml │ │ │ ├── rum_deal.gfx.toml │ │ │ ├── rum_deal.items.toml │ │ │ └── rum_deal.npcs.toml │ │ ├── rune_mechanics │ │ │ ├── rune_mechanics.items.toml │ │ │ ├── rune_mechanics.npc-spawns.toml │ │ │ └── rune_mechanics.npcs.toml │ │ ├── rune_mysteries │ │ │ ├── rune_mysteries.items.toml │ │ │ ├── rune_mysteries.objs.toml │ │ │ └── rune_mysteries.varps.toml │ │ ├── scorpion_catcher │ │ │ └── scorpion_catcher.items.toml │ │ ├── sea_slug │ │ │ ├── sea_slug.gfx.toml │ │ │ └── sea_slug.items.toml │ │ ├── shades_of_mort'ton │ │ │ └── shades_of_mort'ton.items.toml │ │ ├── shadow_of_the_storm │ │ │ └── shadow_of_the_storm.items.toml │ │ ├── sheep_herder │ │ │ └── sheep_herder.items.toml │ │ ├── shilo_village │ │ │ ├── rashiliyias_tomb.npc-spawns.toml │ │ │ └── shilo_village.items.toml │ │ ├── slug_menace │ │ │ ├── slug_menace.items.toml │ │ │ └── slug_menace.npcs.toml │ │ ├── smoking_kills │ │ │ └── smoking_kills.items.toml │ │ ├── spirit_of_summer │ │ │ ├── spirit_of_summer.areas.toml │ │ │ └── spirit_of_summer.items.toml │ │ ├── spirits_of_the_elid │ │ │ ├── spirits_of_the_elid.items.toml │ │ │ └── spirits_of_the_elid.npcs.toml │ │ ├── summers_end │ │ │ └── summers_end.items.toml │ │ ├── swan_song │ │ │ ├── swan_song.drops.toml │ │ │ ├── swan_song.items.toml │ │ │ └── swan_song.npcs.toml │ │ ├── tai_bwo_wannai_trio │ │ │ └── tai_bwo_wannai_trio.items.toml │ │ ├── tale_of_the_muspah │ │ │ └── tale_of_the_muspah.items.toml │ │ ├── tears_of_guthix │ │ │ ├── tears_of_guthix.items.toml │ │ │ ├── tears_of_guthix.jingles.toml │ │ │ ├── tears_of_guthix_cavern.npc-spawns.toml │ │ │ └── tears_of_guthix_cavern.npcs.toml │ │ ├── temple_at_senntisten │ │ │ └── temple_at_senntisten.items.toml │ │ ├── temple_of_ikov │ │ │ ├── temple_of_ikov.items.toml │ │ │ └── temple_of_ikov.npc-spawns.toml │ │ ├── the_dig_site │ │ │ └── the_dig_site.items.toml │ │ ├── the_feud │ │ │ ├── the_feud.drops.toml │ │ │ ├── the_feud.items.toml │ │ │ ├── the_feud.jingles.toml │ │ │ └── the_feud.npcs.toml │ │ ├── the_giant_dwarf │ │ │ └── the_giant_dwarf.items.toml │ │ ├── the_golem │ │ │ └── the_golem.items.toml │ │ ├── the_grand_tree │ │ │ ├── the_grand_tree.anims.toml │ │ │ ├── the_grand_tree.gfx.toml │ │ │ ├── the_grand_tree.ifaces.toml │ │ │ ├── the_grand_tree.items.toml │ │ │ ├── the_grand_tree.npcs.toml │ │ │ ├── the_grand_tree.objs.toml │ │ │ ├── the_grand_tree.varbits.toml │ │ │ └── the_grand_tree.varps.toml │ │ ├── the_lost_tribe │ │ │ └── the_lost_tribe.items.toml │ │ ├── throne_of_miscellania │ │ │ └── throne_of_miscellania.items.toml │ │ ├── toktz_ket_dill │ │ │ └── toktz_ket_dill.items.toml │ │ ├── tourist_trap │ │ │ └── tourist_trap.items.toml │ │ ├── tower_of_life │ │ │ ├── tower_of_life.anims.toml │ │ │ ├── tower_of_life.drops.toml │ │ │ ├── tower_of_life.items.toml │ │ │ └── tower_of_life.npcs.toml │ │ ├── tree_gnome_village │ │ │ └── tree_gnome_village.items.toml │ │ ├── tribal_totem │ │ │ └── tribal_totem.items.toml │ │ ├── troll_romance │ │ │ └── troll_romance.items.toml │ │ ├── troll_stronghold │ │ │ ├── troll_stronghold.items.toml │ │ │ └── troll_stronghold.npcs.toml │ │ ├── underground_pass │ │ │ └── underground_pass.items.toml │ │ ├── void_stares_back │ │ │ ├── vallutas_den │ │ │ │ ├── vallutas_den.npc-spawns.toml │ │ │ │ └── vallutas_den.npcs.toml │ │ │ └── void_stares_back.items.toml │ │ ├── wanted │ │ │ └── wanted.items.toml │ │ ├── watchtower_quest │ │ │ ├── watchtower.jingles.toml │ │ │ └── watchtower_quest.items.toml │ │ ├── waterfall_quest │ │ │ ├── glarials_tomb.npc-spawns.toml │ │ │ ├── waterfall_quest.items.toml │ │ │ └── waterfall_quest.npcs.toml │ │ ├── what_lies_below │ │ │ ├── what_lies_below.items.toml │ │ │ └── what_lies_below.jingles.toml │ │ ├── while_guthix_sleeps │ │ │ ├── ancient_guthix_temple │ │ │ │ ├── ancient_guthix_temple.npc-spawns.toml │ │ │ │ └── ancient_guthix_temple.npcs.toml │ │ │ ├── black_knights_catacombs │ │ │ │ ├── black_knights_catacombs.npc-spawns.toml │ │ │ │ └── black_knights_catacombs.npcs.toml │ │ │ ├── guthixian_temple │ │ │ │ ├── guthixian_temple.npc-spawns.toml │ │ │ │ └── guthixian_temple.npcs.toml │ │ │ ├── luciens_camp │ │ │ │ ├── luciens_camp.npc-spawns.toml │ │ │ │ └── luciens_camp.npcs.toml │ │ │ ├── while_guthix_sleeps.gfx.toml │ │ │ ├── while_guthix_sleeps.items.toml │ │ │ ├── while_guthix_sleeps.npc-spawns.toml │ │ │ └── while_guthix_sleeps.npcs.toml │ │ ├── witches_house │ │ │ ├── witches_house.items.toml │ │ │ └── witches_house.npcs.toml │ │ ├── witches_potion │ │ │ └── witches_potion.items.toml │ │ ├── within_the_light │ │ │ └── within_the_light.items.toml │ │ └── zogre_flesh_eaters │ │ │ ├── zogre_flesh_eaters.drops.toml │ │ │ ├── zogre_flesh_eaters.items.toml │ │ │ └── zogre_flesh_eaters.npcs.toml │ ├── mini │ │ ├── a_guild_of_our_own.items.toml │ │ ├── bar_crawl │ │ │ ├── bar_crawl.items.toml │ │ │ ├── bar_crawl.varbits.toml │ │ │ ├── bar_crawl.varps.toml │ │ │ └── bar_crawl.vars.toml │ │ ├── barbarian_training.items.toml │ │ ├── curse_of_the_empty_lord.items.toml │ │ ├── enter_the_abyss │ │ │ ├── enter_the_abyss.items.toml │ │ │ ├── enter_the_abyss.shops.toml │ │ │ ├── enter_the_abyss.varbits.toml │ │ │ └── enter_the_abyss.varps.toml │ │ ├── from_tiny_acorns.items.toml │ │ ├── generals_shadow.items.toml │ │ ├── lair_of_tarn_razorlor.items.toml │ │ ├── lost_her_marbles.items.toml │ │ ├── mage_arena.items.toml │ │ ├── one_foot_in_the_grave.items.toml │ │ ├── rogue_trader.items.toml │ │ ├── sheep_shearer │ │ │ ├── sheep_shearer.items.toml │ │ │ ├── sheep_shearer.varps.toml │ │ │ └── sheep_shearer.vars.toml │ │ └── wise_old_man_tasks.items.toml │ ├── quest.ifaces.toml │ ├── quest.jingles.toml │ ├── quest.varbits.toml │ ├── quest.varps.toml │ └── quests.toml ├── skill │ ├── agility │ │ ├── agility.jingles.toml │ │ ├── agility.sounds.toml │ │ ├── agility.vars.toml │ │ ├── course │ │ │ ├── advanced_agility.items.toml │ │ │ ├── ape_atoll_agility.anims.toml │ │ │ ├── barbarian_agility.anims.toml │ │ │ ├── brimhaven_agility_arena.items.toml │ │ │ ├── course_obstacles.objs.toml │ │ │ ├── dorgesh_kaan_agility.items.toml │ │ │ ├── gnome_agility.anims.toml │ │ │ ├── pyramid_agility.items.toml │ │ │ └── werewolf_agility_course.items.toml │ │ └── shortcut │ │ │ ├── shortcut.anims.toml │ │ │ ├── shortcut.gfx.toml │ │ │ ├── shortcut.obj-spawns.toml │ │ │ ├── shortcut.objs.toml │ │ │ ├── shortcut.sounds.toml │ │ │ └── shortcut.teles.toml │ ├── construction │ │ ├── construction.invs.toml │ │ ├── construction.items.toml │ │ ├── construction.jingles.toml │ │ └── construction.npcs.toml │ ├── cooking │ │ ├── brewing.items.toml │ │ ├── cooking.anims.toml │ │ ├── cooking.items.toml │ │ ├── cooking.recipes.toml │ │ ├── pie.items.toml │ │ └── pie.recipes.toml │ ├── crafting │ │ ├── amulet_stringing.recipes.toml │ │ ├── armour.recipes.toml │ │ ├── battlestaff.recipes.toml │ │ ├── colouring.recipes.toml │ │ ├── crafting.anims.toml │ │ ├── crafting.ifaces.toml │ │ ├── crafting.items.toml │ │ ├── crafting.sounds.toml │ │ ├── crafting.vars.toml │ │ ├── gem.recipes.toml │ │ ├── glassblowing.recipes.toml │ │ ├── hide.items.toml │ │ ├── leather.recipes.toml │ │ └── pottery.recipes.toml │ ├── dungeoneering │ │ ├── dungeoneering.gfx.toml │ │ ├── dungeoneering.ifaces.toml │ │ ├── dungeoneering.items.toml │ │ ├── dungeoneering.npc-spawns.toml │ │ ├── dungeoneering.npcs.toml │ │ ├── dungeoneering.teles.toml │ │ ├── dungeoneering.varbits.toml │ │ ├── dungeoneering.varcs.toml │ │ ├── dungeoneering.vars.toml │ │ ├── dungeoneering_arrows.gfx.toml │ │ ├── dungeoneering_hatchet.anims.toml │ │ ├── dungeoneering_pickaxe.anims.toml │ │ └── resource_dungeons │ │ │ └── resource_dungeons.npc-spawns.toml │ ├── farming │ │ ├── basket.items.toml │ │ ├── farming.anims.toml │ │ ├── farming.items.toml │ │ ├── farming.jingles.toml │ │ ├── plant.items.toml │ │ ├── produce.items.toml │ │ ├── seed.items.toml │ │ └── vegetable_sack.recipes.toml │ ├── firemaking │ │ ├── firemaking.anims.toml │ │ ├── firemaking.items.toml │ │ ├── light_source.recipes.toml │ │ └── log.items.toml │ ├── fishing │ │ ├── fish.items.toml │ │ ├── fishing.anims.toml │ │ ├── fishing.items.toml │ │ ├── fishing.recipes.toml │ │ └── fishing_spots.npcs.toml │ ├── fletching │ │ ├── arrowtip.items.toml │ │ ├── arrowtip.recipes.toml │ │ ├── bolt_tip.items.toml │ │ ├── bolt_tip.recipes.toml │ │ ├── bow.recipes.toml │ │ ├── crossbow.recipes.toml │ │ ├── fletching.anims.toml │ │ └── fletching.items.toml │ ├── herblore │ │ ├── barbarian_mix.items.toml │ │ ├── barbarian_mix.recipes.toml │ │ ├── barbarian_mix_decant.recipes.toml │ │ ├── crushing.recipes.toml │ │ ├── herblore.anims.toml │ │ ├── herblore.gfx.toml │ │ ├── herblore.items.toml │ │ ├── herblore.recipes.toml │ │ ├── herblore.varbits.toml │ │ ├── herblore.vars.toml │ │ ├── juju_potion.recipes.toml │ │ ├── juju_potion_unfinished.recipes.toml │ │ ├── potion.items.toml │ │ ├── potion.recipes.toml │ │ ├── potion_decant.recipes.toml │ │ ├── potion_unfinished.recipes.toml │ │ └── swamp_tar.recipes.toml │ ├── hunter │ │ ├── hunter.items.toml │ │ └── hunting.gfx.toml │ ├── magic │ │ ├── jewellery │ │ │ └── jewellery.vars.toml │ │ ├── magic.anims.toml │ │ ├── magic.gfx.toml │ │ ├── magic.ifaces.toml │ │ ├── magic.items.toml │ │ ├── magic.sounds.toml │ │ ├── magic.varbits.toml │ │ ├── magic.vars.toml │ │ ├── magic_weapon.items.toml │ │ ├── robe.items.toml │ │ ├── runes.items.toml │ │ ├── spellbook │ │ │ ├── spellbook.ifaces.toml │ │ │ ├── spellbook.varbits.toml │ │ │ └── spellbook.varps.toml │ │ ├── spells.toml │ │ └── teleport │ │ │ ├── teleport.anims.toml │ │ │ ├── teleport.gfx.toml │ │ │ └── teleport.sounds.toml │ ├── melee │ │ ├── melee.anims.toml │ │ ├── melee_armour.items.toml │ │ ├── melee_weapon.items.toml │ │ └── weapon.vars.toml │ ├── mining │ │ ├── mining.vars.toml │ │ ├── ore.items.toml │ │ ├── pickaxe.anims.toml │ │ ├── pickaxe.items.toml │ │ └── rocks.objs.toml │ ├── prayer │ │ ├── altar.objs.toml │ │ ├── bone.items.toml │ │ ├── curses.gfx.toml │ │ ├── prayer.anims.toml │ │ ├── prayer.gfx.toml │ │ ├── prayer.ifaces.toml │ │ ├── prayer.sounds.toml │ │ ├── prayer.varbits.toml │ │ ├── prayer.varcs.toml │ │ ├── prayer.varps.toml │ │ ├── prayer.vars.toml │ │ └── prayers.toml │ ├── range │ │ ├── ammo_groups.toml │ │ ├── arrow.items.toml │ │ ├── arrows.gfx.toml │ │ ├── avas.vars.toml │ │ ├── bolt.items.toml │ │ ├── bolt_special.sounds.toml │ │ ├── bolts.gfx.toml │ │ ├── bow.items.toml │ │ ├── crossbow.items.toml │ │ ├── dart.items.toml │ │ ├── darts.gfx.toml │ │ ├── hand_cannon.gfx.toml │ │ ├── javelin.items.toml │ │ ├── javelins.gfx.toml │ │ ├── ranged_armour.items.toml │ │ ├── throwing_axe.gfx.toml │ │ ├── throwing_axe.items.toml │ │ ├── throwing_knife.gfx.toml │ │ ├── throwing_knife.items.toml │ │ └── thrown.gfx.toml │ ├── runecrafting │ │ ├── runecrafting.anims.toml │ │ ├── runecrafting.areas.toml │ │ ├── runecrafting.gfx.toml │ │ ├── runecrafting.items.toml │ │ ├── runecrafting.npc-spawns.toml │ │ ├── runecrafting.sounds.toml │ │ ├── runecrafting.teles.toml │ │ ├── runecrafting.varbits.toml │ │ └── runecrafting_altars.objs.toml │ ├── skill.ifaces.toml │ ├── skill.jingles.toml │ ├── skill.strings.toml │ ├── skill.varps.toml │ ├── skillcape.items.toml │ ├── slayer │ │ ├── slayer.gfx.toml │ │ ├── slayer.ifaces.toml │ │ ├── slayer.items.toml │ │ ├── slayer.varbits.toml │ │ ├── slayer.varps.toml │ │ ├── slayer.vars.toml │ │ ├── slayer_challenge.items.toml │ │ └── turael.tasks.toml │ ├── smithing │ │ ├── anvils.objs.toml │ │ ├── bars.items.toml │ │ ├── smithing.anims.toml │ │ ├── smithing.gfx.toml │ │ ├── smithing.ifaces.toml │ │ ├── smithing.invs.toml │ │ ├── smithing.items.toml │ │ └── smithing.sounds.toml │ ├── summoning │ │ ├── summoning.anims.toml │ │ ├── summoning.ifaces.toml │ │ ├── summoning.items.toml │ │ ├── summoning.objs.toml │ │ └── summoning.teles.toml │ ├── thieving │ │ ├── pickpocket.drops.toml │ │ ├── thieving.anims.toml │ │ ├── thieving.items.toml │ │ └── thieving.sounds.toml │ └── woodcutting │ │ ├── birds_nest.drops.toml │ │ ├── hatchet.anims.toml │ │ ├── hatchet.items.toml │ │ ├── woodcutting.items.toml │ │ └── woodcutting.sounds.toml └── social │ ├── assist │ ├── assist.ifaces.toml │ ├── assist.varbits.toml │ └── assist.vars.toml │ ├── clan │ ├── clan.ifaces.toml │ ├── clan.varbits.toml │ ├── clan.varcs.toml │ ├── clan.vars.toml │ └── clan_chat.varps.toml │ ├── friend │ └── friend.ifaces.toml │ ├── ignore │ └── ignore.ifaces.toml │ ├── photo │ └── photo_booth.ifaces.toml │ ├── report │ └── report.ifaces.toml │ └── trade │ ├── exchange │ ├── grand_exchange.ifaces.toml │ ├── grand_exchange.items.toml │ ├── grand_exchange.jingles.toml │ ├── grand_exchange.npc-spawns.toml │ ├── grand_exchange.npcs.toml │ ├── grand_exchange.scripts.toml │ ├── grand_exchange.varcs.toml │ ├── grand_exchange.varps.toml │ └── grand_exchange.vars.toml │ ├── lend │ ├── lend.varbits.toml │ ├── lend.varps.toml │ ├── lend.vars.toml │ └── lent.items.toml │ ├── rare.items.toml │ ├── trade.ifaces.toml │ ├── trade.invs.toml │ ├── trade.strings.toml │ ├── trade.varcs.toml │ └── trade.varps.toml ├── database ├── build.gradle.kts └── src │ ├── main │ └── kotlin │ │ └── world │ │ └── gregs │ │ └── voidps │ │ └── storage │ │ ├── DatabaseStorage.kt │ │ └── Tables.kt │ └── test │ └── kotlin │ └── world │ └── gregs │ └── voidps │ └── storage │ ├── DatabaseStorageTest.kt │ ├── DatabaseTest.kt │ └── StorageTest.kt ├── docker-compose.yml ├── engine ├── build.gradle.kts └── src │ ├── main │ └── kotlin │ │ └── world │ │ └── gregs │ │ └── voidps │ │ └── engine │ │ ├── Contexts.kt │ │ ├── EngineModules.kt │ │ ├── GameLoop.kt │ │ ├── Koin.kt │ │ ├── Script.kt │ │ ├── TimedLoader.kt │ │ ├── client │ │ ├── EncodeExtensions.kt │ │ ├── PlayerAccountLoader.kt │ │ ├── command │ │ │ ├── Command.kt │ │ │ ├── CommandArgument.kt │ │ │ ├── CommandSignature.kt │ │ │ └── Commands.kt │ │ ├── instruction │ │ │ ├── InstructionHandler.kt │ │ │ ├── InstructionHandlers.kt │ │ │ ├── InstructionTask.kt │ │ │ ├── InterfaceHandler.kt │ │ │ └── handle │ │ │ │ ├── DialogueContinueHandler.kt │ │ │ │ ├── DialogueContinueKeyHandler.kt │ │ │ │ ├── DialogueItemContinueHandler.kt │ │ │ │ ├── ExecuteCommandHandler.kt │ │ │ │ ├── FloorItemOptionHandler.kt │ │ │ │ ├── InterfaceClosedHandler.kt │ │ │ │ ├── InterfaceOnFloorItemOptionHandler.kt │ │ │ │ ├── InterfaceOnInterfaceOptionHandler.kt │ │ │ │ ├── InterfaceOnNPCOptionHandler.kt │ │ │ │ ├── InterfaceOnObjectOptionHandler.kt │ │ │ │ ├── InterfaceOnPlayerOptionHandler.kt │ │ │ │ ├── InterfaceOptionHandler.kt │ │ │ │ ├── InterfaceSwitchHandler.kt │ │ │ │ ├── NPCOptionHandler.kt │ │ │ │ ├── ObjectOptionHandler.kt │ │ │ │ └── PlayerOptionHandler.kt │ │ ├── ui │ │ │ ├── InterfaceApi.kt │ │ │ ├── InterfaceOption.kt │ │ │ ├── InterfaceOptions.kt │ │ │ ├── Interfaces.kt │ │ │ ├── ItemOption.kt │ │ │ ├── chat │ │ │ │ ├── Colour.kt │ │ │ │ ├── Colours.kt │ │ │ │ └── Text.kt │ │ │ ├── dialogue │ │ │ │ └── Dialogues.kt │ │ │ └── menu │ │ │ │ └── InterfaceOptionSettings.kt │ │ ├── update │ │ │ ├── CharacterTask.kt │ │ │ ├── CharacterUpdateTask.kt │ │ │ ├── NPCTask.kt │ │ │ ├── PlayerTask.kt │ │ │ ├── batch │ │ │ │ └── ZoneBatchUpdates.kt │ │ │ ├── iterator │ │ │ │ ├── FireAndForgetIterator.kt │ │ │ │ ├── ParallelIterator.kt │ │ │ │ ├── SequentialIterator.kt │ │ │ │ └── TaskIterator.kt │ │ │ ├── npc │ │ │ │ ├── NPCResetTask.kt │ │ │ │ └── NPCUpdateTask.kt │ │ │ ├── player │ │ │ │ ├── PlayerResetTask.kt │ │ │ │ └── PlayerUpdateTask.kt │ │ │ └── view │ │ │ │ ├── PlayerTrackingSet.kt │ │ │ │ └── Viewport.kt │ │ └── variable │ │ │ ├── Clocks.kt │ │ │ ├── PlayerVariables.kt │ │ │ ├── VariableApi.kt │ │ │ ├── VariableBits.kt │ │ │ ├── VariableStore.kt │ │ │ ├── VariableValues.kt │ │ │ └── Variables.kt │ │ ├── data │ │ ├── AccountManager.kt │ │ ├── ConfigFiles.kt │ │ ├── PlayerSave.kt │ │ ├── SafeStorage.kt │ │ ├── SaveQueue.kt │ │ ├── Settings.kt │ │ ├── SettingsReload.kt │ │ ├── Storage.kt │ │ ├── config │ │ │ ├── AccountDefinition.kt │ │ │ ├── AmmoDefinition.kt │ │ │ ├── CategoryDefinition.kt │ │ │ ├── DiangoCodeDefinition.kt │ │ │ ├── GearDefinition.kt │ │ │ ├── HuntModeDefinition.kt │ │ │ ├── ItemOnItemDefinition.kt │ │ │ ├── JingleDefinition.kt │ │ │ ├── MidiDefinition.kt │ │ │ ├── ParameterDefinition.kt │ │ │ ├── PatrolDefinition.kt │ │ │ ├── PrayerDefinition.kt │ │ │ ├── RenderEmoteDefinition.kt │ │ │ ├── SlayerTaskDefinition.kt │ │ │ ├── SoundDefinition.kt │ │ │ ├── SpellDefinition.kt │ │ │ ├── VariableDefinition.kt │ │ │ ├── WeaponAnimationDefinition.kt │ │ │ └── WeaponStyleDefinition.kt │ │ ├── definition │ │ │ ├── AccountDefinitions.kt │ │ │ ├── AmmoDefinitions.kt │ │ │ ├── AnimationDefinitions.kt │ │ │ ├── AreaDefinition.kt │ │ │ ├── AreaDefinitions.kt │ │ │ ├── CanoeDefinitions.kt │ │ │ ├── CategoryDefinitions.kt │ │ │ ├── ClientScriptDefinitions.kt │ │ │ ├── DefinitionsDecoder.kt │ │ │ ├── DiangoCodeDefinitions.kt │ │ │ ├── EnumDefinitions.kt │ │ │ ├── FontDefinitions.kt │ │ │ ├── GearDefinitions.kt │ │ │ ├── GraphicDefinitions.kt │ │ │ ├── HuntModeDefinitions.kt │ │ │ ├── InterfaceDefinitions.kt │ │ │ ├── InventoryDefinitions.kt │ │ │ ├── ItemDefinitions.kt │ │ │ ├── ItemOnItemDefinitions.kt │ │ │ ├── JingleDefinitions.kt │ │ │ ├── MapDefinitions.kt │ │ │ ├── MidiDefinitions.kt │ │ │ ├── NPCDefinitions.kt │ │ │ ├── ObjectDefinitions.kt │ │ │ ├── ParameterDefinitions.kt │ │ │ ├── PatrolDefinitions.kt │ │ │ ├── PrayerDefinitions.kt │ │ │ ├── QuestDefinitions.kt │ │ │ ├── QuickChatPhraseDefinitions.kt │ │ │ ├── RenderEmoteDefinitions.kt │ │ │ ├── SlayerTaskDefinitions.kt │ │ │ ├── SoundDefinitions.kt │ │ │ ├── SpellDefinitions.kt │ │ │ ├── StructDefinitions.kt │ │ │ ├── VariableDefinitions.kt │ │ │ ├── WeaponAnimationDefinitions.kt │ │ │ ├── WeaponStyleDefinitions.kt │ │ │ └── data │ │ │ │ ├── Catch.kt │ │ │ │ ├── Cleaning.kt │ │ │ │ ├── Fire.kt │ │ │ │ ├── FletchBolts.kt │ │ │ │ ├── FletchDarts.kt │ │ │ │ ├── Fletching.kt │ │ │ │ ├── Jewellery.kt │ │ │ │ ├── LightSources.kt │ │ │ │ ├── Ore.kt │ │ │ │ ├── Pickable.kt │ │ │ │ ├── Pocket.kt │ │ │ │ ├── Pottery.kt │ │ │ │ ├── Rock.kt │ │ │ │ ├── Rune.kt │ │ │ │ ├── Silver.kt │ │ │ │ ├── Smelting.kt │ │ │ │ ├── Smithing.kt │ │ │ │ ├── Spinning.kt │ │ │ │ ├── Spot.kt │ │ │ │ ├── Tanning.kt │ │ │ │ ├── Tree.kt │ │ │ │ ├── Uncooked.kt │ │ │ │ └── Weaving.kt │ │ ├── exchange │ │ │ ├── Aggregate.kt │ │ │ ├── Claim.kt │ │ │ ├── ExchangeHistory.kt │ │ │ ├── ExchangeOffer.kt │ │ │ ├── OfferState.kt │ │ │ ├── OpenOffer.kt │ │ │ ├── OpenOffers.kt │ │ │ └── PriceHistory.kt │ │ └── file │ │ │ └── FileStorage.kt │ │ ├── entity │ │ ├── Approachable.kt │ │ ├── Despawn.kt │ │ ├── Entity.kt │ │ ├── Operation.kt │ │ ├── Spawn.kt │ │ ├── World.kt │ │ ├── character │ │ │ ├── Character.kt │ │ │ ├── CharacterMap.kt │ │ │ ├── CharacterSearch.kt │ │ │ ├── Death.kt │ │ │ ├── Sound.kt │ │ │ ├── Visuals.kt │ │ │ ├── mode │ │ │ │ ├── EmptyMode.kt │ │ │ │ ├── Face.kt │ │ │ │ ├── Follow.kt │ │ │ │ ├── Mode.kt │ │ │ │ ├── ModeType.kt │ │ │ │ ├── Patrol.kt │ │ │ │ ├── PauseMode.kt │ │ │ │ ├── Rest.kt │ │ │ │ ├── Retreat.kt │ │ │ │ ├── Wander.kt │ │ │ │ ├── combat │ │ │ │ │ ├── CombatApi.kt │ │ │ │ │ ├── CombatAttack.kt │ │ │ │ │ ├── CombatDamage.kt │ │ │ │ │ └── CombatMovement.kt │ │ │ │ ├── interact │ │ │ │ │ ├── Interact.kt │ │ │ │ │ ├── InterfaceOnFloorItemInteract.kt │ │ │ │ │ ├── InterfaceOnNPCInteract.kt │ │ │ │ │ ├── InterfaceOnObjectInteract.kt │ │ │ │ │ ├── ItemOnFloorItemInteract.kt │ │ │ │ │ ├── ItemOnNPCInteract.kt │ │ │ │ │ ├── ItemOnObjectInteract.kt │ │ │ │ │ ├── ItemOnPlayerInteract.kt │ │ │ │ │ ├── NPCOnFloorItemInteract.kt │ │ │ │ │ ├── NPCOnNPCInteract.kt │ │ │ │ │ ├── NPCOnObjectInteract.kt │ │ │ │ │ ├── NPCOnPlayerInteract.kt │ │ │ │ │ ├── PlayerOnFloorItemInteract.kt │ │ │ │ │ ├── PlayerOnNPCInteract.kt │ │ │ │ │ ├── PlayerOnObjectInteract.kt │ │ │ │ │ └── PlayerOnPlayerInteract.kt │ │ │ │ └── move │ │ │ │ │ ├── AreaQueue.kt │ │ │ │ │ ├── Moved.kt │ │ │ │ │ ├── Movement.kt │ │ │ │ │ ├── PathFinder.kt │ │ │ │ │ ├── Step.kt │ │ │ │ │ ├── Steps.kt │ │ │ │ │ └── target │ │ │ │ │ ├── CharacterTargetStrategy.kt │ │ │ │ │ ├── DefaultTargetStrategy.kt │ │ │ │ │ ├── FloorItemTargetStrategy.kt │ │ │ │ │ ├── FollowTargetStrategy.kt │ │ │ │ │ ├── ObjectTargetStrategy.kt │ │ │ │ │ ├── TargetStrategy.kt │ │ │ │ │ └── TileTargetStrategy.kt │ │ │ ├── move │ │ │ │ ├── Move.kt │ │ │ │ └── Teleport.kt │ │ │ ├── npc │ │ │ │ ├── NPC.kt │ │ │ │ ├── NPCLevels.kt │ │ │ │ ├── NPCMoveType.kt │ │ │ │ ├── NPCSpawns.kt │ │ │ │ ├── NPCVisuals.kt │ │ │ │ ├── NPCs.kt │ │ │ │ └── hunt │ │ │ │ │ ├── Hunt.kt │ │ │ │ │ └── Hunting.kt │ │ │ └── player │ │ │ │ ├── Player.kt │ │ │ │ ├── PlayerOptions.kt │ │ │ │ ├── PlayerRights.kt │ │ │ │ ├── PlayerVisuals.kt │ │ │ │ ├── Players.kt │ │ │ │ ├── Teleport.kt │ │ │ │ ├── chat │ │ │ │ ├── ChatType.kt │ │ │ │ ├── Messages.kt │ │ │ │ └── clan │ │ │ │ │ ├── Clan.kt │ │ │ │ │ └── ClanRank.kt │ │ │ │ ├── equip │ │ │ │ ├── AppearanceOverrides.kt │ │ │ │ ├── BodyParts.kt │ │ │ │ ├── EquipSlot.kt │ │ │ │ └── EquipType.kt │ │ │ │ ├── req │ │ │ │ └── Requests.kt │ │ │ │ └── skill │ │ │ │ ├── Skill.kt │ │ │ │ ├── Skills.kt │ │ │ │ ├── exp │ │ │ │ └── Experience.kt │ │ │ │ └── level │ │ │ │ ├── Interpolation.kt │ │ │ │ ├── Level.kt │ │ │ │ ├── Levels.kt │ │ │ │ └── PlayerLevels.kt │ │ ├── item │ │ │ ├── Item.kt │ │ │ ├── ItemEquipExtensions.kt │ │ │ ├── ItemKept.kt │ │ │ ├── ItemUse.kt │ │ │ ├── drop │ │ │ │ ├── Drop.kt │ │ │ │ ├── DropTable.kt │ │ │ │ ├── DropTables.kt │ │ │ │ ├── ItemDrop.kt │ │ │ │ └── TableType.kt │ │ │ └── floor │ │ │ │ ├── FloorItem.kt │ │ │ │ ├── FloorItemTracking.kt │ │ │ │ ├── FloorItems.kt │ │ │ │ ├── ItemSpawn.kt │ │ │ │ └── ItemSpawns.kt │ │ └── obj │ │ │ ├── GameObject.kt │ │ │ ├── GameObjectArrayMap.kt │ │ │ ├── GameObjectHashMap.kt │ │ │ ├── GameObjectMap.kt │ │ │ ├── GameObjectTimers.kt │ │ │ ├── GameObjects.kt │ │ │ ├── ObjectLayer.kt │ │ │ ├── ObjectShape.kt │ │ │ └── ObjectSpawns.kt │ │ ├── event │ │ ├── AuditLog.kt │ │ ├── Wildcard.kt │ │ └── Wildcards.kt │ │ ├── inv │ │ ├── Inventories.kt │ │ ├── Inventory.kt │ │ ├── InventoryApi.kt │ │ ├── InventoryOperations.kt │ │ ├── InventorySlotChanged.kt │ │ ├── ItemAdded.kt │ │ ├── ItemRemoved.kt │ │ ├── Items.kt │ │ ├── remove │ │ │ ├── DefaultItemAmountBounds.kt │ │ │ ├── ItemAmountBounds.kt │ │ │ ├── ItemIndexAmountBounds.kt │ │ │ └── ShopItemAmountBounds.kt │ │ ├── restrict │ │ │ ├── ItemRestrictionRule.kt │ │ │ ├── NoRestrictions.kt │ │ │ ├── ShopRestrictions.kt │ │ │ └── ValidItemRestriction.kt │ │ ├── stack │ │ │ ├── AlwaysStack.kt │ │ │ ├── ItemDependentStack.kt │ │ │ ├── ItemStackingRule.kt │ │ │ └── NeverStack.kt │ │ └── transact │ │ │ ├── ChangeManager.kt │ │ │ ├── StateManager.kt │ │ │ ├── Transaction.kt │ │ │ ├── TransactionController.kt │ │ │ ├── TransactionError.kt │ │ │ ├── TransactionOperations.kt │ │ │ └── operation │ │ │ ├── AddCharge.kt │ │ │ ├── AddChargeLimit.kt │ │ │ ├── AddItem.kt │ │ │ ├── AddItemLimit.kt │ │ │ ├── ClearCharge.kt │ │ │ ├── ClearItem.kt │ │ │ ├── MoveItem.kt │ │ │ ├── MoveItemLimit.kt │ │ │ ├── RemoveCharge.kt │ │ │ ├── RemoveChargeLimit.kt │ │ │ ├── RemoveItem.kt │ │ │ ├── RemoveItemLimit.kt │ │ │ ├── ReplaceItem.kt │ │ │ ├── SetCharge.kt │ │ │ ├── ShiftItem.kt │ │ │ ├── SwapItem.kt │ │ │ └── TransactionOperation.kt │ │ ├── log │ │ ├── LogLevelColourConverter.kt │ │ └── LogMessageColourConverter.kt │ │ ├── map │ │ ├── Overlap.kt │ │ ├── Spiral.kt │ │ ├── collision │ │ │ ├── CollisionBlocked.kt │ │ │ ├── CollisionDecoder.kt │ │ │ ├── CollisionFlags.kt │ │ │ ├── CollisionStrategyProvider.kt │ │ │ ├── Collisions.kt │ │ │ ├── GameObjectCollision.kt │ │ │ ├── GameObjectCollisionAdd.kt │ │ │ └── GameObjectCollisionRemove.kt │ │ ├── instance │ │ │ └── Instances.kt │ │ ├── obj │ │ │ ├── MapObjectsDecoder.kt │ │ │ └── MapObjectsRotatedDecoder.kt │ │ └── zone │ │ │ └── DynamicZones.kt │ │ ├── queue │ │ ├── Action.kt │ │ ├── ActionPriority.kt │ │ ├── ActionQueue.kt │ │ └── LogoutBehaviour.kt │ │ ├── suspend │ │ ├── DialogueSuspension.kt │ │ ├── Suspend.kt │ │ └── Suspension.kt │ │ └── timer │ │ ├── Ticks.kt │ │ ├── Timer.kt │ │ ├── TimerApi.kt │ │ ├── TimerQueue.kt │ │ ├── TimerSlot.kt │ │ ├── TimerTask.kt │ │ └── Timers.kt │ └── test │ ├── kotlin │ └── world │ │ └── gregs │ │ └── voidps │ │ └── engine │ │ ├── GameLoopTest.kt │ │ ├── MockkInline.kt │ │ ├── ScriptTest.kt │ │ ├── client │ │ ├── PlayerAccountLoaderTest.kt │ │ ├── command │ │ │ ├── CommandArgumentTest.kt │ │ │ ├── CommandSignatureTest.kt │ │ │ ├── CommandTest.kt │ │ │ └── CommandsTest.kt │ │ ├── ui │ │ │ ├── DialoguesTest.kt │ │ │ ├── GameFrameTest.kt │ │ │ ├── InterfaceApiTest.kt │ │ │ ├── InterfaceExtensionsTest.kt │ │ │ ├── InterfaceOptionsTest.kt │ │ │ ├── InterfaceTest.kt │ │ │ ├── InterfacesMultipleTest.kt │ │ │ ├── InterfacesSingleTest.kt │ │ │ ├── InterfacesTest.kt │ │ │ ├── chat │ │ │ │ ├── ColoursTest.kt │ │ │ │ └── TextKtTest.kt │ │ │ └── menu │ │ │ │ └── InterfaceOptionSettingsTest.kt │ │ ├── update │ │ │ ├── CharacterUpdateTaskTest.kt │ │ │ ├── npc │ │ │ │ └── NPCUpdateTaskTest.kt │ │ │ ├── player │ │ │ │ └── PlayerUpdateTaskTest.kt │ │ │ └── view │ │ │ │ ├── PlayerTrackingSetTest.kt │ │ │ │ └── ViewportTest.kt │ │ └── variable │ │ │ ├── ClocksTest.kt │ │ │ ├── VariableApiTest.kt │ │ │ └── VariablesTest.kt │ │ ├── data │ │ ├── AccountManagerTest.kt │ │ ├── SafeStorageTest.kt │ │ ├── SettingsReloadTest.kt │ │ ├── SettingsTest.kt │ │ ├── StorageTest.kt │ │ ├── config │ │ │ └── VariableDefinitionTest.kt │ │ ├── definition │ │ │ ├── AnimationDefinitionsTest.kt │ │ │ ├── DefinitionsDecoderTest.kt │ │ │ ├── GraphicDefinitionsTest.kt │ │ │ ├── InventoryDefinitionsTest.kt │ │ │ ├── ItemDefinitionsTest.kt │ │ │ ├── NPCDefinitionsTest.kt │ │ │ └── ObjectDefinitionsTest.kt │ │ └── file │ │ │ └── FileStorageTest.kt │ │ ├── entity │ │ ├── DespawnTest.kt │ │ ├── SpawnTest.kt │ │ ├── character │ │ │ ├── DeathTest.kt │ │ │ ├── mode │ │ │ │ ├── interact │ │ │ │ │ ├── InteractTest.kt │ │ │ │ │ ├── InterfaceOnFloorItemInteractTest.kt │ │ │ │ │ ├── InterfaceOnNPCInteractTest.kt │ │ │ │ │ ├── InterfaceOnObjectInteractTest.kt │ │ │ │ │ ├── ItemOnFloorItemInteractTest.kt │ │ │ │ │ ├── ItemOnNPCInteractTest.kt │ │ │ │ │ ├── ItemOnObjectInteractTest.kt │ │ │ │ │ ├── ItemOnPlayerInteractTest.kt │ │ │ │ │ ├── NPCOnFloorItemInteractTest.kt │ │ │ │ │ ├── NPCOnNPCInteractTest.kt │ │ │ │ │ ├── NPCOnObjectInteractTest.kt │ │ │ │ │ ├── NPCOnPlayerInteractTest.kt │ │ │ │ │ ├── OnInteractTest.kt │ │ │ │ │ ├── PlayerOnFloorItemInteractTest.kt │ │ │ │ │ ├── PlayerOnNPCInteractTest.kt │ │ │ │ │ ├── PlayerOnObjectInteractTest.kt │ │ │ │ │ └── PlayerOnPlayerInteractTest.kt │ │ │ │ └── move │ │ │ │ │ ├── MovedTest.kt │ │ │ │ │ ├── MovementTest.kt │ │ │ │ │ ├── StepTest.kt │ │ │ │ │ └── combat │ │ │ │ │ └── CombatApiTest.kt │ │ │ ├── npc │ │ │ │ ├── HuntTest.kt │ │ │ │ └── NPCsTest.kt │ │ │ └── player │ │ │ │ ├── PlayerOptionsTest.kt │ │ │ │ ├── PlayersTest.kt │ │ │ │ ├── TeleportTest.kt │ │ │ │ ├── equip │ │ │ │ └── BodyPartsTest.kt │ │ │ │ ├── req │ │ │ │ └── RequestTest.kt │ │ │ │ └── skill │ │ │ │ ├── ExperienceTableTest.kt │ │ │ │ ├── LevelsTest.kt │ │ │ │ ├── SkillsTest.kt │ │ │ │ └── level │ │ │ │ └── PlayerLevelsTest.kt │ │ ├── item │ │ │ ├── drop │ │ │ │ ├── DropTableTest.kt │ │ │ │ ├── DropTablesTest.kt │ │ │ │ └── ItemDropTest.kt │ │ │ └── floor │ │ │ │ ├── FloorItemTest.kt │ │ │ │ ├── FloorItemTrackingTest.kt │ │ │ │ └── FloorItemsTest.kt │ │ └── obj │ │ │ ├── GameObjectHashMapTest.kt │ │ │ ├── GameObjectTest.kt │ │ │ ├── GameObjectTimersTest.kt │ │ │ └── GameObjectsTest.kt │ │ ├── event │ │ ├── AuditLogTest.kt │ │ └── WildcardTest.kt │ │ ├── inv │ │ ├── InventoryApiTest.kt │ │ ├── InventorySlotChangedTest.kt │ │ ├── InventoryTest.kt │ │ ├── ItemsTest.kt │ │ └── transact │ │ │ ├── ChangeManagerTest.kt │ │ │ ├── StateManagerTest.kt │ │ │ ├── TransactionControllerTest.kt │ │ │ ├── TransactionOperationsKtTest.kt │ │ │ ├── TransactionTest.kt │ │ │ └── operation │ │ │ ├── AddChargeLimitTest.kt │ │ │ ├── AddChargeTest.kt │ │ │ ├── AddItemLimitTest.kt │ │ │ ├── AddItemTest.kt │ │ │ ├── ClearChargeTest.kt │ │ │ ├── ClearItemTest.kt │ │ │ ├── MoveItemLimitTest.kt │ │ │ ├── MoveItemTest.kt │ │ │ ├── RemoveChargeLimitTest.kt │ │ │ ├── RemoveChargeTest.kt │ │ │ ├── RemoveItemLimitTest.kt │ │ │ ├── RemoveItemTest.kt │ │ │ ├── ReplaceItemTest.kt │ │ │ ├── SetChargeTest.kt │ │ │ ├── ShiftItemTest.kt │ │ │ ├── SwapItemTest.kt │ │ │ └── TransactionOperationTest.kt │ │ ├── map │ │ ├── OverlapTest.kt │ │ ├── SpiralTest.kt │ │ ├── collision │ │ │ ├── CollisionDecoderTest.kt │ │ │ └── CollisionsTest.kt │ │ ├── instance │ │ │ └── InstancesTest.kt │ │ ├── obj │ │ │ ├── MapObjectsDecoderTest.kt │ │ │ └── MapObjectsRotatedDecoderTest.kt │ │ └── zone │ │ │ ├── DynamicZonesTest.kt │ │ │ └── ZoneBatchUpdatesTest.kt │ │ ├── queue │ │ ├── ActionQueueTest.kt │ │ └── ActionTest.kt │ │ ├── script │ │ ├── KoinMock.kt │ │ └── koin │ │ │ ├── KoinTestExtension.kt │ │ │ └── MockProviderExtension.kt │ │ └── timer │ │ ├── TimerApiTest.kt │ │ ├── TimerQueueTest.kt │ │ ├── TimerSlotTest.kt │ │ ├── TimerTest.kt │ │ └── TimersTest.kt │ └── resources │ ├── logback-test.xml │ ├── player.toml │ └── world │ └── gregs │ └── voidps │ └── engine │ ├── data │ └── definition │ │ ├── test-animation.toml │ │ ├── test-gfx.toml │ │ ├── test-inventory.toml │ │ ├── test-item.toml │ │ ├── test-npc.toml │ │ └── test-object.toml │ └── entity │ └── item │ └── drop │ └── drop-table.toml ├── game ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ ├── ContentLoader.kt │ │ ├── GameModules.kt │ │ ├── GameTick.kt │ │ ├── Main.kt │ │ └── content │ │ │ ├── achievement │ │ │ ├── AntiqueLamp.kt │ │ │ ├── ExplorersRing.kt │ │ │ ├── LumbridgeBeginnerTasks.kt │ │ │ ├── TaskList.kt │ │ │ ├── TaskSystem.kt │ │ │ └── Tasks.kt │ │ │ ├── activity │ │ │ ├── penguin_hide_and_seek │ │ │ │ └── PenguinHideAndSeek.kt │ │ │ └── shooting_star │ │ │ │ ├── ShootingStar.kt │ │ │ │ ├── ShootingStarHandler.kt │ │ │ │ └── StarLocationData.kt │ │ │ ├── area │ │ │ ├── asgarnia │ │ │ │ ├── asgarnian_ice_dungeon │ │ │ │ │ ├── SkeletalWyvern.kt │ │ │ │ │ └── WyvernCave.kt │ │ │ │ ├── burthorpe │ │ │ │ │ └── HeroesGuild.kt │ │ │ │ ├── entrana │ │ │ │ │ └── Entrana.kt │ │ │ │ ├── falador │ │ │ │ │ ├── BarmaidsRisingSunInn.kt │ │ │ │ │ ├── Doric.kt │ │ │ │ │ ├── DressingRoom.kt │ │ │ │ │ ├── GiantMole.kt │ │ │ │ │ ├── Hairdresser.kt │ │ │ │ │ ├── Iconis.kt │ │ │ │ │ ├── MakeoverMage.kt │ │ │ │ │ ├── SirVyvin.kt │ │ │ │ │ ├── SquireAsrol.kt │ │ │ │ │ └── WysonTheGardener.kt │ │ │ │ ├── goblin_village │ │ │ │ │ └── Goblins.kt │ │ │ │ ├── port_sarim │ │ │ │ │ ├── BartenderRustyAnchor.kt │ │ │ │ │ ├── MonkOfEntrana.kt │ │ │ │ │ ├── PortSarim.kt │ │ │ │ │ ├── PortSarimGuard.kt │ │ │ │ │ ├── Seaman.kt │ │ │ │ │ ├── SquirePortSarim.kt │ │ │ │ │ └── Thurgo.kt │ │ │ │ ├── rimmington │ │ │ │ │ └── CraftingGuild.kt │ │ │ │ └── taverley │ │ │ │ │ ├── Bettamax.kt │ │ │ │ │ ├── DustyKey.kt │ │ │ │ │ ├── Kaqemeex.kt │ │ │ │ │ ├── Sanfew.kt │ │ │ │ │ ├── TaverleyDungeon.kt │ │ │ │ │ └── WitchesHouse.kt │ │ │ ├── banks │ │ │ │ └── Leaflets.kt │ │ │ ├── fremennik_province │ │ │ │ ├── keldagrim │ │ │ │ │ ├── ClothesStall.kt │ │ │ │ │ └── KeldagrimGuards.kt │ │ │ │ ├── lighthouse │ │ │ │ │ └── BasaltRock.kt │ │ │ │ ├── neitiznot │ │ │ │ │ └── ThakkradSigmundson.kt │ │ │ │ ├── rellekka │ │ │ │ │ ├── RellekkaGuards.kt │ │ │ │ │ ├── RockCrabs.kt │ │ │ │ │ └── Yrsa.kt │ │ │ │ └── waterbirth_island_dungeon │ │ │ │ │ ├── DagannothEggHatch.kt │ │ │ │ │ ├── DoorSupport.kt │ │ │ │ │ ├── GiantRockCrabs.kt │ │ │ │ │ └── RockLobster.kt │ │ │ ├── kandarin │ │ │ │ ├── ardougne │ │ │ │ │ ├── Alrena.kt │ │ │ │ │ ├── Ardougne.kt │ │ │ │ │ ├── ArdougneBaker.kt │ │ │ │ │ ├── ArdougneDoors.kt │ │ │ │ │ ├── ArdougneGuards.kt │ │ │ │ │ ├── BartenderFlyingHorseInn.kt │ │ │ │ │ ├── Edmond.kt │ │ │ │ │ ├── Larry.kt │ │ │ │ │ ├── LegendsGuild.kt │ │ │ │ │ ├── PenguinKeeper.kt │ │ │ │ │ ├── WizardCromperty.kt │ │ │ │ │ └── west_ardougne │ │ │ │ │ │ ├── Bravek.kt │ │ │ │ │ │ ├── Clerk.kt │ │ │ │ │ │ ├── Elena.kt │ │ │ │ │ │ ├── Jethick.kt │ │ │ │ │ │ ├── Man.kt │ │ │ │ │ │ ├── Mourner.kt │ │ │ │ │ │ ├── Recruiter.kt │ │ │ │ │ │ ├── Rehnisons.kt │ │ │ │ │ │ └── WestArdougne.kt │ │ │ │ ├── barbarian_outpost │ │ │ │ │ ├── BarbarianGuard.kt │ │ │ │ │ ├── BarbarianOutpostGate.kt │ │ │ │ │ └── Gunnjorn.kt │ │ │ │ ├── catherby │ │ │ │ │ ├── Arheins.kt │ │ │ │ │ ├── Caleb.kt │ │ │ │ │ ├── CandleMaker.kt │ │ │ │ │ ├── Ellena.kt │ │ │ │ │ ├── Harry.kt │ │ │ │ │ ├── Hickton.kt │ │ │ │ │ └── Vanessas.kt │ │ │ │ ├── feldip_hills │ │ │ │ │ └── GnormadiumAvlafrim.kt │ │ │ │ ├── ourania │ │ │ │ │ ├── CaveLizard.kt │ │ │ │ │ ├── Eniola.kt │ │ │ │ │ ├── MageOfZamorakOurania.kt │ │ │ │ │ ├── OuraniaAltar.kt │ │ │ │ │ ├── OuraniaCrack.kt │ │ │ │ │ └── ZamorakCrafter.kt │ │ │ │ ├── ranging_guild │ │ │ │ │ └── ArmourSalesman.kt │ │ │ │ ├── seers_village │ │ │ │ │ ├── BartenderForestersArms.kt │ │ │ │ │ └── Ignatius.kt │ │ │ │ ├── tree_gnome_stronghold │ │ │ │ │ ├── Blurberry.kt │ │ │ │ │ ├── Brimstail.kt │ │ │ │ │ ├── CaptainErrdo.kt │ │ │ │ │ ├── GliderMap.kt │ │ │ │ │ ├── GnomeTrainer.kt │ │ │ │ │ ├── HeckelFunch.kt │ │ │ │ │ ├── Hudo.kt │ │ │ │ │ └── TreeGnomeStronghold.kt │ │ │ │ └── yanille │ │ │ │ │ ├── BartenderDragonInn.kt │ │ │ │ │ └── WizardDistentor.kt │ │ │ ├── karamja │ │ │ │ ├── BartenderDeadMansChest.kt │ │ │ │ ├── BartenderZambo.kt │ │ │ │ ├── BrimhavenShotcuts.kt │ │ │ │ ├── ShipyardWorker.kt │ │ │ │ ├── Stiles.kt │ │ │ │ ├── brimhaven │ │ │ │ │ ├── ColourDragon.kt │ │ │ │ │ ├── MetalDragons.kt │ │ │ │ │ ├── Saniboch.kt │ │ │ │ │ └── Vine.kt │ │ │ │ └── musa_point │ │ │ │ │ └── CustomsOfficer.kt │ │ │ ├── kharidian_desert │ │ │ │ ├── al_kharid │ │ │ │ │ ├── AlKharidMine.kt │ │ │ │ │ ├── AlTheCamel.kt │ │ │ │ │ ├── AliMorrisane.kt │ │ │ │ │ ├── Apprentice.kt │ │ │ │ │ ├── Dommik.kt │ │ │ │ │ ├── Ellis.kt │ │ │ │ │ ├── Hassan.kt │ │ │ │ │ ├── Karim.kt │ │ │ │ │ ├── LouieLegs.kt │ │ │ │ │ ├── Osman.kt │ │ │ │ │ ├── Ranael.kt │ │ │ │ │ ├── Sorceress.kt │ │ │ │ │ ├── Tollgate.kt │ │ │ │ │ ├── Zeke.kt │ │ │ │ │ └── duel_arena │ │ │ │ │ │ ├── CaptainDaerkin.kt │ │ │ │ │ │ ├── Fadli.kt │ │ │ │ │ │ ├── Hamid.kt │ │ │ │ │ │ ├── Jaraah.kt │ │ │ │ │ │ ├── Mubariz.kt │ │ │ │ │ │ ├── Nurses.kt │ │ │ │ │ │ ├── Spectators.kt │ │ │ │ │ │ ├── SurgeonGeneralTafani.kt │ │ │ │ │ │ └── Zahwa.kt │ │ │ │ └── sophanem │ │ │ │ │ └── GuardianMummy.kt │ │ │ ├── misthalin │ │ │ │ ├── Border.kt │ │ │ │ ├── BorderGuard.kt │ │ │ │ ├── ClanCupPlaque.kt │ │ │ │ ├── Signposts.kt │ │ │ │ ├── barbarian_village │ │ │ │ │ ├── ChieftainGunthor.kt │ │ │ │ │ ├── Dororan.kt │ │ │ │ │ ├── Gudrun.kt │ │ │ │ │ ├── Haakon.kt │ │ │ │ │ ├── Kjell.kt │ │ │ │ │ ├── Sigurd.kt │ │ │ │ │ └── stronghold_of_security │ │ │ │ │ │ ├── Catablepon.kt │ │ │ │ │ │ ├── SkullSceptre.kt │ │ │ │ │ │ ├── StrongholdOfSecurityDoors.kt │ │ │ │ │ │ ├── StrongholdOfSecurityLadders.kt │ │ │ │ │ │ ├── StrongholdOfSecurityPortals.kt │ │ │ │ │ │ └── StrongholdOfSecurityRewards.kt │ │ │ │ ├── draynor_village │ │ │ │ │ ├── Aggie.kt │ │ │ │ │ ├── Diango.kt │ │ │ │ │ ├── DiangoItemRetrieval.kt │ │ │ │ │ ├── DraynorGuards.kt │ │ │ │ │ ├── DraynorJailGuard.kt │ │ │ │ │ ├── Joe.kt │ │ │ │ │ ├── LadyKeli.kt │ │ │ │ │ ├── Leela.kt │ │ │ │ │ ├── Ned.kt │ │ │ │ │ └── PrinceAli.kt │ │ │ │ ├── edgeville │ │ │ │ │ ├── EdgevilleMonkeyBars.kt │ │ │ │ │ ├── Hari.kt │ │ │ │ │ ├── Jeffery.kt │ │ │ │ │ ├── MultiCombat.kt │ │ │ │ │ ├── Wilderness.kt │ │ │ │ │ └── WildernessIcons.kt │ │ │ │ ├── lumbridge │ │ │ │ │ ├── BarfyBill.kt │ │ │ │ │ ├── Bob.kt │ │ │ │ │ ├── CowFieldSignpost.kt │ │ │ │ │ ├── Donie.kt │ │ │ │ │ ├── Doomsayer.kt │ │ │ │ │ ├── Ducklings.kt │ │ │ │ │ ├── ExplorerJack.kt │ │ │ │ │ ├── FredTheFarmer.kt │ │ │ │ │ ├── Lachtopher.kt │ │ │ │ │ ├── LumbridgeBookcase.kt │ │ │ │ │ ├── LumbridgeMen.kt │ │ │ │ │ ├── LumbridgeSage.kt │ │ │ │ │ ├── Men.kt │ │ │ │ │ ├── PlayerDeathSignpost.kt │ │ │ │ │ ├── Victoria.kt │ │ │ │ │ ├── castle │ │ │ │ │ │ ├── Cook.kt │ │ │ │ │ │ ├── DukeHoracio.kt │ │ │ │ │ │ ├── Hans.kt │ │ │ │ │ │ ├── LumbridgeFlag.kt │ │ │ │ │ │ ├── LumbridgeGuardsman.kt │ │ │ │ │ │ ├── LumbridgeWinch.kt │ │ │ │ │ │ └── Sigmund.kt │ │ │ │ │ ├── catacomb │ │ │ │ │ │ └── LumbridgeCatacombs.kt │ │ │ │ │ ├── church │ │ │ │ │ │ ├── FatherAereck.kt │ │ │ │ │ │ ├── Gravestone.kt │ │ │ │ │ │ ├── GravestoneShop.kt │ │ │ │ │ │ ├── Gravestones.kt │ │ │ │ │ │ └── LumbridgeChurch.kt │ │ │ │ │ ├── combat_hall │ │ │ │ │ │ ├── ArcheryTarget.kt │ │ │ │ │ │ ├── CombatDummy.kt │ │ │ │ │ │ ├── MagicTutor.kt │ │ │ │ │ │ ├── MeleeTutor.kt │ │ │ │ │ │ └── RangeTutor.kt │ │ │ │ │ ├── farm │ │ │ │ │ │ ├── Cows.kt │ │ │ │ │ │ ├── GillieGroats.kt │ │ │ │ │ │ └── SethGroatsFarm.kt │ │ │ │ │ ├── roddecks_house │ │ │ │ │ │ ├── Roddeck.kt │ │ │ │ │ │ ├── RoddecksBookcase.kt │ │ │ │ │ │ └── RoddecksHouseDrawers.kt │ │ │ │ │ ├── swamp │ │ │ │ │ │ └── LumbridgeSwamp.kt │ │ │ │ │ └── windmill │ │ │ │ │ │ └── MillieMiller.kt │ │ │ │ ├── varrock │ │ │ │ │ ├── AshCleaner.kt │ │ │ │ │ ├── Aubury.kt │ │ │ │ │ ├── Baraek.kt │ │ │ │ │ ├── BartenderBlueMoonInn.kt │ │ │ │ │ ├── BartenderJollyBoarInn.kt │ │ │ │ │ ├── BrassKey.kt │ │ │ │ │ ├── Delrith.kt │ │ │ │ │ ├── GypsyAris.kt │ │ │ │ │ ├── Iffie.kt │ │ │ │ │ ├── Tarquin.kt │ │ │ │ │ ├── Thessalia.kt │ │ │ │ │ ├── grand_exchange │ │ │ │ │ │ ├── BobBarterHerbs.kt │ │ │ │ │ │ ├── BrugsenBurson.kt │ │ │ │ │ │ ├── CommonItemCosts.kt │ │ │ │ │ │ ├── FaridMorrisaneOres.kt │ │ │ │ │ │ ├── GrandExchangeClerk.kt │ │ │ │ │ │ ├── GrandExchangeTutor.kt │ │ │ │ │ │ ├── HofuthandCombat.kt │ │ │ │ │ │ ├── MurkyMattRunes.kt │ │ │ │ │ │ └── ReloboBlinyoLogs.kt │ │ │ │ │ └── palace │ │ │ │ │ │ ├── CaptainRovin.kt │ │ │ │ │ │ ├── Reldo.kt │ │ │ │ │ │ ├── SirPrysin.kt │ │ │ │ │ │ ├── SurokMagis.kt │ │ │ │ │ │ ├── VarrockManhole.kt │ │ │ │ │ │ └── VarrockPalaceDrain.kt │ │ │ │ └── wizards_tower │ │ │ │ │ ├── Sedridor.kt │ │ │ │ │ └── Traiborn.kt │ │ │ ├── morytania │ │ │ │ ├── mort_myre_swamp │ │ │ │ │ ├── BillBlakey.kt │ │ │ │ │ └── grotto │ │ │ │ │ │ └── Grotto.kt │ │ │ │ ├── mos_le_harmless │ │ │ │ │ └── MosLeHarmlessShops.kt │ │ │ │ ├── port_phasmatys │ │ │ │ │ ├── PortPhasmatysBarrier.kt │ │ │ │ │ └── WreckedGhostShip.kt │ │ │ │ └── slayer_tower │ │ │ │ │ ├── AberrantSpectre.kt │ │ │ │ │ ├── Banshee.kt │ │ │ │ │ ├── Gargoyle.kt │ │ │ │ │ ├── Nechryael.kt │ │ │ │ │ └── SlayerTower.kt │ │ │ ├── troll_country │ │ │ │ ├── god_wars_dungeon │ │ │ │ │ ├── ArmadylPillar.kt │ │ │ │ │ ├── BandosDoor.kt │ │ │ │ │ ├── GodwarsAggression.kt │ │ │ │ │ ├── GodwarsBoulder.kt │ │ │ │ │ ├── GodwarsDoors.kt │ │ │ │ │ ├── SaradominRock.kt │ │ │ │ │ ├── SirGerry.kt │ │ │ │ │ ├── ThrowerTroll.kt │ │ │ │ │ ├── WindChill.kt │ │ │ │ │ ├── ZamorakBridge.kt │ │ │ │ │ ├── armadyl │ │ │ │ │ │ └── KreeArra.kt │ │ │ │ │ ├── bandos │ │ │ │ │ │ └── GeneralGraardor.kt │ │ │ │ │ ├── saradomin │ │ │ │ │ │ └── CommanderZilyana.kt │ │ │ │ │ └── zamorak │ │ │ │ │ │ ├── GodwarsAltars.kt │ │ │ │ │ │ ├── Gorak.kt │ │ │ │ │ │ └── KrilTsutsaroth.kt │ │ │ │ └── trollheim │ │ │ │ │ └── Trollheim.kt │ │ │ └── wilderness │ │ │ │ ├── DrunkenMusician.kt │ │ │ │ ├── GhostlyPiper.kt │ │ │ │ ├── GoblinMusician.kt │ │ │ │ ├── KingBlackDragon.kt │ │ │ │ ├── Web.kt │ │ │ │ ├── Wilderness.kt │ │ │ │ ├── WildernessLevers.kt │ │ │ │ ├── WildernessObelisk.kt │ │ │ │ ├── WildernessWall.kt │ │ │ │ └── abyss │ │ │ │ ├── AbyssObstacles.kt │ │ │ │ ├── AbyssalDemon.kt │ │ │ │ ├── AbyssalRift.kt │ │ │ │ ├── DarkMage.kt │ │ │ │ └── MageOfZamorak.kt │ │ │ ├── bot │ │ │ ├── Bot.kt │ │ │ ├── BotSpawns.kt │ │ │ ├── Bots.kt │ │ │ ├── DecisionMaking.kt │ │ │ ├── InterfaceBot.kt │ │ │ ├── Task.kt │ │ │ ├── TaskManager.kt │ │ │ ├── WalkingBot.kt │ │ │ ├── interact │ │ │ │ ├── bank │ │ │ │ │ └── BankBot.kt │ │ │ │ ├── item │ │ │ │ │ ├── FloorItemBot.kt │ │ │ │ │ └── PickupBot.kt │ │ │ │ ├── navigation │ │ │ │ │ ├── GoTo.kt │ │ │ │ │ ├── Navigation.kt │ │ │ │ │ └── graph │ │ │ │ │ │ ├── Condition.kt │ │ │ │ │ │ ├── Edge.kt │ │ │ │ │ │ ├── HasInventoryItem.kt │ │ │ │ │ │ └── NavigationGraph.kt │ │ │ │ ├── path │ │ │ │ │ ├── AreaStrategy.kt │ │ │ │ │ ├── ConditionalStrategy.kt │ │ │ │ │ ├── Dijkstra.kt │ │ │ │ │ ├── DijkstraFrontier.kt │ │ │ │ │ ├── EdgeTraversal.kt │ │ │ │ │ └── NodeTargetStrategy.kt │ │ │ │ └── shop │ │ │ │ │ └── ShopBot.kt │ │ │ └── skill │ │ │ │ ├── SkillBot.kt │ │ │ │ ├── combat │ │ │ │ ├── CombatBot.kt │ │ │ │ ├── CombatGear.kt │ │ │ │ └── TrainingBot.kt │ │ │ │ ├── cooking │ │ │ │ └── CookingBot.kt │ │ │ │ ├── firemaking │ │ │ │ └── FiremakingBot.kt │ │ │ │ ├── fishing │ │ │ │ └── FishingBot.kt │ │ │ │ ├── mining │ │ │ │ └── MiningBot.kt │ │ │ │ ├── runecrafting │ │ │ │ └── RunecraftingBot.kt │ │ │ │ ├── smithing │ │ │ │ ├── SmeltingBot.kt │ │ │ │ └── SmithingBot.kt │ │ │ │ └── woodcutting │ │ │ │ └── WoodcuttingBot.kt │ │ │ ├── entity │ │ │ ├── Examines.kt │ │ │ ├── Movement.kt │ │ │ ├── combat │ │ │ │ ├── Bonus.kt │ │ │ │ ├── Combat.kt │ │ │ │ ├── CombatDebug.kt │ │ │ │ ├── Target.kt │ │ │ │ └── hit │ │ │ │ │ ├── CombatHitsplats.kt │ │ │ │ │ ├── Damage.kt │ │ │ │ │ └── Hit.kt │ │ │ ├── death │ │ │ │ ├── CharacterDeath.kt │ │ │ │ ├── Distribution.kt │ │ │ │ ├── NPCDeath.kt │ │ │ │ └── PlayerDeath.kt │ │ │ ├── effect │ │ │ │ ├── ColourOverlay.kt │ │ │ │ ├── EffectCommands.kt │ │ │ │ ├── Freeze.kt │ │ │ │ ├── Stun.kt │ │ │ │ ├── Transform.kt │ │ │ │ └── toxin │ │ │ │ │ ├── Disease.kt │ │ │ │ │ └── Poison.kt │ │ │ ├── gfx │ │ │ │ └── SpawnGraphic.kt │ │ │ ├── item │ │ │ │ └── spawn │ │ │ │ │ └── FloorItemRespawn.kt │ │ │ ├── npc │ │ │ │ ├── Banker.kt │ │ │ │ ├── MilkSellers.kt │ │ │ │ ├── Musician.kt │ │ │ │ ├── Sheep.kt │ │ │ │ ├── combat │ │ │ │ │ ├── Aggression.kt │ │ │ │ │ ├── Attack.kt │ │ │ │ │ ├── NPCAttack.kt │ │ │ │ │ ├── magic │ │ │ │ │ │ ├── ChaosDruid.kt │ │ │ │ │ │ ├── DarkWizards.kt │ │ │ │ │ │ ├── MonkOfZamorak.kt │ │ │ │ │ │ └── Wizards.kt │ │ │ │ │ ├── melee │ │ │ │ │ │ ├── Chicken.kt │ │ │ │ │ │ ├── Imp.kt │ │ │ │ │ │ ├── Lizard.kt │ │ │ │ │ │ ├── LumbridgeGuardsmanAttackble.kt │ │ │ │ │ │ └── Poisonous.kt │ │ │ │ │ └── ranged │ │ │ │ │ │ └── Archers.kt │ │ │ │ └── shop │ │ │ │ │ ├── Shop.kt │ │ │ │ │ ├── ShopOpen.kt │ │ │ │ │ ├── buy │ │ │ │ │ └── ShopBuy.kt │ │ │ │ │ ├── general │ │ │ │ │ ├── GeneralStore.kt │ │ │ │ │ ├── GeneralStoreRestrictions.kt │ │ │ │ │ └── GeneralStores.kt │ │ │ │ │ ├── sell │ │ │ │ │ └── ShopSell.kt │ │ │ │ │ └── stock │ │ │ │ │ ├── ItemInfo.kt │ │ │ │ │ ├── ItemInformation.kt │ │ │ │ │ ├── Price.kt │ │ │ │ │ ├── Restock.kt │ │ │ │ │ └── ShopExamine.kt │ │ │ ├── obj │ │ │ │ ├── Boxes.kt │ │ │ │ ├── BushPicking.kt │ │ │ │ ├── MilkCow.kt │ │ │ │ ├── Mill.kt │ │ │ │ ├── ObjectTeleporting.kt │ │ │ │ ├── ObjectTeleports.kt │ │ │ │ ├── Picking.kt │ │ │ │ ├── Replace.kt │ │ │ │ ├── Stairs.kt │ │ │ │ ├── TrapDoors.kt │ │ │ │ ├── canoe │ │ │ │ │ ├── Canoe.kt │ │ │ │ │ ├── CanoeStation.kt │ │ │ │ │ ├── CanoeStationMap.kt │ │ │ │ │ └── Canoes.kt │ │ │ │ ├── door │ │ │ │ │ ├── Door.kt │ │ │ │ │ ├── Doors.kt │ │ │ │ │ ├── DoubleDoor.kt │ │ │ │ │ └── Gate.kt │ │ │ │ └── ship │ │ │ │ │ ├── Boat.kt │ │ │ │ │ ├── CharterShip.kt │ │ │ │ │ └── CharterShips.kt │ │ │ ├── player │ │ │ │ ├── AutoSave.kt │ │ │ │ ├── Exit.kt │ │ │ │ ├── ForceMovement.kt │ │ │ │ ├── Introduction.kt │ │ │ │ ├── Login.kt │ │ │ │ ├── bank │ │ │ │ │ ├── Bank.kt │ │ │ │ │ ├── BankDeposit.kt │ │ │ │ │ ├── BankOpen.kt │ │ │ │ │ ├── BankTabCollapse.kt │ │ │ │ │ ├── BankTabs.kt │ │ │ │ │ └── BankWithdraw.kt │ │ │ │ ├── combat │ │ │ │ │ ├── Attack.kt │ │ │ │ │ ├── CombatExperience.kt │ │ │ │ │ ├── CombatLevel.kt │ │ │ │ │ ├── Tolerance.kt │ │ │ │ │ └── special │ │ │ │ │ │ ├── SpecialAttack.kt │ │ │ │ │ │ ├── SpecialAttackEnergy.kt │ │ │ │ │ │ └── SpecialAttacks.kt │ │ │ │ ├── command │ │ │ │ │ ├── CameraCommands.kt │ │ │ │ │ ├── DropCommands.kt │ │ │ │ │ ├── InterfaceCommands.kt │ │ │ │ │ ├── InventoryCommands.kt │ │ │ │ │ ├── ItemCommands.kt │ │ │ │ │ ├── LogCommands.kt │ │ │ │ │ ├── MetaCommands.kt │ │ │ │ │ ├── NPCCommands.kt │ │ │ │ │ ├── NPCUpdatingCommands.kt │ │ │ │ │ ├── ObjectCommands.kt │ │ │ │ │ ├── PathFindingCommands.kt │ │ │ │ │ ├── PlayerCommands.kt │ │ │ │ │ ├── PlayerUpdatingCommands.kt │ │ │ │ │ ├── Rights.kt │ │ │ │ │ ├── ServerCommands.kt │ │ │ │ │ ├── SkillCommands.kt │ │ │ │ │ ├── SoundCommands.kt │ │ │ │ │ ├── TeleportCommands.kt │ │ │ │ │ ├── VariableCommands.kt │ │ │ │ │ └── ZoneCommands.kt │ │ │ │ ├── dialogue │ │ │ │ │ ├── DialogueCommon.kt │ │ │ │ │ ├── DialogueInput.kt │ │ │ │ │ ├── ExperienceLamp.kt │ │ │ │ │ ├── Expression.kt │ │ │ │ │ └── type │ │ │ │ │ │ ├── Choice.kt │ │ │ │ │ │ ├── ChoiceOption.kt │ │ │ │ │ │ ├── Destroy.kt │ │ │ │ │ │ ├── ExpSkillLamp.kt │ │ │ │ │ │ ├── IntEntry.kt │ │ │ │ │ │ ├── ItemBox.kt │ │ │ │ │ │ ├── LevelUp.kt │ │ │ │ │ │ ├── MakeAmount.kt │ │ │ │ │ │ ├── NPCDialogue.kt │ │ │ │ │ │ ├── NameEntry.kt │ │ │ │ │ │ ├── PlayerDialogue.kt │ │ │ │ │ │ ├── QuestStart.kt │ │ │ │ │ │ ├── Statement.kt │ │ │ │ │ │ ├── StringEntry.kt │ │ │ │ │ │ └── Warning.kt │ │ │ │ ├── effect │ │ │ │ │ ├── AvasDevices.kt │ │ │ │ │ ├── Dragonfire.kt │ │ │ │ │ ├── HitpointRestoration.kt │ │ │ │ │ ├── LevelRestoration.kt │ │ │ │ │ ├── SkillcapeBoost.kt │ │ │ │ │ ├── Skull.kt │ │ │ │ │ └── energy │ │ │ │ │ │ ├── Energy.kt │ │ │ │ │ │ ├── Resting.kt │ │ │ │ │ │ └── Running.kt │ │ │ │ ├── equip │ │ │ │ │ ├── Appearance.kt │ │ │ │ │ ├── EquipBonuses.kt │ │ │ │ │ ├── Equipment.kt │ │ │ │ │ ├── EquipmentBonuses.kt │ │ │ │ │ ├── Equipping.kt │ │ │ │ │ ├── Weight.kt │ │ │ │ │ └── WornEquipment.kt │ │ │ │ ├── inv │ │ │ │ │ ├── Inventory.kt │ │ │ │ │ └── item │ │ │ │ │ │ ├── ItemExtensions.kt │ │ │ │ │ │ ├── ItemOnItems.kt │ │ │ │ │ │ ├── destroy │ │ │ │ │ │ └── ItemDestroy.kt │ │ │ │ │ │ ├── drop │ │ │ │ │ │ ├── ItemDropping.kt │ │ │ │ │ │ └── ItemPlace.kt │ │ │ │ │ │ └── take │ │ │ │ │ │ └── ItemTake.kt │ │ │ │ ├── kept │ │ │ │ │ ├── AreaType.kt │ │ │ │ │ ├── ItemsKeptOnDeath.kt │ │ │ │ │ └── ItemsKeptOnDeathScreen.kt │ │ │ │ ├── modal │ │ │ │ │ ├── CharacterCreation.kt │ │ │ │ │ ├── CharacterStyle.kt │ │ │ │ │ ├── Containers.kt │ │ │ │ │ ├── GameFrame.kt │ │ │ │ │ ├── Tab.kt │ │ │ │ │ ├── book │ │ │ │ │ │ ├── BookPages.kt │ │ │ │ │ │ └── Books.kt │ │ │ │ │ ├── map │ │ │ │ │ │ ├── MapMarkers.kt │ │ │ │ │ │ ├── Minimap.kt │ │ │ │ │ │ └── WorldMap.kt │ │ │ │ │ └── tab │ │ │ │ │ │ ├── Emotes.kt │ │ │ │ │ │ ├── ItemEmotes.kt │ │ │ │ │ │ ├── Morphing.kt │ │ │ │ │ │ ├── Notes.kt │ │ │ │ │ │ ├── Options.kt │ │ │ │ │ │ └── QuestJournals.kt │ │ │ │ ├── price │ │ │ │ │ └── PriceChecker.kt │ │ │ │ └── stat │ │ │ │ │ ├── Experience.kt │ │ │ │ │ └── Stats.kt │ │ │ ├── proj │ │ │ │ └── ShootProjectile.kt │ │ │ └── world │ │ │ │ ├── RegionLoading.kt │ │ │ │ └── music │ │ │ │ ├── Music.kt │ │ │ │ ├── MusicTracks.kt │ │ │ │ └── MusicUnlock.kt │ │ │ ├── minigame │ │ │ ├── pyramid_plunder │ │ │ │ └── PharaohsSceptre.kt │ │ │ └── sorceress_garden │ │ │ │ ├── DelMonty.kt │ │ │ │ ├── Elementals.kt │ │ │ │ ├── SorceressGarden.kt │ │ │ │ └── SqirkJuice.kt │ │ │ ├── quest │ │ │ ├── Cutscene.kt │ │ │ ├── Quest.kt │ │ │ ├── free │ │ │ │ ├── cooks_assistant │ │ │ │ │ └── CooksAssistant.kt │ │ │ │ ├── demon_slayer │ │ │ │ │ ├── DemonSlayer.kt │ │ │ │ │ └── DemonSlayerSpell.kt │ │ │ │ ├── dorics_quest │ │ │ │ │ └── DoricsQuest.kt │ │ │ │ ├── gunnars_ground │ │ │ │ │ └── GunnarsGround.kt │ │ │ │ ├── prince_ali_rescue │ │ │ │ │ └── PrinceAliRescue.kt │ │ │ │ ├── rune_mysteries │ │ │ │ │ └── RuneMysteries.kt │ │ │ │ ├── the_knights_sword │ │ │ │ │ └── TheKnightsSword.kt │ │ │ │ └── the_restless_ghost │ │ │ │ │ ├── FatherUrhney.kt │ │ │ │ │ ├── RestlessGhost.kt │ │ │ │ │ ├── SkeletonWarlock.kt │ │ │ │ │ └── TheRestlessGhost.kt │ │ │ ├── member │ │ │ │ ├── druidic_ritual │ │ │ │ │ └── DruidicRitual.kt │ │ │ │ ├── eagles_peak │ │ │ │ │ └── EaglesEyries.kt │ │ │ │ ├── enakhras_lament │ │ │ │ │ └── Camulet.kt │ │ │ │ ├── fairy_tale_part_2 │ │ │ │ │ └── fairy_ring │ │ │ │ │ │ ├── FairyRing.kt │ │ │ │ │ │ ├── FairyRingCodes.kt │ │ │ │ │ │ └── TravelLog.kt │ │ │ │ ├── ghosts_ahoy │ │ │ │ │ ├── Ectophial.kt │ │ │ │ │ └── Ectopool.kt │ │ │ │ ├── mahjarrat │ │ │ │ │ └── the_dig_site │ │ │ │ │ │ └── DigSitePendant.kt │ │ │ │ ├── monkey_madness │ │ │ │ │ └── Greegrees.kt │ │ │ │ ├── plague_city │ │ │ │ │ └── PlagueCity.kt │ │ │ │ ├── the_grand_tree │ │ │ │ │ └── SpiritTree.kt │ │ │ │ └── tower_of_life │ │ │ │ │ └── Satchel.kt │ │ │ └── miniquest │ │ │ │ └── alfred_grimhands_barcrawl │ │ │ │ └── AlfredGrimhandsBarCrawl.kt │ │ │ ├── skill │ │ │ ├── agility │ │ │ │ ├── course │ │ │ │ │ ├── ApeAtoll.kt │ │ │ │ │ ├── ApeAtollDungeon.kt │ │ │ │ │ ├── BarbarianAdvanced.kt │ │ │ │ │ ├── BarbarianOutpost.kt │ │ │ │ │ ├── Course.kt │ │ │ │ │ ├── GnomeAdvanced.kt │ │ │ │ │ ├── GnomeAgility.kt │ │ │ │ │ ├── GnomeStronghold.kt │ │ │ │ │ └── WildernessCourse.kt │ │ │ │ └── shortcut │ │ │ │ │ ├── Grapple.kt │ │ │ │ │ ├── LogBalance.kt │ │ │ │ │ ├── Pipes.kt │ │ │ │ │ ├── SteppingStones.kt │ │ │ │ │ ├── Stiles.kt │ │ │ │ │ └── UnderWallTunnels.kt │ │ │ ├── constitution │ │ │ │ ├── Eating.kt │ │ │ │ ├── drink │ │ │ │ │ ├── Ale.kt │ │ │ │ │ ├── Antifire.kt │ │ │ │ │ ├── Bottled.kt │ │ │ │ │ ├── Cocktails.kt │ │ │ │ │ ├── DungeoneeringPotions.kt │ │ │ │ │ ├── MatureAle.kt │ │ │ │ │ ├── Overload.kt │ │ │ │ │ ├── Potions.kt │ │ │ │ │ ├── RecoverSpecial.kt │ │ │ │ │ ├── Tea.kt │ │ │ │ │ └── ZamorakBrew.kt │ │ │ │ └── food │ │ │ │ │ ├── Cabbage.kt │ │ │ │ │ ├── HolyBiscuits.kt │ │ │ │ │ ├── JugOfWine.kt │ │ │ │ │ ├── Kebab.kt │ │ │ │ │ ├── Onion.kt │ │ │ │ │ ├── Pies.kt │ │ │ │ │ ├── PoisonKarambwan.kt │ │ │ │ │ ├── Rocktail.kt │ │ │ │ │ └── SpicyStew.kt │ │ │ ├── cooking │ │ │ │ ├── Cooking.kt │ │ │ │ ├── Empty.kt │ │ │ │ └── Filling.kt │ │ │ ├── crafting │ │ │ │ ├── Jewellery.kt │ │ │ │ ├── Pottery.kt │ │ │ │ ├── SilverCasting.kt │ │ │ │ ├── SoftClay.kt │ │ │ │ ├── SpinningWheel.kt │ │ │ │ ├── Thread.kt │ │ │ │ └── Weaving.kt │ │ │ ├── farming │ │ │ │ ├── Baskets.kt │ │ │ │ └── Sack.kt │ │ │ ├── firemaking │ │ │ │ ├── Firelighters.kt │ │ │ │ ├── Firemaking.kt │ │ │ │ ├── Light.kt │ │ │ │ └── LightSource.kt │ │ │ ├── fishing │ │ │ │ ├── Fishing.kt │ │ │ │ └── FishingSpot.kt │ │ │ ├── fletching │ │ │ │ ├── Bolts.kt │ │ │ │ ├── Darts.kt │ │ │ │ ├── FletchUnfinished.kt │ │ │ │ └── HeadlessArrows.kt │ │ │ ├── herblore │ │ │ │ └── HerbCleaning.kt │ │ │ ├── magic │ │ │ │ ├── Magic.kt │ │ │ │ ├── book │ │ │ │ │ ├── SpellBookFilter.kt │ │ │ │ │ ├── SpellRunes.kt │ │ │ │ │ ├── ancient │ │ │ │ │ │ ├── BloodSpells.kt │ │ │ │ │ │ ├── IceSpells.kt │ │ │ │ │ │ ├── MiasmicSpells.kt │ │ │ │ │ │ ├── ShadowSpells.kt │ │ │ │ │ │ └── SmokeSpells.kt │ │ │ │ │ ├── lunar │ │ │ │ │ │ ├── CureGroup.kt │ │ │ │ │ │ ├── CureMe.kt │ │ │ │ │ │ ├── CureOther.kt │ │ │ │ │ │ ├── EnergyTransfer.kt │ │ │ │ │ │ ├── HealGroup.kt │ │ │ │ │ │ ├── HealOther.kt │ │ │ │ │ │ ├── Vengeance.kt │ │ │ │ │ │ └── VengeanceOther.kt │ │ │ │ │ └── modern │ │ │ │ │ │ ├── BindSpells.kt │ │ │ │ │ │ ├── Charge.kt │ │ │ │ │ │ ├── CrumbleUndead.kt │ │ │ │ │ │ ├── DrainSpells.kt │ │ │ │ │ │ └── TeleportBlock.kt │ │ │ │ ├── jewellery │ │ │ │ │ ├── AmuletOfGlory.kt │ │ │ │ │ ├── CombatBracelet.kt │ │ │ │ │ ├── GamesNecklace.kt │ │ │ │ │ ├── JewelleryTeleport.kt │ │ │ │ │ ├── PhoenixNecklace.kt │ │ │ │ │ ├── RingOfDuelling.kt │ │ │ │ │ ├── RingOfLife.kt │ │ │ │ │ ├── RingOfWealth.kt │ │ │ │ │ └── SkillsNecklace.kt │ │ │ │ ├── shield │ │ │ │ │ ├── CelestialSurgeBox.kt │ │ │ │ │ └── MagicalBlastBox.kt │ │ │ │ ├── spell │ │ │ │ │ ├── Autocast.kt │ │ │ │ │ ├── Spell.kt │ │ │ │ │ ├── SpellRunes.kt │ │ │ │ │ ├── Spells.kt │ │ │ │ │ └── Teleports.kt │ │ │ │ └── weapon │ │ │ │ │ ├── LawStaff.kt │ │ │ │ │ └── NatureStaff.kt │ │ │ ├── melee │ │ │ │ ├── Block.kt │ │ │ │ ├── CombatStyles.kt │ │ │ │ ├── Melee.kt │ │ │ │ ├── Weapon.kt │ │ │ │ ├── armour │ │ │ │ │ ├── CastleWarsBrace.kt │ │ │ │ │ ├── Degradation.kt │ │ │ │ │ ├── RingOfRecoil.kt │ │ │ │ │ ├── VoidSet.kt │ │ │ │ │ └── barrows │ │ │ │ │ │ ├── AhrimsSet.kt │ │ │ │ │ │ ├── BarrowsArmour.kt │ │ │ │ │ │ ├── DharoksSet.kt │ │ │ │ │ │ ├── GuthansSet.kt │ │ │ │ │ │ ├── KarilsSet.kt │ │ │ │ │ │ ├── ToragsSet.kt │ │ │ │ │ │ └── VeracsSet.kt │ │ │ │ └── weapon │ │ │ │ │ ├── SpecialAttackMelee.kt │ │ │ │ │ ├── Weapon.kt │ │ │ │ │ ├── Whacking.kt │ │ │ │ │ └── special │ │ │ │ │ ├── AbyssalWhip.kt │ │ │ │ │ ├── AncientMace.kt │ │ │ │ │ ├── BandosGodsword.kt │ │ │ │ │ ├── BarrelchestAnchor.kt │ │ │ │ │ ├── BoneDagger.kt │ │ │ │ │ ├── BrineSabre.kt │ │ │ │ │ ├── Darklight.kt │ │ │ │ │ ├── Dragon2hSword.kt │ │ │ │ │ ├── DragonBattleaxe.kt │ │ │ │ │ ├── DragonClaws.kt │ │ │ │ │ ├── DragonDagger.kt │ │ │ │ │ ├── DragonHalberd.kt │ │ │ │ │ ├── DragonHatchet.kt │ │ │ │ │ ├── DragonScimitar.kt │ │ │ │ │ ├── Excalibur.kt │ │ │ │ │ ├── GraniteMaul.kt │ │ │ │ │ ├── KorasiSword.kt │ │ │ │ │ ├── SaradominGodsword.kt │ │ │ │ │ ├── SaradominSword.kt │ │ │ │ │ ├── SpearShove.kt │ │ │ │ │ ├── StaffOfLight.kt │ │ │ │ │ ├── StatiusWarhammer.kt │ │ │ │ │ ├── VestasSpear.kt │ │ │ │ │ └── ZamorakGodsword.kt │ │ │ ├── mining │ │ │ │ ├── CoalBag.kt │ │ │ │ ├── GemBag.kt │ │ │ │ ├── Mining.kt │ │ │ │ └── Pickaxe.kt │ │ │ ├── prayer │ │ │ │ ├── Prayer.kt │ │ │ │ ├── PrayerApi.kt │ │ │ │ ├── PrayerConfigs.kt │ │ │ │ ├── Prayers.kt │ │ │ │ ├── active │ │ │ │ │ ├── Leech.kt │ │ │ │ │ ├── PrayerBonus.kt │ │ │ │ │ ├── PrayerDrain.kt │ │ │ │ │ ├── Redemption.kt │ │ │ │ │ ├── Smite.kt │ │ │ │ │ └── SoulSplit.kt │ │ │ │ ├── bone │ │ │ │ │ ├── BoneBurying.kt │ │ │ │ │ ├── BoneOffering.kt │ │ │ │ │ └── PrayerAltars.kt │ │ │ │ └── list │ │ │ │ │ ├── PrayerList.kt │ │ │ │ │ ├── PrayerToggle.kt │ │ │ │ │ └── QuickPrayers.kt │ │ │ ├── ranged │ │ │ │ ├── Ammo.kt │ │ │ │ ├── Ranged.kt │ │ │ │ ├── ammo │ │ │ │ │ ├── Ammo.kt │ │ │ │ │ └── GodArrows.kt │ │ │ │ └── weapon │ │ │ │ │ ├── Chinchompa.kt │ │ │ │ │ ├── HandCannon.kt │ │ │ │ │ └── special │ │ │ │ │ ├── DarkBow.kt │ │ │ │ │ ├── DorgeshuunCrossbow.kt │ │ │ │ │ ├── EnchantedBolts.kt │ │ │ │ │ ├── GodBows.kt │ │ │ │ │ ├── MagicLongbow.kt │ │ │ │ │ ├── MagicShortbow.kt │ │ │ │ │ ├── MorrigansJavelin.kt │ │ │ │ │ ├── MorrigansThrowingAxe.kt │ │ │ │ │ ├── RuneThrowingAxe.kt │ │ │ │ │ ├── Seercull.kt │ │ │ │ │ └── ZaniksCrossbow.kt │ │ │ ├── runecrafting │ │ │ │ ├── EssenceMine.kt │ │ │ │ ├── EssencePouch.kt │ │ │ │ ├── MysteriousRuins.kt │ │ │ │ ├── RuneEssenceMine.kt │ │ │ │ ├── Runecrafting.kt │ │ │ │ └── Talismans.kt │ │ │ ├── slayer │ │ │ │ ├── EnchantedGem.kt │ │ │ │ ├── Slayer.kt │ │ │ │ ├── SlayerAssignment.kt │ │ │ │ ├── SlayerRewards.kt │ │ │ │ ├── SlayerSkills.kt │ │ │ │ └── master │ │ │ │ │ └── Turael.kt │ │ │ ├── smithing │ │ │ │ ├── Anvil.kt │ │ │ │ ├── Cannonballs.kt │ │ │ │ ├── Furnace.kt │ │ │ │ ├── Smithing.kt │ │ │ │ └── SuperheatItem.kt │ │ │ ├── summoning │ │ │ │ ├── ShardSwapping.kt │ │ │ │ ├── Summoning.kt │ │ │ │ ├── SummoningCrafting.kt │ │ │ │ └── WishingWell.kt │ │ │ ├── thieving │ │ │ │ ├── Pickpocketing.kt │ │ │ │ ├── Stalls.kt │ │ │ │ ├── Stole.kt │ │ │ │ └── TrapChests.kt │ │ │ └── woodcutting │ │ │ │ ├── BirdsNest.kt │ │ │ │ ├── Hatchet.kt │ │ │ │ └── Woodcutting.kt │ │ │ └── social │ │ │ ├── assist │ │ │ ├── AssistArea.kt │ │ │ ├── AssistDisplay.kt │ │ │ ├── AssistFilter.kt │ │ │ ├── Assistance.kt │ │ │ └── RequestAssist.kt │ │ │ ├── chat │ │ │ ├── Chat.kt │ │ │ ├── ChatFilters.kt │ │ │ ├── ChatSetup.kt │ │ │ └── QuickChat.kt │ │ │ ├── clan │ │ │ ├── ClanChat.kt │ │ │ ├── ClanSetup.kt │ │ │ ├── Clans.kt │ │ │ └── LootShare.kt │ │ │ ├── friend │ │ │ ├── Friends.kt │ │ │ ├── FriendsList.kt │ │ │ └── NameChange.kt │ │ │ ├── ignore │ │ │ ├── IgnoreList.kt │ │ │ └── Ignores.kt │ │ │ ├── report │ │ │ └── ReportAbuse.kt │ │ │ └── trade │ │ │ ├── Trade.kt │ │ │ ├── TradeConfirm.kt │ │ │ ├── TradeDecline.kt │ │ │ ├── TradeLending.kt │ │ │ ├── TradeOffer.kt │ │ │ ├── TradeRemove.kt │ │ │ ├── TradeRequest.kt │ │ │ ├── TradeSync.kt │ │ │ ├── exchange │ │ │ ├── CollectionBox.kt │ │ │ ├── GrandExchange.kt │ │ │ ├── GrandExchangeCollection.kt │ │ │ ├── GrandExchangeConfirm.kt │ │ │ ├── GrandExchangeControls.kt │ │ │ ├── GrandExchangeHistory.kt │ │ │ ├── GrandExchangeItemSets.kt │ │ │ ├── GrandExchangeOffers.kt │ │ │ ├── history │ │ │ │ ├── ExchangeHistory.kt │ │ │ │ ├── ItemHistory.kt │ │ │ │ └── TimeFrame.kt │ │ │ └── limit │ │ │ │ └── BuyLimits.kt │ │ │ └── lend │ │ │ ├── ItemDiscard.kt │ │ │ ├── ItemLending.kt │ │ │ ├── ItemReturning.kt │ │ │ └── Loan.kt │ └── resources │ │ ├── game.properties │ │ ├── logback.xml │ │ ├── run-server.bat │ │ └── run-server.sh │ └── test │ ├── kotlin │ ├── FakeRandom.kt │ ├── InstructionCalls.kt │ ├── KoinMock.kt │ ├── MockProviderExtension.kt │ ├── SettingsTest.kt │ ├── WorldTest.kt │ └── content │ │ ├── achievement │ │ ├── LumbridgeBeginnerTasksTest.kt │ │ └── TaskSystemTest.kt │ │ ├── activity │ │ └── penguin_hide_and_seek │ │ │ └── PenguinHideAndSeekTest.kt │ │ ├── area │ │ ├── kandarin │ │ │ ├── ourania │ │ │ │ └── OuraniaAltarTest.kt │ │ │ └── tree_gnome_stronghold │ │ │ │ └── TreeGnomeStrongholdTest.kt │ │ ├── karamja │ │ │ └── BrimhavenShortcutsTest.kt │ │ ├── kharidian_desert │ │ │ └── al_kharid │ │ │ │ └── AlKharidMineTest.kt │ │ ├── misthalin │ │ │ ├── BorderGuardTest.kt │ │ │ ├── barbarian_village │ │ │ │ ├── StrongholdOfSecurityDoorsTest.kt │ │ │ │ ├── StrongholdOfSecurityPortalTest.kt │ │ │ │ └── StrongholdOfSecurityRewardTest.kt │ │ │ ├── edgeville │ │ │ │ └── EdgevilleMonkeyBarsTest.kt │ │ │ ├── lumbridge │ │ │ │ └── church │ │ │ │ │ └── GravestonesTest.kt │ │ │ └── varrock │ │ │ │ └── grand_exchange │ │ │ │ └── DecantTest.kt │ │ ├── morytania │ │ │ ├── mort_myre_swamp │ │ │ │ └── grotto │ │ │ │ │ └── GrottoTest.kt │ │ │ ├── port_phasmatys │ │ │ │ └── WreckedGhostShipTest.kt │ │ │ └── slayer_tower │ │ │ │ ├── AberrantSpectreTest.kt │ │ │ │ ├── BansheeTest.kt │ │ │ │ ├── GargoyleTest.kt │ │ │ │ ├── NechryaelTest.kt │ │ │ │ └── SlayerTowerTest.kt │ │ ├── remennik_province │ │ │ └── lighthouse │ │ │ │ └── BasaltRockTest.kt │ │ ├── troll_country │ │ │ └── god_wars_dungeon │ │ │ │ ├── ArmadylPillarTest.kt │ │ │ │ ├── BandosDoorTest.kt │ │ │ │ ├── GodwarsBoulderTest.kt │ │ │ │ ├── SaradominRockTest.kt │ │ │ │ ├── SirGerryTest.kt │ │ │ │ └── ZamorakBridgeTest.kt │ │ └── wilderness │ │ │ ├── WildernessObeliskTest.kt │ │ │ └── abyss │ │ │ ├── AbyssObstaclesTest.kt │ │ │ ├── AbyssalDemonTest.kt │ │ │ └── AbyssalRiftTest.kt │ │ ├── bot │ │ └── path │ │ │ └── DijkstraTest.kt │ │ ├── entity │ │ ├── combat │ │ │ ├── CombatFlinchTest.kt │ │ │ ├── CombatMovementTest.kt │ │ │ ├── CombatRetaliationTest.kt │ │ │ └── CombatTest.kt │ │ ├── death │ │ │ └── DistributionTest.kt │ │ ├── npc │ │ │ ├── combat │ │ │ │ └── HuntModeTest.kt │ │ │ └── shop │ │ │ │ └── ShopTest.kt │ │ ├── obj │ │ │ ├── BushPickingTest.kt │ │ │ ├── ObjectTest.kt │ │ │ ├── canoe │ │ │ │ └── CanoesTest.kt │ │ │ └── ship │ │ │ │ └── CharterShipTest.kt │ │ └── player │ │ │ ├── PlayerTest.kt │ │ │ ├── WeakInteractionTest.kt │ │ │ ├── bank │ │ │ └── BankTest.kt │ │ │ ├── dialogue │ │ │ └── type │ │ │ │ ├── ChoiceTest.kt │ │ │ │ ├── DestroyTest.kt │ │ │ │ ├── DialogueTest.kt │ │ │ │ ├── IntEntryTest.kt │ │ │ │ ├── ItemBoxTest.kt │ │ │ │ ├── LevelUpInteractTest.kt │ │ │ │ ├── LevelUpTest.kt │ │ │ │ ├── MakeAmountTest.kt │ │ │ │ ├── NPCChatTest.kt │ │ │ │ ├── PlayerChatTest.kt │ │ │ │ ├── QuestStartTest.kt │ │ │ │ ├── StatementTest.kt │ │ │ │ └── StringEntryTest.kt │ │ │ ├── effect │ │ │ ├── DragonfireTest.kt │ │ │ ├── HitpointRestorationTest.kt │ │ │ ├── LevelRestorationTest.kt │ │ │ └── degrade │ │ │ │ └── DegradeTest.kt │ │ │ ├── equip │ │ │ └── EquipTest.kt │ │ │ ├── inv │ │ │ ├── DropTest.kt │ │ │ ├── ItemOnItemsTest.kt │ │ │ └── TakeTest.kt │ │ │ └── kept │ │ │ └── PriceCheckerTest.kt │ │ ├── minigame │ │ └── sorceress_garden │ │ │ └── SorceressGardenTest.kt │ │ ├── quest │ │ ├── free │ │ │ └── prince_ali_rescue │ │ │ │ └── PrinceAliRescueTest.kt │ │ ├── member │ │ │ ├── eagels_peak │ │ │ │ └── EaglesEyriesTest.kt │ │ │ ├── fairy_tale_part_2 │ │ │ │ └── fairy_ring │ │ │ │ │ └── FairyRingTest.kt │ │ │ ├── ghost_ahoy │ │ │ │ └── EctopoolTest.kt │ │ │ ├── plague_city │ │ │ │ └── PlagueCityTest.kt │ │ │ ├── the_grand_tree │ │ │ │ └── SpiritTreeTest.kt │ │ │ └── tower_of_life │ │ │ │ └── SatchelTest.kt │ │ └── miniquest │ │ │ ├── AlfredGrimhandsBarCrawlTest.kt │ │ │ └── EnterTheAbyssTest.kt │ │ ├── skill │ │ ├── agility │ │ │ ├── course │ │ │ │ ├── ApeAtollTest.kt │ │ │ │ ├── BarbarianAdvancedTest.kt │ │ │ │ ├── BarbarianOutpostTest.kt │ │ │ │ ├── GnomeAdvancedTest.kt │ │ │ │ ├── GnomeStrongholdTest.kt │ │ │ │ └── WildernessCourseTest.kt │ │ │ └── shortcut │ │ │ │ ├── GrappleTest.kt │ │ │ │ ├── LogBalanceTest.kt │ │ │ │ ├── PipesTest.kt │ │ │ │ ├── SteppingStonesTest.kt │ │ │ │ ├── StilesTest.kt │ │ │ │ └── UnderWallTunnelsTest.kt │ │ ├── constitution │ │ │ └── drink │ │ │ │ └── TeaTest.kt │ │ ├── cooking │ │ │ └── CookingTest.kt │ │ ├── crafting │ │ │ └── JewelleryTest.kt │ │ ├── farming │ │ │ ├── BasketTest.kt │ │ │ └── SackTest.kt │ │ ├── firemaking │ │ │ └── FiremakingTest.kt │ │ ├── fishing │ │ │ └── FishingTest.kt │ │ ├── fletching │ │ │ └── FletchingTest.kt │ │ ├── magic │ │ │ ├── AddChargeGodSpellEffectTest.kt │ │ │ ├── CelestialSurgeBoxTest.kt │ │ │ ├── CelestialWaveBoxTest.kt │ │ │ ├── DungeoneeringBoxTest.kt │ │ │ ├── DungeoneeringRewardStaffTest.kt │ │ │ ├── LawStaffTest.kt │ │ │ ├── MagicCombatFormulaTest.kt │ │ │ ├── MagicTest.kt │ │ │ ├── MagicalBlastBoxTest.kt │ │ │ ├── MagicalBoltBoxTest.kt │ │ │ ├── NatureStaffTest.kt │ │ │ ├── jewellery │ │ │ │ ├── PhoenixNecklaceTest.kt │ │ │ │ └── RingOfLifeTest.kt │ │ │ └── spell │ │ │ │ ├── AncientSpellEffectsTest.kt │ │ │ │ ├── CombinationRuneTest.kt │ │ │ │ ├── DungeoneeringSpellTest.kt │ │ │ │ ├── MagicSpellTest.kt │ │ │ │ ├── MinigameSpellTest.kt │ │ │ │ └── SpellRunesTest.kt │ │ ├── melee │ │ │ ├── CombatFormulaTest.kt │ │ │ ├── MeleeCombatFormulaTest.kt │ │ │ └── armour │ │ │ │ ├── BerserkerNecklaceFormulaTest.kt │ │ │ │ ├── CastleWarsBraceEffectTest.kt │ │ │ │ ├── CombatDegradeTest.kt │ │ │ │ ├── RingOfRecoilTest.kt │ │ │ │ ├── SpiritShieldFormulaTest.kt │ │ │ │ ├── VoidSetEffectFormulaTest.kt │ │ │ │ └── barrows │ │ │ │ ├── AhrimsSetEffectTest.kt │ │ │ │ ├── DharoksSetEffectTest.kt │ │ │ │ ├── GuthansSetEffectTest.kt │ │ │ │ ├── KarilsSetEffectTest.kt │ │ │ │ ├── ToragsSetEffectTest.kt │ │ │ │ └── VeracsSetEffectTest.kt │ │ ├── mining │ │ │ ├── CoalBagTest.kt │ │ │ ├── GemBagTest.kt │ │ │ └── MiningTest.kt │ │ ├── prayer │ │ │ └── PrayerTest.kt │ │ ├── ranged │ │ │ ├── RangedCombatFormulaTest.kt │ │ │ └── ammo │ │ │ │ ├── EnchantedBoltsEffectTest.kt │ │ │ │ └── GodArrowsEffectTest.kt │ │ ├── runecrafting │ │ │ ├── CombinationRunecraftingTest.kt │ │ │ ├── EssencePouchTest.kt │ │ │ ├── MysteriousRuinsTest.kt │ │ │ └── RunecraftingTest.kt │ │ ├── slayer │ │ │ ├── DemonbaneWeaponFormulaTest.kt │ │ │ ├── FerociousRingEffectTest.kt │ │ │ ├── SlayerCombatFormulaTest.kt │ │ │ └── SlayerTaskTest.kt │ │ ├── smithing │ │ │ └── SmeltingTest.kt │ │ ├── summoning │ │ │ ├── ShardSwappingTest.kt │ │ │ └── SummoningCraftingTest.kt │ │ ├── thieving │ │ │ ├── PickpocketingTest.kt │ │ │ ├── StallsTest.kt │ │ │ └── TrapChestTest.kt │ │ └── woodcutting │ │ │ └── WoodcuttingTest.kt │ │ └── social │ │ ├── assist │ │ └── RequestAssistTest.kt │ │ ├── clan │ │ ├── ClanTest.kt │ │ └── LootShareTest.kt │ │ ├── friend │ │ ├── FriendTest.kt │ │ ├── IgnoreTest.kt │ │ └── PrivateChatStatusTest.kt │ │ └── trade │ │ ├── LendTest.kt │ │ ├── TradeTest.kt │ │ └── exchange │ │ ├── GrandExchangeItemSetsTest.kt │ │ ├── GrandExchangeTest.kt │ │ ├── GrandExchangeTutorialTest.kt │ │ ├── history │ │ ├── AggregateTest.kt │ │ ├── PriceHistoryTest.kt │ │ └── TimeFrameTest.kt │ │ ├── limit │ │ └── BuyLimitsTest.kt │ │ └── offer │ │ └── OffersTest.kt │ └── resources │ ├── content │ └── entity │ │ └── player │ │ └── dialogue │ │ └── type │ │ └── glyph-widths-497.dat │ └── logback-test.xml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── network ├── build.gradle.kts └── src │ ├── main │ └── kotlin │ │ └── world │ │ └── gregs │ │ └── voidps │ │ └── network │ │ ├── FileServer.kt │ │ ├── GameServer.kt │ │ ├── LoginServer.kt │ │ ├── Request.kt │ │ ├── Response.kt │ │ ├── Server.kt │ │ ├── client │ │ ├── Client.kt │ │ ├── ClientState.kt │ │ ├── ConnectionQueue.kt │ │ ├── ConnectionTracker.kt │ │ ├── DummyClient.kt │ │ ├── Instruction.kt │ │ ├── IsaacCipher.kt │ │ └── instruction │ │ │ ├── ChangeDisplayMode.kt │ │ │ ├── ChatPrivate.kt │ │ │ ├── ChatPublic.kt │ │ │ ├── ChatTypeChange.kt │ │ │ ├── ClanChatJoin.kt │ │ │ ├── ClanChatKick.kt │ │ │ ├── ClanChatRank.kt │ │ │ ├── ContinueKey.kt │ │ │ ├── EnterInt.kt │ │ │ ├── EnterName.kt │ │ │ ├── EnterString.kt │ │ │ ├── ExamineItem.kt │ │ │ ├── ExamineNpc.kt │ │ │ ├── ExamineObject.kt │ │ │ ├── ExecuteCommand.kt │ │ │ ├── FinishRegionLoad.kt │ │ │ ├── FriendAdd.kt │ │ │ ├── FriendDelete.kt │ │ │ ├── IgnoreAdd.kt │ │ │ ├── IgnoreDelete.kt │ │ │ ├── InteractDialogue.kt │ │ │ ├── InteractDialogueItem.kt │ │ │ ├── InteractFloorItem.kt │ │ │ ├── InteractInterface.kt │ │ │ ├── InteractInterfaceFloorItem.kt │ │ │ ├── InteractInterfaceItem.kt │ │ │ ├── InteractInterfaceNPC.kt │ │ │ ├── InteractInterfaceObject.kt │ │ │ ├── InteractInterfacePlayer.kt │ │ │ ├── InteractNPC.kt │ │ │ ├── InteractObject.kt │ │ │ ├── InteractPlayer.kt │ │ │ ├── InterfaceClosedInstruction.kt │ │ │ ├── MoveInventoryItem.kt │ │ │ ├── QuickChatPrivate.kt │ │ │ ├── QuickChatPublic.kt │ │ │ ├── ReportAbuse.kt │ │ │ ├── SongEnd.kt │ │ │ ├── Walk.kt │ │ │ └── WorldMapClick.kt │ │ ├── file │ │ ├── FileProvider.kt │ │ ├── PrefetchKeys.kt │ │ └── type │ │ │ ├── CacheFileProvider.kt │ │ │ └── MemoryFileProvider.kt │ │ └── login │ │ ├── AccountLoader.kt │ │ ├── PasswordManager.kt │ │ ├── Protocol.kt │ │ └── protocol │ │ ├── Decoder.kt │ │ ├── Decoders.kt │ │ ├── Encoders.kt │ │ ├── JagExtensions.kt │ │ ├── Visual.kt │ │ ├── decode │ │ ├── APCoordinateDecoder.kt │ │ ├── AddFriendDecoder.kt │ │ ├── AddIgnoreDecoder.kt │ │ ├── AntiCheatDecoder.kt │ │ ├── ChatTypeDecoder.kt │ │ ├── ClanChatJoinDecoder.kt │ │ ├── ClanChatKickDecoder.kt │ │ ├── ClanChatRankDecoder.kt │ │ ├── ConsoleCommandDecoder.kt │ │ ├── DeleteFriendDecoder.kt │ │ ├── DeleteIgnoreDecoder.kt │ │ ├── DialogueContinueDecoder.kt │ │ ├── DialogueContinueItemDecoder.kt │ │ ├── FloorItemExamineDecoder.kt │ │ ├── FloorItemOption1Decoder.kt │ │ ├── FloorItemOption2Decoder.kt │ │ ├── FloorItemOption3Decoder.kt │ │ ├── FloorItemOption4Decoder.kt │ │ ├── FloorItemOption5Decoder.kt │ │ ├── HyperlinkDecoder.kt │ │ ├── IntegerEntryDecoder.kt │ │ ├── InterfaceClosedDecoder.kt │ │ ├── InterfaceOnFloorItemDecoder.kt │ │ ├── InterfaceOnInterfaceDecoder.kt │ │ ├── InterfaceOnNpcDecoder.kt │ │ ├── InterfaceOnObjectDecoder.kt │ │ ├── InterfaceOnPlayerDecoder.kt │ │ ├── InterfaceOptionDecoder.kt │ │ ├── InterfaceSwitchComponentsDecoder.kt │ │ ├── KeysPressedDecoder.kt │ │ ├── LatencyDecoder.kt │ │ ├── LobbyOnlineStatusDecoder.kt │ │ ├── LobbyWorldListRefreshDecoder.kt │ │ ├── MovedCameraDecoder.kt │ │ ├── MovedMouseDecoder.kt │ │ ├── NPCExamineDecoder.kt │ │ ├── NPCOption1Decoder.kt │ │ ├── NPCOption2Decoder.kt │ │ ├── NPCOption3Decoder.kt │ │ ├── NPCOption4Decoder.kt │ │ ├── NPCOption5Decoder.kt │ │ ├── NameEntryDecoder.kt │ │ ├── ObjectExamineDecoder.kt │ │ ├── ObjectOption1Decoder.kt │ │ ├── ObjectOption2Decoder.kt │ │ ├── ObjectOption3Decoder.kt │ │ ├── ObjectOption4Decoder.kt │ │ ├── ObjectOption5Decoder.kt │ │ ├── PingDecoder.kt │ │ ├── PlayerOption1Decoder.kt │ │ ├── PlayerOption2Decoder.kt │ │ ├── PlayerOption3Decoder.kt │ │ ├── PlayerOption4Decoder.kt │ │ ├── PlayerOption5Decoder.kt │ │ ├── PlayerOption6Decoder.kt │ │ ├── PlayerOption7Decoder.kt │ │ ├── PlayerOption8Decoder.kt │ │ ├── PrivateDecoder.kt │ │ ├── PrivateQuickChatDecoder.kt │ │ ├── PublicDecoder.kt │ │ ├── PublicQuickChatDecoder.kt │ │ ├── ReflectionResponseDecoder.kt │ │ ├── RegionLoadedDecoder.kt │ │ ├── RegionLoadingDecoder.kt │ │ ├── ReportAbuseDecoder.kt │ │ ├── ScreenChangeDecoder.kt │ │ ├── SecondaryTeleportDecoder.kt │ │ ├── SongEndDecoder.kt │ │ ├── StringEntryDecoder.kt │ │ ├── ToolkitPreferencesDecoder.kt │ │ ├── UnknownDecoder.kt │ │ ├── WalkMapDecoder.kt │ │ ├── WalkMiniMapDecoder.kt │ │ ├── WindowClickDecoder.kt │ │ ├── WindowFocusDecoder.kt │ │ └── WorldMapClickDecoder.kt │ │ ├── encode │ │ ├── CameraEncoders.kt │ │ ├── ChatEncoder.kt │ │ ├── ChatStatusEncoder.kt │ │ ├── ClanEncoder.kt │ │ ├── ContainerEncoders.kt │ │ ├── ContextMenuOptionEncoder.kt │ │ ├── FriendsEncoder.kt │ │ ├── IgnoreEncoder.kt │ │ ├── InterfaceEncoders.kt │ │ ├── LoginEncoder.kt │ │ ├── LogoutEncoder.kt │ │ ├── MapRegionEncoders.kt │ │ ├── MinimapEncoders.kt │ │ ├── NPCUpdateEncoder.kt │ │ ├── ObjectEncoders.kt │ │ ├── PlayerUpdateEncoder.kt │ │ ├── ProjectileEncoders.kt │ │ ├── RunEnergyEncoder.kt │ │ ├── ScriptEncoder.kt │ │ ├── SkillLevelEncoder.kt │ │ ├── SoundEncoder.kt │ │ ├── TextTileEncoder.kt │ │ ├── VarbitEncoder.kt │ │ ├── VarcEncoder.kt │ │ ├── VarcStrEncoder.kt │ │ ├── VarpEncoder.kt │ │ ├── WeightEncoder.kt │ │ ├── ZoneEncoders.kt │ │ ├── ZoneUpdateEncoders.kt │ │ └── zone │ │ │ ├── FloorItemAddition.kt │ │ │ ├── FloorItemRemoval.kt │ │ │ ├── FloorItemReveal.kt │ │ │ ├── FloorItemUpdate.kt │ │ │ ├── GraphicAddition.kt │ │ │ ├── MidiAddition.kt │ │ │ ├── ObjectAddition.kt │ │ │ ├── ObjectAnimation.kt │ │ │ ├── ObjectRemoval.kt │ │ │ ├── ProjectileAddition.kt │ │ │ ├── SoundAddition.kt │ │ │ └── ZoneUpdate.kt │ │ └── visual │ │ ├── NPCVisuals.kt │ │ ├── PlayerVisuals.kt │ │ ├── VisualEncoder.kt │ │ ├── VisualMask.kt │ │ ├── Visuals.kt │ │ ├── encode │ │ ├── SayEncoder.kt │ │ ├── WatchEncoder.kt │ │ ├── npc │ │ │ ├── NPCAnimationEncoder.kt │ │ │ ├── NPCColourOverlayEncoder.kt │ │ │ ├── NPCExactMovementEncoder.kt │ │ │ ├── NPCFaceEncoder.kt │ │ │ ├── NPCHitsEncoder.kt │ │ │ ├── NPCPrimaryGraphicEncoder.kt │ │ │ ├── NPCSecondaryGraphicEncoder.kt │ │ │ ├── NPCTimeBarEncoder.kt │ │ │ └── TransformEncoder.kt │ │ └── player │ │ │ ├── AppearanceEncoder.kt │ │ │ ├── MovementTypeEncoder.kt │ │ │ ├── PlayerAnimationEncoder.kt │ │ │ ├── PlayerColourOverlayEncoder.kt │ │ │ ├── PlayerExactMovementEncoder.kt │ │ │ ├── PlayerFaceEncoder.kt │ │ │ ├── PlayerHitsEncoder.kt │ │ │ ├── PlayerPrimaryGraphicEncoder.kt │ │ │ ├── PlayerSecondaryGraphicEncoder.kt │ │ │ ├── PlayerTimeBarEncoder.kt │ │ │ └── TemporaryMoveTypeEncoder.kt │ │ └── update │ │ ├── Animation.kt │ │ ├── ColourOverlay.kt │ │ ├── ExactMovement.kt │ │ ├── Face.kt │ │ ├── Graphic.kt │ │ ├── HitSplat.kt │ │ ├── Hits.kt │ │ ├── Say.kt │ │ ├── TimeBar.kt │ │ ├── Watch.kt │ │ ├── npc │ │ └── Transformation.kt │ │ └── player │ │ ├── Appearance.kt │ │ ├── Body.kt │ │ ├── BodyColour.kt │ │ ├── BodyPart.kt │ │ ├── EquipSlot.kt │ │ ├── MoveType.kt │ │ └── MovementType.kt │ └── test │ ├── kotlin │ └── world │ │ └── gregs │ │ └── voidps │ │ └── network │ │ ├── FileServerTest.kt │ │ ├── GameServerTest.kt │ │ ├── LoginServerTest.kt │ │ ├── PasswordManagerTest.kt │ │ ├── client │ │ ├── ConnectionQueueTest.kt │ │ └── ConnectionTrackerTest.kt │ │ └── login │ │ └── protocol │ │ ├── DecoderTest.kt │ │ ├── EncodersTest.kt │ │ ├── JagExtensionsTest.kt │ │ └── visual │ │ └── VisualsTest.kt │ └── resources │ ├── decoder-packets.csv │ ├── encoder-packets.csv │ ├── encoder-zone-packets.csv │ └── huffman.csv ├── qodana.yaml ├── settings.gradle.kts ├── tools ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ └── world │ │ │ └── gregs │ │ │ ├── voidps │ │ │ └── tools │ │ │ │ ├── AnimationDefinitions.kt │ │ │ │ ├── ClientScriptDefinitions.kt │ │ │ │ ├── DropTableDefinitions.kt │ │ │ │ ├── EnumDefinitions.kt │ │ │ │ ├── FontDefinitions.kt │ │ │ │ ├── GraphicDefinitions.kt │ │ │ │ ├── IdentityKitDefinitions.kt │ │ │ │ ├── InterfaceDefinitions.kt │ │ │ │ ├── InventoryDefinitions.kt │ │ │ │ ├── ItemDefinitions.kt │ │ │ │ ├── NPCDefinitions.kt │ │ │ │ ├── ObjectDefinitions.kt │ │ │ │ ├── OreIdentifier.kt │ │ │ │ ├── Pipeline.kt │ │ │ │ ├── QuestDefinitions.kt │ │ │ │ ├── QuickChatDefinitions.kt │ │ │ │ ├── RenderAnimationDefinitions.kt │ │ │ │ ├── StructDefinitions.kt │ │ │ │ ├── VarBitDefinitions.kt │ │ │ │ ├── WorldMapDefinitions.kt │ │ │ │ ├── WorldMapInfoDefinitions.kt │ │ │ │ ├── cache │ │ │ │ ├── CacheBuilder.kt │ │ │ │ ├── CopyCs2Script.kt │ │ │ │ ├── DumpEnums.kt │ │ │ │ ├── DumpMap.kt │ │ │ │ ├── DumpSprites.kt │ │ │ │ ├── DumpStructs.kt │ │ │ │ ├── DumpStyles.kt │ │ │ │ ├── FixEnums.kt │ │ │ │ ├── FixItems.kt │ │ │ │ ├── FixStructs.kt │ │ │ │ ├── HashCodeChecker.kt │ │ │ │ ├── HashCodeMatcher.kt │ │ │ │ ├── HashCodeVerify.kt │ │ │ │ ├── InterfaceModifier.kt │ │ │ │ ├── Keywords.kt │ │ │ │ ├── MoveCameraClientScript.kt │ │ │ │ ├── OpenRS2.kt │ │ │ │ ├── Permutations.kt │ │ │ │ ├── PrefetchKeyGeneration.kt │ │ │ │ ├── RemoveBzip2.kt │ │ │ │ ├── RemovePriceCheckerTradeLimit.kt │ │ │ │ ├── RemoveXteas.kt │ │ │ │ ├── ValidateMapObjects.kt │ │ │ │ └── Xteas.kt │ │ │ │ ├── convert │ │ │ │ ├── CheckToml.kt │ │ │ │ ├── ConfigRewriter.kt │ │ │ │ ├── ConvertLogDates.kt │ │ │ │ ├── DefinitionsParameterConverter.kt │ │ │ │ ├── DropTableConverter.kt │ │ │ │ ├── InterfaceDecoder718.kt │ │ │ │ ├── InventoryConverter.kt │ │ │ │ ├── ItemDecoder718.kt │ │ │ │ ├── NPCDecoder718.kt │ │ │ │ ├── NPCSpawnConverter.kt │ │ │ │ ├── ObjectDecoder718.kt │ │ │ │ ├── QuestDecoderRS3.kt │ │ │ │ ├── RS3QuestConverter.kt │ │ │ │ ├── SkillDataConverter.kt │ │ │ │ └── SpawnSorter.kt │ │ │ │ ├── definition │ │ │ │ ├── YamlInjector.kt │ │ │ │ ├── YamlPairObjectNames.kt │ │ │ │ ├── YamlSorter.kt │ │ │ │ ├── item │ │ │ │ │ ├── ItemDefinitionPatcher.kt │ │ │ │ │ ├── ItemDefinitionPipeline.kt │ │ │ │ │ ├── MoveInventoryDefinitions.kt │ │ │ │ │ └── pipe │ │ │ │ │ │ ├── extra │ │ │ │ │ │ ├── ItemDefaults.kt │ │ │ │ │ │ ├── ItemEquipmentInfo.kt │ │ │ │ │ │ ├── ItemManualChanges.kt │ │ │ │ │ │ ├── ItemNoted.kt │ │ │ │ │ │ ├── ItemTypes.kt │ │ │ │ │ │ └── wiki │ │ │ │ │ │ │ ├── InfoBoxConstruction.kt │ │ │ │ │ │ │ ├── InfoBoxItem.kt │ │ │ │ │ │ │ ├── InfoBoxMonster.kt │ │ │ │ │ │ │ ├── InfoBoxNPC.kt │ │ │ │ │ │ │ ├── InfoBoxPet.kt │ │ │ │ │ │ │ ├── ItemBonuses.kt │ │ │ │ │ │ │ ├── ItemExchangeLimits.kt │ │ │ │ │ │ │ └── ItemExchangePrices.kt │ │ │ │ │ │ └── page │ │ │ │ │ │ ├── LivePageCollector.kt │ │ │ │ │ │ ├── OfflinePageCollector.kt │ │ │ │ │ │ ├── PageCollector.kt │ │ │ │ │ │ └── UniqueIdentifiers.kt │ │ │ │ ├── npc │ │ │ │ │ ├── NPCDefinitionPipeline.kt │ │ │ │ │ └── pipe │ │ │ │ │ │ └── wiki │ │ │ │ │ │ ├── InfoBoxNPC.kt │ │ │ │ │ │ ├── NPCDefaults.kt │ │ │ │ │ │ └── NPCManualChanges.kt │ │ │ │ └── obj │ │ │ │ │ ├── ObjectDefinitionPipeline.kt │ │ │ │ │ └── pipe │ │ │ │ │ ├── ObjectDoorsGates.kt │ │ │ │ │ ├── ObjectManualChanges.kt │ │ │ │ │ ├── ObjectManualTreeChanges.kt │ │ │ │ │ ├── ObjectTrapdoors.kt │ │ │ │ │ └── RemoveNullEmptyExtras.kt │ │ │ │ ├── detail │ │ │ │ ├── AnimationNames.kt │ │ │ │ ├── GraphicNames.kt │ │ │ │ ├── InventoryNames.kt │ │ │ │ ├── NPCNames.kt │ │ │ │ └── NameDumper.kt │ │ │ │ ├── graph │ │ │ │ ├── MapGraph.kt │ │ │ │ ├── MapGraphLoader.kt │ │ │ │ ├── SmallTraversal.kt │ │ │ │ └── TileTraversalStrategy.kt │ │ │ │ ├── map │ │ │ │ ├── MapDecoder.kt │ │ │ │ ├── MapObjectDefinitionDecoder.kt │ │ │ │ ├── MapPacker.kt │ │ │ │ ├── MissingMapFinder.kt │ │ │ │ ├── obj │ │ │ │ │ ├── GameObjectOption.kt │ │ │ │ │ ├── ObjectIdentification.kt │ │ │ │ │ ├── ObjectIdentificationContext.kt │ │ │ │ │ ├── ObjectIdentifier.kt │ │ │ │ │ ├── ObjectLinker.kt │ │ │ │ │ ├── ObjectUsageFinder.kt │ │ │ │ │ ├── WorldMapDungeons.kt │ │ │ │ │ ├── WorldMapLinkIdentifier.kt │ │ │ │ │ ├── WorldMapLinks.kt │ │ │ │ │ └── types │ │ │ │ │ │ ├── Dungeon.kt │ │ │ │ │ │ ├── Ladder.kt │ │ │ │ │ │ ├── Objects.kt │ │ │ │ │ │ ├── Stair.kt │ │ │ │ │ │ └── Wall.kt │ │ │ │ ├── render │ │ │ │ │ ├── ExplvMapGenerator.kt │ │ │ │ │ ├── MapZoomImageGenerator.kt │ │ │ │ │ ├── Stitch.kt │ │ │ │ │ ├── WorldMapDumper.kt │ │ │ │ │ ├── draw │ │ │ │ │ │ ├── MinimapIconPainter.kt │ │ │ │ │ │ ├── ObjectPainter.kt │ │ │ │ │ │ ├── RegionRenderer.kt │ │ │ │ │ │ └── TileLevel.kt │ │ │ │ │ ├── load │ │ │ │ │ │ ├── MapConstants.kt │ │ │ │ │ │ ├── MapTileSettings.kt │ │ │ │ │ │ └── RegionManager.kt │ │ │ │ │ ├── model │ │ │ │ │ │ ├── TextureColours.kt │ │ │ │ │ │ └── TileColours.kt │ │ │ │ │ └── raster │ │ │ │ │ │ ├── ColourPalette.kt │ │ │ │ │ │ └── Raster.kt │ │ │ │ ├── view │ │ │ │ │ ├── MapViewer.kt │ │ │ │ │ ├── RegionLoader.kt │ │ │ │ │ ├── draw │ │ │ │ │ │ ├── AreaPointConnector.kt │ │ │ │ │ │ ├── GraphDrawer.kt │ │ │ │ │ │ ├── HighlightedArea.kt │ │ │ │ │ │ ├── HighlightedTile.kt │ │ │ │ │ │ ├── LinkConnector.kt │ │ │ │ │ │ ├── MapView.kt │ │ │ │ │ │ └── WorldMap.kt │ │ │ │ │ ├── graph │ │ │ │ │ │ ├── Area.kt │ │ │ │ │ │ ├── AreaSet.kt │ │ │ │ │ │ ├── Link.kt │ │ │ │ │ │ ├── MutableNavigationGraph.kt │ │ │ │ │ │ └── Point.kt │ │ │ │ │ ├── interact │ │ │ │ │ │ ├── MouseClick.kt │ │ │ │ │ │ ├── MouseDrag.kt │ │ │ │ │ │ ├── MouseHover.kt │ │ │ │ │ │ ├── MouseZoom.kt │ │ │ │ │ │ └── ResizeListener.kt │ │ │ │ │ └── ui │ │ │ │ │ │ ├── AreaPointSettings.kt │ │ │ │ │ │ ├── AreaSettings.kt │ │ │ │ │ │ ├── CoordinatesPane.kt │ │ │ │ │ │ ├── LinkSettings.kt │ │ │ │ │ │ ├── MutableListPane.kt │ │ │ │ │ │ ├── NodeSettings.kt │ │ │ │ │ │ └── OptionsPane.kt │ │ │ │ └── xtea │ │ │ │ │ ├── CacheMapDecryption.kt │ │ │ │ │ ├── XteaCrossReferencer.kt │ │ │ │ │ ├── XteaPacker.kt │ │ │ │ │ └── XteaValidator.kt │ │ │ │ ├── web │ │ │ │ ├── ArchiveSiteMirror.kt │ │ │ │ ├── LiveSiteMirror.kt │ │ │ │ └── UrlHandler.kt │ │ │ │ └── wiki │ │ │ │ ├── InfoBoxDumper.kt │ │ │ │ ├── ItemInfoBoxDumper.kt │ │ │ │ ├── MusicInfoBoxDumper.kt │ │ │ │ ├── NPCSpawnDumper.kt │ │ │ │ ├── RunescapeWikiPagesFullFilter.kt │ │ │ │ ├── RunescapeWikiPagesParser.kt │ │ │ │ ├── dialogue │ │ │ │ ├── Dialogue.kt │ │ │ │ ├── DialogueConverter.kt │ │ │ │ ├── DialogueParsing.kt │ │ │ │ └── DialogueProcessing.kt │ │ │ │ ├── model │ │ │ │ ├── Infobox.kt │ │ │ │ ├── Wiki.kt │ │ │ │ ├── WikiNamespace.kt │ │ │ │ ├── WikiPage.kt │ │ │ │ ├── WikiPageRevision.kt │ │ │ │ └── WikiPageTable.kt │ │ │ │ └── scrape │ │ │ │ ├── GrandExchangeDetailDumper.kt │ │ │ │ ├── GrandExchangeDetailParser.kt │ │ │ │ ├── MonsterInfoBoxDumper.kt │ │ │ │ ├── RunescapeWiki.kt │ │ │ │ ├── RunescapeWikiAutoExporter.kt │ │ │ │ ├── RunescapeWikiExporter.kt │ │ │ │ ├── RunescapeWikiMimeExporter.kt │ │ │ │ ├── RunescapeWikiModifier.kt │ │ │ │ ├── RunescapeWikiParser.kt │ │ │ │ ├── RunescapeWikiScraper.kt │ │ │ │ └── WebsiteScraper.kt │ │ │ └── yaml │ │ │ ├── CharReader.kt │ │ │ ├── CharWriter.kt │ │ │ ├── Yaml.kt │ │ │ ├── read │ │ │ ├── ExplicitCollectionReader.kt │ │ │ ├── NormalCollectionReader.kt │ │ │ ├── YamlReader.kt │ │ │ └── YamlReaderConfiguration.kt │ │ │ └── write │ │ │ ├── ExplicitCollectionWriter.kt │ │ │ ├── NormalCollectionWriter.kt │ │ │ ├── YamlWriter.kt │ │ │ └── YamlWriterConfiguration.kt │ └── resources │ │ └── keywords.txt │ └── test │ ├── kotlin │ └── world │ │ └── gregs │ │ ├── voidps │ │ └── tools │ │ │ ├── MockkInline.kt │ │ │ ├── cache │ │ │ └── XteasTest.kt │ │ │ ├── graph │ │ │ └── MapGraphTest.kt │ │ │ ├── map │ │ │ └── MapDecoderTest.kt │ │ │ └── web │ │ │ └── UrlHandlerTest.kt │ │ └── yaml │ │ ├── CharReaderTest.kt │ │ ├── YamlPerformanceTest.kt │ │ ├── read │ │ ├── ExplicitCollectionReaderTest.kt │ │ ├── NormalCollectionReaderFormatIT.kt │ │ ├── NormalCollectionReaderNestTest.kt │ │ ├── NormalCollectionReaderTest.kt │ │ ├── NormalCollectionReaderTypeIT.kt │ │ ├── YamlReaderAnchorTest.kt │ │ ├── YamlReaderScenarioTest.kt │ │ └── YamlReaderTest.kt │ │ └── write │ │ ├── ExplicitCollectionWriterTest.kt │ │ ├── NormalCollectionWriterTest.kt │ │ ├── YamlWriterScenarioTest.kt │ │ └── YamlWriterTest.kt │ └── resources │ ├── logback-test.xml │ └── xteas │ ├── 123.dat │ ├── 123.txt │ ├── xteas-default.json │ └── xteas.json └── types ├── build.gradle.kts └── src ├── main └── kotlin │ └── world │ └── gregs │ └── voidps │ └── type │ ├── Area.kt │ ├── Delta.kt │ ├── Direction.kt │ ├── Distance.kt │ ├── Random.kt │ ├── Region.kt │ ├── RegionLevel.kt │ ├── Tile.kt │ ├── Zone.kt │ └── area │ ├── Cuboid.kt │ ├── Polygon.kt │ └── Rectangle.kt └── test └── kotlin └── world └── gregs └── voidps └── type ├── DeltaTest.kt ├── DistanceTest.kt ├── TileTest.kt ├── area ├── CuboidTest.kt ├── DistanceTest.kt ├── PolygonTest.kt ├── RectangleTest.kt └── WithinTest.kt ├── region ├── RegionLevelTest.kt └── RegionTest.kt └── zone └── ZoneTest.kt /.dockerignore: -------------------------------------------------------------------------------- 1 | saves -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/create_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/.github/workflows/create_release.yml -------------------------------------------------------------------------------- /.github/workflows/qodana_code_quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/.github/workflows/qodana_code_quality.yml -------------------------------------------------------------------------------- /.github/workflows/test-with-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/.github/workflows/test-with-coverage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/.gitignore -------------------------------------------------------------------------------- /.run/Void.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/.run/Void.run.xml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/README.md -------------------------------------------------------------------------------- /buffer/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("shared") 3 | } 4 | -------------------------------------------------------------------------------- /cache/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/cache/build.gradle.kts -------------------------------------------------------------------------------- /cache/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/cache/src/main/resources/logback.xml -------------------------------------------------------------------------------- /cache/src/test/resources/huffman.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/cache/src/test/resources/huffman.csv -------------------------------------------------------------------------------- /config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/config/README.md -------------------------------------------------------------------------------- /config/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/config/build.gradle.kts -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/invalid/array-comma-less.toml: -------------------------------------------------------------------------------- 1 | integers = [ 1 2 3 4 5 ] -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/invalid/array-commas.toml: -------------------------------------------------------------------------------- 1 | integers = [ 1, 2, , 4, 5] -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/invalid/array-space-less.toml: -------------------------------------------------------------------------------- 1 | mixed = [ 123"four"5"six" ] -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/invalid/invalid-float-infix.toml: -------------------------------------------------------------------------------- 1 | invalid_float_3 = 3.e+20 -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/invalid/invalid-float-prefix.toml: -------------------------------------------------------------------------------- 1 | # INVALID FLOATS 2 | invalid_float_1 = .7 -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/invalid/map-space-less.toml: -------------------------------------------------------------------------------- 1 | mixed = {one=123two="four"} -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/invalid/missing-key.toml: -------------------------------------------------------------------------------- 1 | = "no key name" # INVALID -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/invalid/missing-value.toml: -------------------------------------------------------------------------------- 1 | key = # INVALID -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/invalid/whitespace-in-key.toml: -------------------------------------------------------------------------------- 1 | fruit. color = "yellow" # invalid -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/root-pairs.toml: -------------------------------------------------------------------------------- 1 | key = "value" 2 | number = 3.14 3 | -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/valid/array-comma-only.toml: -------------------------------------------------------------------------------- 1 | integers = [1,2,3,4,5] -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/valid/basic-string.toml: -------------------------------------------------------------------------------- 1 | str = "I'm a string. \"You can quote me\". Name\tJos\u00E9\nLocation\tSF." -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/valid/dotted-float.toml: -------------------------------------------------------------------------------- 1 | 3.14159 = "pi" -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/valid/dotted-float.txt: -------------------------------------------------------------------------------- 1 | [] 3.14159 = "pi" 2 | -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/valid/float-underscores.toml: -------------------------------------------------------------------------------- 1 | flt8 = 224_617.445_991_228 -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/valid/float-underscores.txt: -------------------------------------------------------------------------------- 1 | [] flt8 = 224617.445991228 2 | -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/valid/key-value-pair.toml: -------------------------------------------------------------------------------- 1 | key = "value" -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/valid/key-value-pair.txt: -------------------------------------------------------------------------------- 1 | [] key = "value" 2 | -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/valid/map-comma-only.toml: -------------------------------------------------------------------------------- 1 | comma = {one=1,two=2} -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/valid/section-names.toml: -------------------------------------------------------------------------------- 1 | [dog."tater.man"] 2 | type.name = "pug" -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/valid/section-names.txt: -------------------------------------------------------------------------------- 1 | [dog."tater.man"] type.name = "pug" 2 | -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/valid/section.toml: -------------------------------------------------------------------------------- 1 | [table] -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/read/valid/section.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/write/valid/boolean-value.toml: -------------------------------------------------------------------------------- 1 | key = true 2 | -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/write/valid/double-value.toml: -------------------------------------------------------------------------------- 1 | key = 12.34 2 | -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/write/valid/key-value-pair.toml: -------------------------------------------------------------------------------- 1 | key = "value" 2 | -------------------------------------------------------------------------------- /config/src/test/resources/world/gregs/config/write/valid/number-value.toml: -------------------------------------------------------------------------------- 1 | key = 1234 2 | -------------------------------------------------------------------------------- /data/achievement/achievement_diary.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/achievement/achievement_diary.items.toml -------------------------------------------------------------------------------- /data/achievement/achievement_task.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/achievement/achievement_task.ifaces.toml -------------------------------------------------------------------------------- /data/achievement/achievement_task.jingles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/achievement/achievement_task.jingles.toml -------------------------------------------------------------------------------- /data/achievement/achievement_task.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/achievement/achievement_task.varbits.toml -------------------------------------------------------------------------------- /data/achievement/achievement_task.varcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/achievement/achievement_task.varcs.toml -------------------------------------------------------------------------------- /data/achievement/achievement_task.varps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/achievement/achievement_task.varps.toml -------------------------------------------------------------------------------- /data/achievement/achievement_task.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/achievement/achievement_task.vars.toml -------------------------------------------------------------------------------- /data/achievement/ardougne_tasks.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/achievement/ardougne_tasks.varbits.toml -------------------------------------------------------------------------------- /data/achievement/falador_easy.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/achievement/falador_easy.varbits.toml -------------------------------------------------------------------------------- /data/achievement/fremennik_tasks.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/achievement/fremennik_tasks.varbits.toml -------------------------------------------------------------------------------- /data/achievement/karamja_tasks.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/achievement/karamja_tasks.varbits.toml -------------------------------------------------------------------------------- /data/achievement/seers_village_tasks.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/achievement/seers_village_tasks.varbits.toml -------------------------------------------------------------------------------- /data/achievement/varrock_tasks.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/achievement/varrock_tasks.varbits.toml -------------------------------------------------------------------------------- /data/activity/ancient_effigies.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/ancient_effigies.items.toml -------------------------------------------------------------------------------- /data/activity/circus/circus.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/circus/circus.ifaces.toml -------------------------------------------------------------------------------- /data/activity/circus/circus.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/circus/circus.items.toml -------------------------------------------------------------------------------- /data/activity/circus/circus.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/circus/circus.npc-spawns.toml -------------------------------------------------------------------------------- /data/activity/circus/circus.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/circus/circus.npcs.toml -------------------------------------------------------------------------------- /data/activity/circus/circus.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/circus/circus.varbits.toml -------------------------------------------------------------------------------- /data/activity/court_summons.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/court_summons.items.toml -------------------------------------------------------------------------------- /data/activity/event/christmas/christmas.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/christmas/christmas.gfx.toml -------------------------------------------------------------------------------- /data/activity/event/christmas/christmas.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/christmas/christmas.items.toml -------------------------------------------------------------------------------- /data/activity/event/christmas/christmas.jingles.toml: -------------------------------------------------------------------------------- 1 | [christmas_shanty_claws] 2 | id = 237 3 | -------------------------------------------------------------------------------- /data/activity/event/christmas/christmas.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/christmas/christmas.npcs.toml -------------------------------------------------------------------------------- /data/activity/event/christmas/christmas.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/christmas/christmas.teles.toml -------------------------------------------------------------------------------- /data/activity/event/cryptic_clue_fest.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/cryptic_clue_fest.items.toml -------------------------------------------------------------------------------- /data/activity/event/easter/easter.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/easter/easter.anims.toml -------------------------------------------------------------------------------- /data/activity/event/easter/easter.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/easter/easter.items.toml -------------------------------------------------------------------------------- /data/activity/event/easter/easter.jingles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/easter/easter.jingles.toml -------------------------------------------------------------------------------- /data/activity/event/easter/easter.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/easter/easter.npc-spawns.toml -------------------------------------------------------------------------------- /data/activity/event/easter/easter.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/easter/easter.npcs.toml -------------------------------------------------------------------------------- /data/activity/event/halloween/halloween.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/halloween/halloween.anims.toml -------------------------------------------------------------------------------- /data/activity/event/halloween/halloween.gfx.toml: -------------------------------------------------------------------------------- 1 | [play_with_eek] 2 | id = 2178 3 | -------------------------------------------------------------------------------- /data/activity/event/halloween/halloween.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/halloween/halloween.items.toml -------------------------------------------------------------------------------- /data/activity/event/halloween/halloween.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/halloween/halloween.npcs.toml -------------------------------------------------------------------------------- /data/activity/event/halloween/halloween.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/halloween/halloween.teles.toml -------------------------------------------------------------------------------- /data/activity/event/oktoberfest.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/oktoberfest.items.toml -------------------------------------------------------------------------------- /data/activity/event/random/pillory.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/random/pillory.shops.toml -------------------------------------------------------------------------------- /data/activity/event/random/random-events.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/random/random-events.npcs.toml -------------------------------------------------------------------------------- /data/activity/event/random/random_event.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/random/random_event.drops.toml -------------------------------------------------------------------------------- /data/activity/event/random/random_event.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/random/random_event.items.toml -------------------------------------------------------------------------------- /data/activity/event/random/random_event.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/random/random_event.npcs.toml -------------------------------------------------------------------------------- /data/activity/event/random_event.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/random_event.items.toml -------------------------------------------------------------------------------- /data/activity/event/spring.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/spring.items.toml -------------------------------------------------------------------------------- /data/activity/event/thanksgiving.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/event/thanksgiving.items.toml -------------------------------------------------------------------------------- /data/activity/evil_tree/evil_tree.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/evil_tree/evil_tree.gfx.toml -------------------------------------------------------------------------------- /data/activity/evil_tree/evil_tree.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/evil_tree/evil_tree.items.toml -------------------------------------------------------------------------------- /data/activity/evil_tree/evil_tree.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/evil_tree/evil_tree.varbits.toml -------------------------------------------------------------------------------- /data/activity/fish_flingers.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/fish_flingers.items.toml -------------------------------------------------------------------------------- /data/activity/penguin_hide_and_seek/penguin_hide_and_seek.anims.toml: -------------------------------------------------------------------------------- 1 | [spot_penguin] 2 | id = 10355 3 | -------------------------------------------------------------------------------- /data/activity/sawmill_training/sawmill.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/activity/sawmill_training/sawmill.shops.toml -------------------------------------------------------------------------------- /data/activity/shooting_star/shooting_star.jingles.toml: -------------------------------------------------------------------------------- 1 | [shooting_star_discovered] 2 | id = 344 3 | -------------------------------------------------------------------------------- /data/area/asgarnia/burthorpe/burthorpe.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/burthorpe/burthorpe.areas.toml -------------------------------------------------------------------------------- /data/area/asgarnia/burthorpe/burthorpe.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/burthorpe/burthorpe.drops.toml -------------------------------------------------------------------------------- /data/area/asgarnia/burthorpe/burthorpe.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/burthorpe/burthorpe.npcs.toml -------------------------------------------------------------------------------- /data/area/asgarnia/burthorpe/burthorpe.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/burthorpe/burthorpe.shops.toml -------------------------------------------------------------------------------- /data/area/asgarnia/burthorpe/burthorpe.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/burthorpe/burthorpe.teles.toml -------------------------------------------------------------------------------- /data/area/asgarnia/burthorpe/heroes_guild/heroes_guild.objs.toml: -------------------------------------------------------------------------------- 1 | [fountain_of_heroes] 2 | id = 36695 3 | examine = "A source of pure water." 4 | -------------------------------------------------------------------------------- /data/area/asgarnia/entrana/entrana.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/entrana/entrana.areas.toml -------------------------------------------------------------------------------- /data/area/asgarnia/entrana/entrana.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/entrana/entrana.drops.toml -------------------------------------------------------------------------------- /data/area/asgarnia/entrana/entrana.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/entrana/entrana.npc-spawns.toml -------------------------------------------------------------------------------- /data/area/asgarnia/entrana/entrana.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/entrana/entrana.npcs.toml -------------------------------------------------------------------------------- /data/area/asgarnia/entrana/entrana.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/entrana/entrana.objs.toml -------------------------------------------------------------------------------- /data/area/asgarnia/entrana/entrana.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/entrana/entrana.shops.toml -------------------------------------------------------------------------------- /data/area/asgarnia/entrana/entrana.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/entrana/entrana.teles.toml -------------------------------------------------------------------------------- /data/area/asgarnia/falador/falador.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/falador/falador.areas.toml -------------------------------------------------------------------------------- /data/area/asgarnia/falador/falador.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/falador/falador.drops.toml -------------------------------------------------------------------------------- /data/area/asgarnia/falador/falador.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/falador/falador.items.toml -------------------------------------------------------------------------------- /data/area/asgarnia/falador/falador.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/falador/falador.npc-spawns.toml -------------------------------------------------------------------------------- /data/area/asgarnia/falador/falador.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/falador/falador.npcs.toml -------------------------------------------------------------------------------- /data/area/asgarnia/falador/falador.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/falador/falador.objs.toml -------------------------------------------------------------------------------- /data/area/asgarnia/falador/falador.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/falador/falador.shops.toml -------------------------------------------------------------------------------- /data/area/asgarnia/falador/falador.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/falador/falador.teles.toml -------------------------------------------------------------------------------- /data/area/asgarnia/port_sarim/port_sarim.jingles.toml: -------------------------------------------------------------------------------- 1 | [sailing_journey] 2 | id = 172 -------------------------------------------------------------------------------- /data/area/asgarnia/port_sarim/port_sarim.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/port_sarim/port_sarim.npcs.toml -------------------------------------------------------------------------------- /data/area/asgarnia/port_sarim/port_sarim.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/port_sarim/port_sarim.objs.toml -------------------------------------------------------------------------------- /data/area/asgarnia/rimmington/rimmington.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/rimmington/rimmington.npcs.toml -------------------------------------------------------------------------------- /data/area/asgarnia/taverley/taverley.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/taverley/taverley.areas.toml -------------------------------------------------------------------------------- /data/area/asgarnia/taverley/taverley.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/taverley/taverley.drops.toml -------------------------------------------------------------------------------- /data/area/asgarnia/taverley/taverley.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/taverley/taverley.items.toml -------------------------------------------------------------------------------- /data/area/asgarnia/taverley/taverley.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/taverley/taverley.npcs.toml -------------------------------------------------------------------------------- /data/area/asgarnia/taverley/taverley.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/taverley/taverley.shops.toml -------------------------------------------------------------------------------- /data/area/asgarnia/taverley/taverley.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/asgarnia/taverley/taverley.teles.toml -------------------------------------------------------------------------------- /data/area/entrana.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/entrana.teles.toml -------------------------------------------------------------------------------- /data/area/fremennik_province/fremennik_isles/fremennik_fleet/fremennik_fleet.npcs.toml: -------------------------------------------------------------------------------- 1 | [gull_fremennik_fleet] 2 | id = 9334 3 | 4 | -------------------------------------------------------------------------------- /data/area/fremennik_province/rellekka/fremennik_dungeon/fremennik_dungeon.anims.toml: -------------------------------------------------------------------------------- 1 | [cockatrice_attack] 2 | id = 1562 -------------------------------------------------------------------------------- /data/area/fremennik_province/rellekka/ice_strykewyrm_cave/ice_strykewyrm_cave.npcs.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/area/kandarin/ancient_cavern/ancient_cavern.areas.toml: -------------------------------------------------------------------------------- 1 | [kuradals_dungeon] 2 | x = [1600, 1663] 3 | y = [5248, 5311] 4 | -------------------------------------------------------------------------------- /data/area/kandarin/ape_atoll/ape_atoll.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ape_atoll/ape_atoll.anims.toml -------------------------------------------------------------------------------- /data/area/kandarin/ape_atoll/ape_atoll.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ape_atoll/ape_atoll.areas.toml -------------------------------------------------------------------------------- /data/area/kandarin/ape_atoll/ape_atoll.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ape_atoll/ape_atoll.drops.toml -------------------------------------------------------------------------------- /data/area/kandarin/ape_atoll/ape_atoll.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ape_atoll/ape_atoll.gfx.toml -------------------------------------------------------------------------------- /data/area/kandarin/ape_atoll/ape_atoll.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ape_atoll/ape_atoll.npcs.toml -------------------------------------------------------------------------------- /data/area/kandarin/ape_atoll/ape_atoll.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ape_atoll/ape_atoll.objs.toml -------------------------------------------------------------------------------- /data/area/kandarin/ape_atoll/ape_atoll.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ape_atoll/ape_atoll.shops.toml -------------------------------------------------------------------------------- /data/area/kandarin/ape_atoll/ape_atoll.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ape_atoll/ape_atoll.teles.toml -------------------------------------------------------------------------------- /data/area/kandarin/arandar/arandar.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/arandar/arandar.anims.toml -------------------------------------------------------------------------------- /data/area/kandarin/arandar/arandar.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/arandar/arandar.drops.toml -------------------------------------------------------------------------------- /data/area/kandarin/arandar/arandar.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/arandar/arandar.npc-spawns.toml -------------------------------------------------------------------------------- /data/area/kandarin/arandar/arandar.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/arandar/arandar.npcs.toml -------------------------------------------------------------------------------- /data/area/kandarin/ardougne/ardougne.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ardougne/ardougne.areas.toml -------------------------------------------------------------------------------- /data/area/kandarin/barbarian_outpost/barbarian_outpost.vars.toml: -------------------------------------------------------------------------------- 1 | [smash_vials] 2 | format = "boolean" 3 | persist = true 4 | -------------------------------------------------------------------------------- /data/area/kandarin/camelot/camelot.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/camelot/camelot.areas.toml -------------------------------------------------------------------------------- /data/area/kandarin/camelot/camelot.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/camelot/camelot.teles.toml -------------------------------------------------------------------------------- /data/area/kandarin/catherby/catherby.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/catherby/catherby.areas.toml -------------------------------------------------------------------------------- /data/area/kandarin/catherby/catherby.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/catherby/catherby.items.toml -------------------------------------------------------------------------------- /data/area/kandarin/catherby/catherby.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/catherby/catherby.npcs.toml -------------------------------------------------------------------------------- /data/area/kandarin/catherby/catherby.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/catherby/catherby.objs.toml -------------------------------------------------------------------------------- /data/area/kandarin/catherby/catherby.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/catherby/catherby.recipes.toml -------------------------------------------------------------------------------- /data/area/kandarin/catherby/catherby.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/catherby/catherby.shops.toml -------------------------------------------------------------------------------- /data/area/kandarin/catherby/catherby.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/catherby/catherby.teles.toml -------------------------------------------------------------------------------- /data/area/kandarin/kandarin.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/kandarin.areas.toml -------------------------------------------------------------------------------- /data/area/kandarin/kandarin.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/kandarin.teles.toml -------------------------------------------------------------------------------- /data/area/kandarin/legends_guild/legends_guild.objs.toml: -------------------------------------------------------------------------------- 1 | [legends_guild_totem_pole] 2 | id = 2938 3 | examine = "A sculpted trunk of wood." 4 | -------------------------------------------------------------------------------- /data/area/kandarin/mcgrubors_wood/mcgrubors_wood.anims.toml: -------------------------------------------------------------------------------- 1 | [railing_squeeze] 2 | id = 3844 -------------------------------------------------------------------------------- /data/area/kandarin/observatory.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/observatory.teles.toml -------------------------------------------------------------------------------- /data/area/kandarin/ourania/ourania.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ourania/ourania.areas.toml -------------------------------------------------------------------------------- /data/area/kandarin/ourania/ourania.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ourania/ourania.drops.toml -------------------------------------------------------------------------------- /data/area/kandarin/ourania/ourania.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ourania/ourania.npc-spawns.toml -------------------------------------------------------------------------------- /data/area/kandarin/ourania/ourania.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ourania/ourania.npcs.toml -------------------------------------------------------------------------------- /data/area/kandarin/ourania/ourania.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ourania/ourania.objs.toml -------------------------------------------------------------------------------- /data/area/kandarin/ourania/ourania.patrols.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ourania/ourania.patrols.toml -------------------------------------------------------------------------------- /data/area/kandarin/ourania/ourania.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/ourania/ourania.teles.toml -------------------------------------------------------------------------------- /data/area/kandarin/piscatoris/piscatoris.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/piscatoris/piscatoris.npcs.toml -------------------------------------------------------------------------------- /data/area/kandarin/piscatoris/piscatoris.objs.toml: -------------------------------------------------------------------------------- 1 | [piscatoris_obelisk_ladder_up] 2 | id = 28743 3 | examine = "Allows access to the level above." -------------------------------------------------------------------------------- /data/area/kandarin/tower_of_life.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/tower_of_life.teles.toml -------------------------------------------------------------------------------- /data/area/kandarin/tree_gnome_village/dungeon/gnome_village_dungeon.npcs.toml: -------------------------------------------------------------------------------- 1 | [golrie] 2 | id = 306 3 | examine = "It's a tree gnome" 4 | 5 | -------------------------------------------------------------------------------- /data/area/kandarin/yanille/instance/yanille_instance.npcs.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/area/kandarin/yanille/yanille.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/yanille/yanille.anims.toml -------------------------------------------------------------------------------- /data/area/kandarin/yanille/yanille.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/yanille/yanille.areas.toml -------------------------------------------------------------------------------- /data/area/kandarin/yanille/yanille.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/yanille/yanille.drops.toml -------------------------------------------------------------------------------- /data/area/kandarin/yanille/yanille.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/yanille/yanille.npc-spawns.toml -------------------------------------------------------------------------------- /data/area/kandarin/yanille/yanille.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/yanille/yanille.npcs.toml -------------------------------------------------------------------------------- /data/area/kandarin/yanille/yanille.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/yanille/yanille.objs.toml -------------------------------------------------------------------------------- /data/area/kandarin/yanille/yanille.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/yanille/yanille.shops.toml -------------------------------------------------------------------------------- /data/area/kandarin/yanille/yanille.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kandarin/yanille/yanille.teles.toml -------------------------------------------------------------------------------- /data/area/karamja/brimhaven/agility_arena/agility_arena.npcs.toml: -------------------------------------------------------------------------------- 1 | [giant_bat_agility_arena] 2 | id = 2482 3 | 4 | -------------------------------------------------------------------------------- /data/area/karamja/brimhaven/brimhaven.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/brimhaven/brimhaven.areas.toml -------------------------------------------------------------------------------- /data/area/karamja/brimhaven/brimhaven.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/brimhaven/brimhaven.npcs.toml -------------------------------------------------------------------------------- /data/area/karamja/brimhaven/brimhaven.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/brimhaven/brimhaven.objs.toml -------------------------------------------------------------------------------- /data/area/karamja/brimhaven/brimhaven.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/brimhaven/brimhaven.shops.toml -------------------------------------------------------------------------------- /data/area/karamja/brimhaven/brimhaven.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/brimhaven/brimhaven.teles.toml -------------------------------------------------------------------------------- /data/area/karamja/crandor/crandor.item-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/crandor/crandor.item-spawns.toml -------------------------------------------------------------------------------- /data/area/karamja/crandor/crandor.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/crandor/crandor.npc-spawns.toml -------------------------------------------------------------------------------- /data/area/karamja/crandor/crandor.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/crandor/crandor.npcs.toml -------------------------------------------------------------------------------- /data/area/karamja/crandor/crandor.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/crandor/crandor.teles.toml -------------------------------------------------------------------------------- /data/area/karamja/karamja.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/karamja.anims.toml -------------------------------------------------------------------------------- /data/area/karamja/karamja.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/karamja.areas.toml -------------------------------------------------------------------------------- /data/area/karamja/karamja.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/karamja.drops.toml -------------------------------------------------------------------------------- /data/area/karamja/karamja.item-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/karamja.item-spawns.toml -------------------------------------------------------------------------------- /data/area/karamja/karamja.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/karamja.npc-spawns.toml -------------------------------------------------------------------------------- /data/area/karamja/karamja.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/karamja.npcs.toml -------------------------------------------------------------------------------- /data/area/karamja/karamja.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/karamja.shops.toml -------------------------------------------------------------------------------- /data/area/karamja/karamja.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/karamja.sounds.toml -------------------------------------------------------------------------------- /data/area/karamja/karamja.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/karamja.teles.toml -------------------------------------------------------------------------------- /data/area/karamja/musa_point/musa_point.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/musa_point/musa_point.npcs.toml -------------------------------------------------------------------------------- /data/area/karamja/musa_point/musa_point.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/musa_point/musa_point.objs.toml -------------------------------------------------------------------------------- /data/area/karamja/musa_point/musa_point.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/karamja/musa_point/musa_point.teles.toml -------------------------------------------------------------------------------- /data/area/karamja/volcano/karamja_volcano.teles.toml: -------------------------------------------------------------------------------- 1 | # 11313 karamja_volcano 2 | 3 | -------------------------------------------------------------------------------- /data/area/karamja/volcano/resource_dungeon/karamja_volcano_resource_dungeon.npcs.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/area/kharidian_desert/al_kharid/al_kharid.vars.toml: -------------------------------------------------------------------------------- 1 | [al_the_camel] 2 | format = "boolean" 3 | persist = true 4 | 5 | -------------------------------------------------------------------------------- /data/area/kharidian_desert/al_kharid/desert_strykewyrm/desert_strykewyrm.npcs.toml: -------------------------------------------------------------------------------- 1 | [mound_desert_strykewyrm] 2 | id = 9464 3 | 4 | -------------------------------------------------------------------------------- /data/area/kharidian_desert/desert.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kharidian_desert/desert.items.toml -------------------------------------------------------------------------------- /data/area/kharidian_desert/desert.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kharidian_desert/desert.objs.toml -------------------------------------------------------------------------------- /data/area/kharidian_desert/desert.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kharidian_desert/desert.teles.toml -------------------------------------------------------------------------------- /data/area/kharidian_desert/nardah/nardah.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kharidian_desert/nardah/nardah.npcs.toml -------------------------------------------------------------------------------- /data/area/kharidian_desert/nardah/nardah.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kharidian_desert/nardah/nardah.objs.toml -------------------------------------------------------------------------------- /data/area/kharidian_desert/pollnivneach/smoke_dungeon/smoke_dungeon.npcs.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/area/kharidian_desert/quarry/quarry.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kharidian_desert/quarry/quarry.npcs.toml -------------------------------------------------------------------------------- /data/area/kharidian_desert/ullek/ullek.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kharidian_desert/ullek/ullek.npcs.toml -------------------------------------------------------------------------------- /data/area/kharidian_desert/uzer/uzer.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/kharidian_desert/uzer/uzer.npcs.toml -------------------------------------------------------------------------------- /data/area/misthalin/barbarian_village/stronghold_of_security/stronghold_of_security.gfx.toml: -------------------------------------------------------------------------------- 1 | [teleport_skull_sceptre] 2 | id = 1683 -------------------------------------------------------------------------------- /data/area/misthalin/border_guard.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/border_guard.anims.toml -------------------------------------------------------------------------------- /data/area/misthalin/border_guard.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/border_guard.areas.toml -------------------------------------------------------------------------------- /data/area/misthalin/border_guard.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/border_guard.objs.toml -------------------------------------------------------------------------------- /data/area/misthalin/clan_cup_plaque.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/clan_cup_plaque.ifaces.toml -------------------------------------------------------------------------------- /data/area/misthalin/draynor/diango/diango.gfx.toml: -------------------------------------------------------------------------------- 1 | [10th_anniversary_cake] 2 | id = 1065 3 | -------------------------------------------------------------------------------- /data/area/misthalin/draynor/draynor.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/draynor/draynor.areas.toml -------------------------------------------------------------------------------- /data/area/misthalin/draynor/draynor.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/draynor/draynor.drops.toml -------------------------------------------------------------------------------- /data/area/misthalin/draynor/draynor.gfx.toml: -------------------------------------------------------------------------------- 1 | [wise_old_man] 2 | id = 2743 3 | -------------------------------------------------------------------------------- /data/area/misthalin/draynor/draynor.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/draynor/draynor.items.toml -------------------------------------------------------------------------------- /data/area/misthalin/draynor/draynor.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/draynor/draynor.npcs.toml -------------------------------------------------------------------------------- /data/area/misthalin/draynor/draynor.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/draynor/draynor.objs.toml -------------------------------------------------------------------------------- /data/area/misthalin/draynor/draynor.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/draynor/draynor.shops.toml -------------------------------------------------------------------------------- /data/area/misthalin/draynor/draynor.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/draynor/draynor.teles.toml -------------------------------------------------------------------------------- /data/area/misthalin/edgeville/edgeville.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/edgeville/edgeville.areas.toml -------------------------------------------------------------------------------- /data/area/misthalin/edgeville/edgeville.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/edgeville/edgeville.drops.toml -------------------------------------------------------------------------------- /data/area/misthalin/edgeville/edgeville.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/edgeville/edgeville.npcs.toml -------------------------------------------------------------------------------- /data/area/misthalin/edgeville/edgeville.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/edgeville/edgeville.objs.toml -------------------------------------------------------------------------------- /data/area/misthalin/edgeville/edgeville.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/edgeville/edgeville.shops.toml -------------------------------------------------------------------------------- /data/area/misthalin/edgeville/edgeville.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/edgeville/edgeville.teles.toml -------------------------------------------------------------------------------- /data/area/misthalin/edgeville/resource_dungeon/edgeville_resource_dungeon.npcs.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/area/misthalin/gnomecopters.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/gnomecopters.items.toml -------------------------------------------------------------------------------- /data/area/misthalin/lumbridge/church/church.jingles.toml: -------------------------------------------------------------------------------- 1 | [ambient_church_happy] 2 | id = 72 3 | -------------------------------------------------------------------------------- /data/area/misthalin/lumbridge/church/lumbridge_church.midis.toml: -------------------------------------------------------------------------------- 1 | [church_organ] 2 | id = 147 3 | -------------------------------------------------------------------------------- /data/area/misthalin/lumbridge/combat_hall/combat_hall.objs.toml: -------------------------------------------------------------------------------- 1 | [archery_target] 2 | id = 45305 3 | examine = "Can you hit it?" 4 | -------------------------------------------------------------------------------- /data/area/misthalin/lumbridge/lumbridge.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/lumbridge/lumbridge.anims.toml -------------------------------------------------------------------------------- /data/area/misthalin/lumbridge/lumbridge.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/lumbridge/lumbridge.areas.toml -------------------------------------------------------------------------------- /data/area/misthalin/lumbridge/lumbridge.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/lumbridge/lumbridge.drops.toml -------------------------------------------------------------------------------- /data/area/misthalin/lumbridge/lumbridge.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/lumbridge/lumbridge.items.toml -------------------------------------------------------------------------------- /data/area/misthalin/lumbridge/lumbridge.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/lumbridge/lumbridge.npcs.toml -------------------------------------------------------------------------------- /data/area/misthalin/lumbridge/lumbridge.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/lumbridge/lumbridge.objs.toml -------------------------------------------------------------------------------- /data/area/misthalin/lumbridge/lumbridge.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/lumbridge/lumbridge.shops.toml -------------------------------------------------------------------------------- /data/area/misthalin/lumbridge/lumbridge.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/lumbridge/lumbridge.teles.toml -------------------------------------------------------------------------------- /data/area/misthalin/signposts.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/signposts.ifaces.toml -------------------------------------------------------------------------------- /data/area/misthalin/signposts.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/signposts.objs.toml -------------------------------------------------------------------------------- /data/area/misthalin/training_centre.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/training_centre.items.toml -------------------------------------------------------------------------------- /data/area/misthalin/varrock/varrock.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/varrock/varrock.anims.toml -------------------------------------------------------------------------------- /data/area/misthalin/varrock/varrock.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/varrock/varrock.areas.toml -------------------------------------------------------------------------------- /data/area/misthalin/varrock/varrock.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/varrock/varrock.drops.toml -------------------------------------------------------------------------------- /data/area/misthalin/varrock/varrock.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/varrock/varrock.npcs.toml -------------------------------------------------------------------------------- /data/area/misthalin/varrock/varrock.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/varrock/varrock.objs.toml -------------------------------------------------------------------------------- /data/area/misthalin/varrock/varrock.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/varrock/varrock.shops.toml -------------------------------------------------------------------------------- /data/area/misthalin/varrock/varrock.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/varrock/varrock.teles.toml -------------------------------------------------------------------------------- /data/area/misthalin/zanaris/evil_chicken_lair/evil_chicken_lair.sounds.toml: -------------------------------------------------------------------------------- 1 | [evil_chicken_attack] 2 | id = 2288 3 | -------------------------------------------------------------------------------- /data/area/misthalin/zanaris/zanaris.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/zanaris/zanaris.anims.toml -------------------------------------------------------------------------------- /data/area/misthalin/zanaris/zanaris.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/zanaris/zanaris.areas.toml -------------------------------------------------------------------------------- /data/area/misthalin/zanaris/zanaris.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/zanaris/zanaris.drops.toml -------------------------------------------------------------------------------- /data/area/misthalin/zanaris/zanaris.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/zanaris/zanaris.npcs.toml -------------------------------------------------------------------------------- /data/area/misthalin/zanaris/zanaris.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/zanaris/zanaris.objs.toml -------------------------------------------------------------------------------- /data/area/misthalin/zanaris/zanaris.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/zanaris/zanaris.shops.toml -------------------------------------------------------------------------------- /data/area/misthalin/zanaris/zanaris.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/zanaris/zanaris.sounds.toml -------------------------------------------------------------------------------- /data/area/misthalin/zanaris/zanaris.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/misthalin/zanaris/zanaris.teles.toml -------------------------------------------------------------------------------- /data/area/morytania/canifis/canifis.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/morytania/canifis/canifis.areas.toml -------------------------------------------------------------------------------- /data/area/morytania/canifis/canifis.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/morytania/canifis/canifis.drops.toml -------------------------------------------------------------------------------- /data/area/morytania/canifis/canifis.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/morytania/canifis/canifis.items.toml -------------------------------------------------------------------------------- /data/area/morytania/canifis/canifis.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/morytania/canifis/canifis.npcs.toml -------------------------------------------------------------------------------- /data/area/morytania/canifis/canifis.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/morytania/canifis/canifis.objs.toml -------------------------------------------------------------------------------- /data/area/morytania/canifis/canifis.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/morytania/canifis/canifis.shops.toml -------------------------------------------------------------------------------- /data/area/morytania/canifis/canifis.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/morytania/canifis/canifis.teles.toml -------------------------------------------------------------------------------- /data/area/morytania/darkmeyer/darkmeyer.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/morytania/darkmeyer/darkmeyer.npcs.toml -------------------------------------------------------------------------------- /data/area/morytania/mort_ton/mort_ton.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/morytania/mort_ton/mort_ton.drops.toml -------------------------------------------------------------------------------- /data/area/morytania/mort_ton/mort_ton.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/morytania/mort_ton/mort_ton.npcs.toml -------------------------------------------------------------------------------- /data/area/morytania/mort_ton/mort_ton.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/morytania/mort_ton/mort_ton.shops.toml -------------------------------------------------------------------------------- /data/area/morytania/paterdomus/paterdomus.npcs.toml: -------------------------------------------------------------------------------- 1 | [drezel_paterdomus] 2 | id = 1049 3 | 4 | -------------------------------------------------------------------------------- /data/area/morytania/slayer_tower/banshee/banshee.gfx.toml: -------------------------------------------------------------------------------- 1 | [banshee_scream] 2 | id = 337 3 | -------------------------------------------------------------------------------- /data/area/morytania/slayer_tower/slayer_tower.npcs.toml: -------------------------------------------------------------------------------- 1 | [mysterious_ghost_slayer_tower] 2 | id = 2395 3 | -------------------------------------------------------------------------------- /data/area/realm/dream_world/dream_world.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/realm/dream_world/dream_world.npcs.toml -------------------------------------------------------------------------------- /data/area/realm/gorak_plane/gorak.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/realm/gorak_plane/gorak.anims.toml -------------------------------------------------------------------------------- /data/area/realm/gorak_plane/gorak.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/realm/gorak_plane/gorak.drops.toml -------------------------------------------------------------------------------- /data/area/realm/gorak_plane/gorak.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/realm/gorak_plane/gorak.npcs.toml -------------------------------------------------------------------------------- /data/area/realm/gorak_plane/gorak.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/realm/gorak_plane/gorak.sounds.toml -------------------------------------------------------------------------------- /data/area/tirannwn/isafdar/isafdar.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/tirannwn/isafdar/isafdar.npc-spawns.toml -------------------------------------------------------------------------------- /data/area/tirannwn/isafdar/isafdar.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/tirannwn/isafdar/isafdar.npcs.toml -------------------------------------------------------------------------------- /data/area/tirannwn/lletya/lletya.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/tirannwn/lletya/lletya.npc-spawns.toml -------------------------------------------------------------------------------- /data/area/tirannwn/lletya/lletya.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/tirannwn/lletya/lletya.npcs.toml -------------------------------------------------------------------------------- /data/area/tirannwn/lletya/lletya.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/tirannwn/lletya/lletya.shops.toml -------------------------------------------------------------------------------- /data/area/tirannwn/tirannwn.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/tirannwn/tirannwn.areas.toml -------------------------------------------------------------------------------- /data/area/tirannwn/tyras_camp/tyras_camp.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/tirannwn/tyras_camp/tyras_camp.npcs.toml -------------------------------------------------------------------------------- /data/area/troll_country/god_wars_dungeon/bandos/ork/ork.sounds.toml: -------------------------------------------------------------------------------- 1 | [ork_attack] 2 | id = 648 -------------------------------------------------------------------------------- /data/area/troll_country/god_wars_dungeon/spiritual_mage/spiritual_mage.sounds.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/area/troll_country/troll_country.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/troll_country/troll_country.drops.toml -------------------------------------------------------------------------------- /data/area/troll_country/troll_country.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/troll_country/troll_country.npcs.toml -------------------------------------------------------------------------------- /data/area/wilderness/abyss/abyss.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/abyss/abyss.anims.toml -------------------------------------------------------------------------------- /data/area/wilderness/abyss/abyss.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/abyss/abyss.areas.toml -------------------------------------------------------------------------------- /data/area/wilderness/abyss/abyss.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/abyss/abyss.drops.toml -------------------------------------------------------------------------------- /data/area/wilderness/abyss/abyss.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/abyss/abyss.npc-spawns.toml -------------------------------------------------------------------------------- /data/area/wilderness/abyss/abyss.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/abyss/abyss.npcs.toml -------------------------------------------------------------------------------- /data/area/wilderness/abyss/abyss.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/abyss/abyss.objs.toml -------------------------------------------------------------------------------- /data/area/wilderness/abyss/abyss.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/abyss/abyss.sounds.toml -------------------------------------------------------------------------------- /data/area/wilderness/abyss/abyss.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/abyss/abyss.teles.toml -------------------------------------------------------------------------------- /data/area/wilderness/abyss/abyssal_demon/abyssal_demon.gfx.toml: -------------------------------------------------------------------------------- 1 | [abyssal_demon_teleport] 2 | id = 409 -------------------------------------------------------------------------------- /data/area/wilderness/chaos_tunnels/resource_dungeon/chaos_tunnels_resource_dungeon.npcs.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/area/wilderness/wilderness.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/wilderness.anims.toml -------------------------------------------------------------------------------- /data/area/wilderness/wilderness.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/wilderness.areas.toml -------------------------------------------------------------------------------- /data/area/wilderness/wilderness.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/wilderness.drops.toml -------------------------------------------------------------------------------- /data/area/wilderness/wilderness.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/wilderness.ifaces.toml -------------------------------------------------------------------------------- /data/area/wilderness/wilderness.item-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/wilderness.item-spawns.toml -------------------------------------------------------------------------------- /data/area/wilderness/wilderness.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/wilderness.items.toml -------------------------------------------------------------------------------- /data/area/wilderness/wilderness.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/wilderness.npc-spawns.toml -------------------------------------------------------------------------------- /data/area/wilderness/wilderness.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/wilderness.npcs.toml -------------------------------------------------------------------------------- /data/area/wilderness/wilderness.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/wilderness.objs.toml -------------------------------------------------------------------------------- /data/area/wilderness/wilderness.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/wilderness.shops.toml -------------------------------------------------------------------------------- /data/area/wilderness/wilderness.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/wilderness.sounds.toml -------------------------------------------------------------------------------- /data/area/wilderness/wilderness.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/wilderness.teles.toml -------------------------------------------------------------------------------- /data/area/wilderness/wilderness.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/wilderness.varbits.toml -------------------------------------------------------------------------------- /data/area/wilderness/wilderness.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/area/wilderness/wilderness.vars.toml -------------------------------------------------------------------------------- /data/client/categories.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/client/categories.toml -------------------------------------------------------------------------------- /data/client/client.scripts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/client/client.scripts.toml -------------------------------------------------------------------------------- /data/client/enums.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/client/enums.toml -------------------------------------------------------------------------------- /data/client/parameters.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/client/parameters.toml -------------------------------------------------------------------------------- /data/client/structs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/client/structs.toml -------------------------------------------------------------------------------- /data/entity/bot/gear_sets.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/bot/gear_sets.toml -------------------------------------------------------------------------------- /data/entity/bot/nav_graph.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/bot/nav_graph.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/bat/bat.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/bat/bat.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/bat/bat.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/bat/bat.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/bat/bat.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/bat/bat.npc-spawns.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/bat/bat.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/bat/bat.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/bat/bat.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/bat/bat.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/bear/bear.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/bear/bear.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/bear/bear.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/bear/bear.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/bear/bear.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/bear/bear.npc-spawns.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/bear/bear.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/bear/bear.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/bear/bear.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/bear/bear.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/birds.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/birds.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/butterflies.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/butterflies.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/camels.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/camels.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/chicken/chicken.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/chicken/chicken.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/chicken/chicken.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/chicken/chicken.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/chicken/chicken.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/chicken/chicken.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/chicken/chicken.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/chicken/chicken.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/cow/cow.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/cow/cow.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/cow/cow.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/cow/cow.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/cow/cow.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/cow/cow.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/cow/cow.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/cow/cow.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/crab/crab.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/crab/crab.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/crab/crab.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/crab/crab.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/crab/crab.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/crab/crab.npc-spawns.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/crab/crab.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/crab/crab.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/crab/crab.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/crab/crab.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/dog/dog.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/dog/dog.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/dog/dog.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/dog/dog.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/dog/dog.npc-spawns.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/dog/dog.npc-spawns.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/dog/dog.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/dog/dog.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/dog/dog.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/dog/dog.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/gecko.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/gecko.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/monkey/monkey.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/monkey/monkey.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/monkey/monkey.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/monkey/monkey.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/monkey/monkey.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/monkey/monkey.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/monkey/monkey.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/monkey/monkey.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/rat/rat.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/rat/rat.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/rat/rat.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/rat/rat.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/rat/rat.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/rat/rat.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/rat/rat.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/rat/rat.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/sheep/sheep.anims.toml: -------------------------------------------------------------------------------- 1 | [the_thing_reveal] 2 | id = 3570 -------------------------------------------------------------------------------- /data/entity/npc/animal/sheep/sheep.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/sheep/sheep.gfx.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/sheep/sheep.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/sheep/sheep.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/sheep/sheep.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/sheep/sheep.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/wolf/wolf.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/wolf/wolf.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/wolf/wolf.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/wolf/wolf.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/animal/wolf/wolf.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/animal/wolf/wolf.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/boss/giant_mole/giant_mole.gfx.toml: -------------------------------------------------------------------------------- 1 | [burrow_dust] 2 | id = 571 3 | -------------------------------------------------------------------------------- /data/entity/npc/boss/giant_mole/giant_mole.ifaces.toml: -------------------------------------------------------------------------------- 1 | [dirt_on_screen] 2 | id = 226 3 | type = "overlay" 4 | 5 | -------------------------------------------------------------------------------- /data/entity/npc/boss/skeletal_horror.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/boss/skeletal_horror.gfx.toml -------------------------------------------------------------------------------- /data/entity/npc/dark_wizard.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/dark_wizard.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/bankers.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/bankers.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/cyclops/cyclops.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/cyclops/cyclops.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/dwarf/dwarf.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/dwarf/dwarf.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/dwarf/dwarf.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/dwarf/dwarf.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/dwarf/dwarf.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/dwarf/dwarf.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/dwarf/dwarf.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/dwarf/dwarf.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/gnomes.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/gnomes.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/human/human.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/human/human.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/human/humans.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/human/humans.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/human/man.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/human/man.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/human/woman.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/human/woman.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/jogre/jogre.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/jogre/jogre.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/jogre/jogre.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/jogre/jogre.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/jogre/jogre.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/jogre/jogre.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/monk/monk.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/monk/monk.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/monk/monk.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/monk/monk.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/monk/monk.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/monk/monk.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/monk/monk.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/monk/monk.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/mugger/mugger.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/mugger/mugger.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/mugger/mugger.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/mugger/mugger.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/musicians.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/musicians.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/ogre/ogre.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/ogre/ogre.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/ogre/ogre.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/ogre/ogre.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/ogre/ogre.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/ogre/ogre.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/thug/thug.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/thug/thug.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/thug/thug.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/thug/thug.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/thug/thug.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/thug/thug.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/humanoid/thug/thug.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/humanoid/thug/thug.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/hunt/hunt.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/hunt/hunt.vars.toml -------------------------------------------------------------------------------- /data/entity/npc/hunt_modes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/hunt_modes.toml -------------------------------------------------------------------------------- /data/entity/npc/misc.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/misc.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/monster/demon/demon.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/monster/demon/demon.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/monster/demon/demons.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/monster/demon/demons.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/monster/giant/giant.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/monster/giant/giant.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/monster/giant/hill_giant/hill_giant.sounds.toml: -------------------------------------------------------------------------------- 1 | [hill_giant_attack] 2 | id = 448 -------------------------------------------------------------------------------- /data/entity/npc/monster/giant/ice_giant/ice_giant.sounds.toml: -------------------------------------------------------------------------------- 1 | [ice_giant_attack] 2 | id = 448 3 | -------------------------------------------------------------------------------- /data/entity/npc/monster/goblin/goblin.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/monster/goblin/goblin.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/monster/gorak/gorak.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/monster/gorak/gorak.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/monster/imp/imp.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/monster/imp/imp.anims.toml -------------------------------------------------------------------------------- /data/entity/npc/monster/imp/imp.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/monster/imp/imp.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/monster/imp/imp.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/monster/imp/imp.gfx.toml -------------------------------------------------------------------------------- /data/entity/npc/monster/imp/imp.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/monster/imp/imp.npcs.toml -------------------------------------------------------------------------------- /data/entity/npc/monster/imp/imp.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/monster/imp/imp.sounds.toml -------------------------------------------------------------------------------- /data/entity/npc/monster/reptile/lizard/lizard.gfx.toml: -------------------------------------------------------------------------------- 1 | [skip_water_splash] 2 | id = 456 -------------------------------------------------------------------------------- /data/entity/npc/monster/undead/ghost/ghost.drops.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/entity/npc/rare_drop_table.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/rare_drop_table.drops.toml -------------------------------------------------------------------------------- /data/entity/npc/shop/shop.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/shop/shop.ifaces.toml -------------------------------------------------------------------------------- /data/entity/npc/shop/shop.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/shop/shop.items.toml -------------------------------------------------------------------------------- /data/entity/npc/shop/shop.varps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/shop/shop.varps.toml -------------------------------------------------------------------------------- /data/entity/npc/shop/team_cape.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/npc/shop/team_cape.items.toml -------------------------------------------------------------------------------- /data/entity/obj/all.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/all.objs.toml -------------------------------------------------------------------------------- /data/entity/obj/barriers.objs.toml: -------------------------------------------------------------------------------- 1 | [canifis_barrier] 2 | id = 3443 3 | examine = "The ideal thing to sit on." -------------------------------------------------------------------------------- /data/entity/obj/boat/boat.jingles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/boat/boat.jingles.toml -------------------------------------------------------------------------------- /data/entity/obj/boat/charter_ship.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/boat/charter_ship.areas.toml -------------------------------------------------------------------------------- /data/entity/obj/boat/charter_ship.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/boat/charter_ship.ifaces.toml -------------------------------------------------------------------------------- /data/entity/obj/boat/charter_ship.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/boat/charter_ship.npcs.toml -------------------------------------------------------------------------------- /data/entity/obj/boat/charter_ship.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/boat/charter_ship.objs.toml -------------------------------------------------------------------------------- /data/entity/obj/boat/charter_ship.scripts.toml: -------------------------------------------------------------------------------- 1 | [clear_ships] 2 | id = 1441 -------------------------------------------------------------------------------- /data/entity/obj/boat/charter_ship.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/boat/charter_ship.teles.toml -------------------------------------------------------------------------------- /data/entity/obj/boat/charter_ship.varps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/boat/charter_ship.varps.toml -------------------------------------------------------------------------------- /data/entity/obj/boat/charter_ship_prices.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/boat/charter_ship_prices.toml -------------------------------------------------------------------------------- /data/entity/obj/canoe/canoe.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/canoe/canoe.anims.toml -------------------------------------------------------------------------------- /data/entity/obj/canoe/canoe.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/canoe/canoe.ifaces.toml -------------------------------------------------------------------------------- /data/entity/obj/canoe/canoe.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/canoe/canoe.items.toml -------------------------------------------------------------------------------- /data/entity/obj/canoe/canoe.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/canoe/canoe.objs.toml -------------------------------------------------------------------------------- /data/entity/obj/canoe/canoe.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/canoe/canoe.sounds.toml -------------------------------------------------------------------------------- /data/entity/obj/canoe/canoe.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/canoe/canoe.varbits.toml -------------------------------------------------------------------------------- /data/entity/obj/canoe/canoe_stations.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/canoe/canoe_stations.toml -------------------------------------------------------------------------------- /data/entity/obj/chairs.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/chairs.objs.toml -------------------------------------------------------------------------------- /data/entity/obj/crates.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/crates.objs.toml -------------------------------------------------------------------------------- /data/entity/obj/door/door.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/door/door.objs.toml -------------------------------------------------------------------------------- /data/entity/obj/door/door.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/door/door.sounds.toml -------------------------------------------------------------------------------- /data/entity/obj/door/door.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/door/door.vars.toml -------------------------------------------------------------------------------- /data/entity/obj/gates.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/gates.objs.toml -------------------------------------------------------------------------------- /data/entity/obj/obj.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/obj.sounds.toml -------------------------------------------------------------------------------- /data/entity/obj/stairs_ladders.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/stairs_ladders.objs.toml -------------------------------------------------------------------------------- /data/entity/obj/stones.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/stones.objs.toml -------------------------------------------------------------------------------- /data/entity/obj/trapdoors.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/trapdoors.objs.toml -------------------------------------------------------------------------------- /data/entity/obj/trees.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/trees.objs.toml -------------------------------------------------------------------------------- /data/entity/obj/windmill/windmill.varps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/windmill/windmill.varps.toml -------------------------------------------------------------------------------- /data/entity/obj/windmill/windmill.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/obj/windmill/windmill.vars.toml -------------------------------------------------------------------------------- /data/entity/player/bank/bank.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/bank/bank.ifaces.toml -------------------------------------------------------------------------------- /data/entity/player/bank/bank.invs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/bank/bank.invs.toml -------------------------------------------------------------------------------- /data/entity/player/bank/bank.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/bank/bank.varbits.toml -------------------------------------------------------------------------------- /data/entity/player/bank/bank.varcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/bank/bank.varcs.toml -------------------------------------------------------------------------------- /data/entity/player/bank/bank.varps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/bank/bank.varps.toml -------------------------------------------------------------------------------- /data/entity/player/cape.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/cape.items.toml -------------------------------------------------------------------------------- /data/entity/player/charges.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/charges.vars.toml -------------------------------------------------------------------------------- /data/entity/player/combat/combat.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/combat/combat.sounds.toml -------------------------------------------------------------------------------- /data/entity/player/combat/combat.varcs.toml: -------------------------------------------------------------------------------- 1 | [multi_combat_area] 2 | id = 616 3 | format = "boolean" 4 | -------------------------------------------------------------------------------- /data/entity/player/combat/weapon.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/combat/weapon.anims.toml -------------------------------------------------------------------------------- /data/entity/player/credit.varps.toml: -------------------------------------------------------------------------------- 1 | [credit_total] 2 | id = 1448 3 | format = "int" 4 | 5 | -------------------------------------------------------------------------------- /data/entity/player/dialogue/dialogue.varcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/dialogue/dialogue.varcs.toml -------------------------------------------------------------------------------- /data/entity/player/effect/energy/rest.gfx.toml: -------------------------------------------------------------------------------- 1 | [run_replenish] 2 | id = 1733 3 | -------------------------------------------------------------------------------- /data/entity/player/effect/skull/skull.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/effect/skull/skull.vars.toml -------------------------------------------------------------------------------- /data/entity/player/effect/stun/stun.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/effect/stun/stun.vars.toml -------------------------------------------------------------------------------- /data/entity/player/equipment/worn_equipment.invs.toml: -------------------------------------------------------------------------------- 1 | [worn_equipment] 2 | id = 94 3 | -------------------------------------------------------------------------------- /data/entity/player/equipment/worn_equipment.varbits.toml: -------------------------------------------------------------------------------- 1 | [equipment_bank_button] 2 | id = 4894 3 | format = "boolean" 4 | -------------------------------------------------------------------------------- /data/entity/player/equipment/worn_equipment.varcs.toml: -------------------------------------------------------------------------------- 1 | [equipment_emote] 2 | id = 779 3 | default = "1426" 4 | -------------------------------------------------------------------------------- /data/entity/player/human.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/human.anims.toml -------------------------------------------------------------------------------- /data/entity/player/misc.invs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/misc.invs.toml -------------------------------------------------------------------------------- /data/entity/player/modal/book/books.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/modal/book/books.ifaces.toml -------------------------------------------------------------------------------- /data/entity/player/modal/character_creation/character_rename.ifaces.toml: -------------------------------------------------------------------------------- 1 | [character_rename] 2 | id = 890 3 | 4 | -------------------------------------------------------------------------------- /data/entity/player/modal/fonts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/modal/fonts.toml -------------------------------------------------------------------------------- /data/entity/player/modal/icon.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/modal/icon.items.toml -------------------------------------------------------------------------------- /data/entity/player/modal/interface_types.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/modal/interface_types.toml -------------------------------------------------------------------------------- /data/entity/player/modal/scrolls.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/modal/scrolls.ifaces.toml -------------------------------------------------------------------------------- /data/entity/player/modal/tab/logout.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/modal/tab/logout.ifaces.toml -------------------------------------------------------------------------------- /data/entity/player/modal/tab/tab.varcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/modal/tab/tab.varcs.toml -------------------------------------------------------------------------------- /data/entity/player/modal/toplevel/fade.varbits.toml: -------------------------------------------------------------------------------- 1 | [fade_speed] 2 | id = 278 3 | format = "int" 4 | -------------------------------------------------------------------------------- /data/entity/player/player.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/player.gfx.toml -------------------------------------------------------------------------------- /data/entity/player/player.jingles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/player.jingles.toml -------------------------------------------------------------------------------- /data/entity/player/player.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/player.sounds.toml -------------------------------------------------------------------------------- /data/entity/player/player.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/player.vars.toml -------------------------------------------------------------------------------- /data/entity/player/render_emotes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/render_emotes.toml -------------------------------------------------------------------------------- /data/entity/player/unobtainable.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/entity/player/unobtainable.items.toml -------------------------------------------------------------------------------- /data/minigame/barrows_brothers/barrows_brother.vars.toml: -------------------------------------------------------------------------------- 1 | [ahrims_set_effect] 2 | format = "boolean" 3 | -------------------------------------------------------------------------------- /data/minigame/barrows_brothers/barrows_brothers.ifaces.toml: -------------------------------------------------------------------------------- 1 | [barrows_brothers_slain] 2 | id = 24 3 | 4 | -------------------------------------------------------------------------------- /data/minigame/blast_furnace/blast_furnace.ifaces.toml: -------------------------------------------------------------------------------- 1 | [blast_furance_bar_stock] 2 | id = 28 3 | 4 | -------------------------------------------------------------------------------- /data/minigame/castle_wars/castle_wars.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/castle_wars/castle_wars.npcs.toml -------------------------------------------------------------------------------- /data/minigame/castle_wars/castle_wars.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/castle_wars/castle_wars.objs.toml -------------------------------------------------------------------------------- /data/minigame/champions_challenge/champions_challenge.jingles.toml: -------------------------------------------------------------------------------- 1 | [champions_challenge_victory] 2 | id = 85 3 | -------------------------------------------------------------------------------- /data/minigame/clan_wars/clan_wars.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/clan_wars/clan_wars.areas.toml -------------------------------------------------------------------------------- /data/minigame/clan_wars/clan_wars.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/clan_wars/clan_wars.ifaces.toml -------------------------------------------------------------------------------- /data/minigame/conquest/conquest.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/conquest/conquest.ifaces.toml -------------------------------------------------------------------------------- /data/minigame/conquest/conquest.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/conquest/conquest.items.toml -------------------------------------------------------------------------------- /data/minigame/duel_arena/duel_arena.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/duel_arena/duel_arena.areas.toml -------------------------------------------------------------------------------- /data/minigame/duel_arena/duel_arena.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/duel_arena/duel_arena.ifaces.toml -------------------------------------------------------------------------------- /data/minigame/duel_arena/duel_arena.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/duel_arena/duel_arena.shops.toml -------------------------------------------------------------------------------- /data/minigame/duel_arena/duel_arena.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/duel_arena/duel_arena.teles.toml -------------------------------------------------------------------------------- /data/minigame/familiarisation/familiarisation.varbits.toml: -------------------------------------------------------------------------------- 1 | [familiarisation_raw_shards] 2 | id = 7093 3 | format = "int" 4 | -------------------------------------------------------------------------------- /data/minigame/first_of_guthix/fist_of_guthix.varbits.toml: -------------------------------------------------------------------------------- 1 | [fist_of_guthix_charges] 2 | id = 4562 3 | format = "int" 4 | -------------------------------------------------------------------------------- /data/minigame/first_of_guthix/fist_of_guthix.varps.toml: -------------------------------------------------------------------------------- 1 | [fist_of_guthix_rating] 2 | id = 1405 3 | format = "int" 4 | -------------------------------------------------------------------------------- /data/minigame/gnome_resturant/gnome_restaurant.jingles.toml: -------------------------------------------------------------------------------- 1 | [gnome_restaurant_reward_token_delivery] 2 | id = 111 3 | -------------------------------------------------------------------------------- /data/minigame/gnomeball/gnomeball.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/gnomeball/gnomeball.items.toml -------------------------------------------------------------------------------- /data/minigame/gnomeball/gnomeball.jingles.toml: -------------------------------------------------------------------------------- 1 | [gnomeball_goal] 2 | id = 3 3 | -------------------------------------------------------------------------------- /data/minigame/great_orb_project/great_orb_project.gfx.toml: -------------------------------------------------------------------------------- 1 | [barrier] 2 | id = 1752 3 | -------------------------------------------------------------------------------- /data/minigame/mobilising_armies/mobilising_armies.ifaces.toml: -------------------------------------------------------------------------------- 1 | [prefixes] 2 | id = 865 3 | 4 | -------------------------------------------------------------------------------- /data/minigame/mobilising_armies/mobilising_armies.varbits.toml: -------------------------------------------------------------------------------- 1 | [investment_credits] 2 | id = 6351 3 | format = "int" 4 | -------------------------------------------------------------------------------- /data/minigame/pest_control/pest_control.gfx.toml: -------------------------------------------------------------------------------- 1 | [portal] 2 | id = 654 3 | -------------------------------------------------------------------------------- /data/minigame/puro_puro/puro_puro.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/puro_puro/puro_puro.npcs.toml -------------------------------------------------------------------------------- /data/minigame/pyramid_plunder/pyramid_plunder.jingles.toml: -------------------------------------------------------------------------------- 1 | [pyramid_plunder_snake_charming] 2 | id = 417 3 | -------------------------------------------------------------------------------- /data/minigame/rogues_den/rogues_den.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/rogues_den/rogues_den.items.toml -------------------------------------------------------------------------------- /data/minigame/rogues_den/rogues_den.jingles.toml: -------------------------------------------------------------------------------- 1 | [rogues_den_completed] 2 | id = 24 3 | -------------------------------------------------------------------------------- /data/minigame/rogues_den/rogues_den.shops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/rogues_den/rogues_den.shops.toml -------------------------------------------------------------------------------- /data/minigame/shades_of_mort'ton/shades_of_mort'ton.jingles.toml: -------------------------------------------------------------------------------- 1 | [shades_of_mortton_temple_built] 2 | id = 191 3 | -------------------------------------------------------------------------------- /data/minigame/sorceress's_garden/sorceress_garden.sounds.toml: -------------------------------------------------------------------------------- 1 | [osman_pick_high] 2 | id = 3407 -------------------------------------------------------------------------------- /data/minigame/soul_wars/soul_wars.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/soul_wars/soul_wars.ifaces.toml -------------------------------------------------------------------------------- /data/minigame/soul_wars/soul_wars.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/soul_wars/soul_wars.items.toml -------------------------------------------------------------------------------- /data/minigame/soul_wars/soul_wars.jingles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/soul_wars/soul_wars.jingles.toml -------------------------------------------------------------------------------- /data/minigame/soul_wars/soul_wars.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/soul_wars/soul_wars.npcs.toml -------------------------------------------------------------------------------- /data/minigame/soul_wars/soul_wars.objs.toml: -------------------------------------------------------------------------------- 1 | [bank_chest_soul_wars] 2 | id = 42192 3 | examine = "I can store my items safely here." 4 | -------------------------------------------------------------------------------- /data/minigame/treasure_trail/treasure_trail.jingles.toml: -------------------------------------------------------------------------------- 1 | [teasure_trail_complete] 2 | id = 193 3 | -------------------------------------------------------------------------------- /data/minigame/tzhaar_fight_pits/fight_pits.jingles.toml: -------------------------------------------------------------------------------- 1 | [fight_pits_champion] 2 | id = 75 3 | -------------------------------------------------------------------------------- /data/minigame/vinesweeper/vinesweeper.gfx.toml: -------------------------------------------------------------------------------- 1 | [flag] 2 | id = 1541 3 | -------------------------------------------------------------------------------- /data/minigame/vinesweeper/vinesweeper.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/minigame/vinesweeper/vinesweeper.npcs.toml -------------------------------------------------------------------------------- /data/minigame/warriors_guild/warriors_guild.ifaces.toml: -------------------------------------------------------------------------------- 1 | [warriors_guild] 2 | id = 1057 3 | 4 | -------------------------------------------------------------------------------- /data/quest/free/cooks_assistant/cooks_assistant.objs.toml: -------------------------------------------------------------------------------- 1 | [prized_dairy_cow] 2 | id = 47721 3 | examine = "Produces top-quality milk." 4 | -------------------------------------------------------------------------------- /data/quest/free/dragon_slayer/dragon_slayer.jingles.toml: -------------------------------------------------------------------------------- 1 | [dragon_slayer_defeat_elvarg] 2 | id = 267 3 | -------------------------------------------------------------------------------- /data/quest/free/prince_ali_rescue/prince_ali_rescue.anims.toml: -------------------------------------------------------------------------------- 1 | [mixing_dye] 2 | id = 4352 -------------------------------------------------------------------------------- /data/quest/free/swept_away/swept_away.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/free/swept_away/swept_away.npcs.toml -------------------------------------------------------------------------------- /data/quest/free/the_restless_ghost/the_restless_ghost.gfx.toml: -------------------------------------------------------------------------------- 1 | [restless_ghost] 2 | id = 668 3 | -------------------------------------------------------------------------------- /data/quest/free/unstable_foundations/unstable_foundations.ifaces.toml: -------------------------------------------------------------------------------- 1 | [vants_requests] 2 | id = 761 3 | 4 | -------------------------------------------------------------------------------- /data/quest/members/a_void_dance/void_dance.varbits.toml: -------------------------------------------------------------------------------- 1 | [void_dance_bartender] 2 | id = 7451 3 | format = "int" -------------------------------------------------------------------------------- /data/quest/members/animal_magnetism/animal_magnetism.jingles.toml: -------------------------------------------------------------------------------- 1 | [animal_magnetism_chicken_cutscene] 2 | id = 235 3 | -------------------------------------------------------------------------------- /data/quest/members/between_a_rock/between_a_rock.jingles.toml: -------------------------------------------------------------------------------- 1 | [between_a_rock_schematics_completed] 2 | id = 87 3 | -------------------------------------------------------------------------------- /data/quest/members/big_chompy_bird_hunting/big_chompy_bird_hunting.gfx.toml: -------------------------------------------------------------------------------- 1 | [ogre_bellows] 2 | id = 241 3 | -------------------------------------------------------------------------------- /data/quest/members/cold_war/cold_war.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/members/cold_war/cold_war.items.toml -------------------------------------------------------------------------------- /data/quest/members/contact/contact.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/members/contact/contact.items.toml -------------------------------------------------------------------------------- /data/quest/members/contact/contact.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/members/contact/contact.npcs.toml -------------------------------------------------------------------------------- /data/quest/members/fairy_tale_iii/fairy_tale_iii.gfx.toml: -------------------------------------------------------------------------------- 1 | [fairy_godfather] 2 | id = 2658 3 | -------------------------------------------------------------------------------- /data/quest/members/fremennik_isles/fremennik_isles.jingles.toml: -------------------------------------------------------------------------------- 1 | [fremennik_isles_berating_the_king] 2 | id = 242 3 | -------------------------------------------------------------------------------- /data/quest/members/great_brain_robbery/great_brain_robbery.jingles.toml: -------------------------------------------------------------------------------- 1 | [great_brain_robbery_kitten_cutscene] 2 | id = 244 3 | -------------------------------------------------------------------------------- /data/quest/members/mountain_daughter/mountain_daughter.jingles.toml: -------------------------------------------------------------------------------- 1 | [mountain_daughter_quest_complete] 2 | id = 166 3 | -------------------------------------------------------------------------------- /data/quest/members/mournings_end_part_2/mournings_end_part_2.ifaces.toml: -------------------------------------------------------------------------------- 1 | [items_needed_list] 2 | id = 227 3 | 4 | -------------------------------------------------------------------------------- /data/quest/members/mournings_end_part_2/mournings_end_part_2.jingles.toml: -------------------------------------------------------------------------------- 1 | [mournings_end_part_ii_crystal_obtained] 2 | id = 139 3 | -------------------------------------------------------------------------------- /data/quest/members/my_arms_big_adventure/my_arms_big_adventure.gfx.toml: -------------------------------------------------------------------------------- 1 | [my_arm] 2 | id = 838 3 | -------------------------------------------------------------------------------- /data/quest/members/regicide/regicide.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/members/regicide/regicide.items.toml -------------------------------------------------------------------------------- /data/quest/members/rum_deal/rum_deal.gfx.toml: -------------------------------------------------------------------------------- 1 | [karamthulhu] 2 | id = 627 3 | -------------------------------------------------------------------------------- /data/quest/members/rum_deal/rum_deal.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/members/rum_deal/rum_deal.items.toml -------------------------------------------------------------------------------- /data/quest/members/rum_deal/rum_deal.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/members/rum_deal/rum_deal.npcs.toml -------------------------------------------------------------------------------- /data/quest/members/sea_slug/sea_slug.gfx.toml: -------------------------------------------------------------------------------- 1 | [sea_slug] 2 | id = 722 3 | -------------------------------------------------------------------------------- /data/quest/members/sea_slug/sea_slug.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/members/sea_slug/sea_slug.items.toml -------------------------------------------------------------------------------- /data/quest/members/the_feud/the_feud.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/members/the_feud/the_feud.drops.toml -------------------------------------------------------------------------------- /data/quest/members/the_feud/the_feud.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/members/the_feud/the_feud.items.toml -------------------------------------------------------------------------------- /data/quest/members/the_feud/the_feud.jingles.toml: -------------------------------------------------------------------------------- 1 | [the_feud_snake_charming] 2 | id = 175 3 | -------------------------------------------------------------------------------- /data/quest/members/the_feud/the_feud.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/members/the_feud/the_feud.npcs.toml -------------------------------------------------------------------------------- /data/quest/members/the_grand_tree/the_grand_tree.varps.toml: -------------------------------------------------------------------------------- 1 | [spirit_tree_tile] 2 | id = 1469 3 | format = "int" -------------------------------------------------------------------------------- /data/quest/members/wanted/wanted.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/members/wanted/wanted.items.toml -------------------------------------------------------------------------------- /data/quest/members/watchtower_quest/watchtower.jingles.toml: -------------------------------------------------------------------------------- 1 | [watchtower_reactivate] 2 | id = 234 3 | -------------------------------------------------------------------------------- /data/quest/members/while_guthix_sleeps/guthixian_temple/guthixian_temple.npcs.toml: -------------------------------------------------------------------------------- 1 | [light_creature_guthixian_temple] 2 | id = 8454 3 | 4 | -------------------------------------------------------------------------------- /data/quest/members/while_guthix_sleeps/while_guthix_sleeps.gfx.toml: -------------------------------------------------------------------------------- 1 | [light_creature] 2 | id = 1933 3 | -------------------------------------------------------------------------------- /data/quest/mini/a_guild_of_our_own.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/mini/a_guild_of_our_own.items.toml -------------------------------------------------------------------------------- /data/quest/mini/bar_crawl/bar_crawl.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/mini/bar_crawl/bar_crawl.items.toml -------------------------------------------------------------------------------- /data/quest/mini/bar_crawl/bar_crawl.varps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/mini/bar_crawl/bar_crawl.varps.toml -------------------------------------------------------------------------------- /data/quest/mini/bar_crawl/bar_crawl.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/mini/bar_crawl/bar_crawl.vars.toml -------------------------------------------------------------------------------- /data/quest/mini/barbarian_training.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/mini/barbarian_training.items.toml -------------------------------------------------------------------------------- /data/quest/mini/from_tiny_acorns.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/mini/from_tiny_acorns.items.toml -------------------------------------------------------------------------------- /data/quest/mini/generals_shadow.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/mini/generals_shadow.items.toml -------------------------------------------------------------------------------- /data/quest/mini/lost_her_marbles.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/mini/lost_her_marbles.items.toml -------------------------------------------------------------------------------- /data/quest/mini/mage_arena.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/mini/mage_arena.items.toml -------------------------------------------------------------------------------- /data/quest/mini/rogue_trader.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/mini/rogue_trader.items.toml -------------------------------------------------------------------------------- /data/quest/mini/wise_old_man_tasks.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/mini/wise_old_man_tasks.items.toml -------------------------------------------------------------------------------- /data/quest/quest.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/quest.ifaces.toml -------------------------------------------------------------------------------- /data/quest/quest.jingles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/quest.jingles.toml -------------------------------------------------------------------------------- /data/quest/quest.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/quest.varbits.toml -------------------------------------------------------------------------------- /data/quest/quest.varps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/quest.varps.toml -------------------------------------------------------------------------------- /data/quest/quests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/quest/quests.toml -------------------------------------------------------------------------------- /data/skill/agility/agility.jingles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/agility/agility.jingles.toml -------------------------------------------------------------------------------- /data/skill/agility/agility.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/agility/agility.sounds.toml -------------------------------------------------------------------------------- /data/skill/agility/agility.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/agility/agility.vars.toml -------------------------------------------------------------------------------- /data/skill/agility/shortcut/shortcut.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/agility/shortcut/shortcut.anims.toml -------------------------------------------------------------------------------- /data/skill/agility/shortcut/shortcut.gfx.toml: -------------------------------------------------------------------------------- 1 | [grapple_wall_climb] 2 | id = 760 3 | height = 82 4 | -------------------------------------------------------------------------------- /data/skill/agility/shortcut/shortcut.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/agility/shortcut/shortcut.objs.toml -------------------------------------------------------------------------------- /data/skill/agility/shortcut/shortcut.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/agility/shortcut/shortcut.teles.toml -------------------------------------------------------------------------------- /data/skill/construction/construction.invs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/construction/construction.invs.toml -------------------------------------------------------------------------------- /data/skill/construction/construction.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/construction/construction.items.toml -------------------------------------------------------------------------------- /data/skill/construction/construction.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/construction/construction.npcs.toml -------------------------------------------------------------------------------- /data/skill/cooking/brewing.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/cooking/brewing.items.toml -------------------------------------------------------------------------------- /data/skill/cooking/cooking.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/cooking/cooking.anims.toml -------------------------------------------------------------------------------- /data/skill/cooking/cooking.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/cooking/cooking.items.toml -------------------------------------------------------------------------------- /data/skill/cooking/cooking.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/cooking/cooking.recipes.toml -------------------------------------------------------------------------------- /data/skill/cooking/pie.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/cooking/pie.items.toml -------------------------------------------------------------------------------- /data/skill/cooking/pie.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/cooking/pie.recipes.toml -------------------------------------------------------------------------------- /data/skill/crafting/armour.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/crafting/armour.recipes.toml -------------------------------------------------------------------------------- /data/skill/crafting/battlestaff.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/crafting/battlestaff.recipes.toml -------------------------------------------------------------------------------- /data/skill/crafting/colouring.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/crafting/colouring.recipes.toml -------------------------------------------------------------------------------- /data/skill/crafting/crafting.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/crafting/crafting.anims.toml -------------------------------------------------------------------------------- /data/skill/crafting/crafting.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/crafting/crafting.ifaces.toml -------------------------------------------------------------------------------- /data/skill/crafting/crafting.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/crafting/crafting.items.toml -------------------------------------------------------------------------------- /data/skill/crafting/crafting.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/crafting/crafting.sounds.toml -------------------------------------------------------------------------------- /data/skill/crafting/crafting.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/crafting/crafting.vars.toml -------------------------------------------------------------------------------- /data/skill/crafting/gem.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/crafting/gem.recipes.toml -------------------------------------------------------------------------------- /data/skill/crafting/glassblowing.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/crafting/glassblowing.recipes.toml -------------------------------------------------------------------------------- /data/skill/crafting/hide.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/crafting/hide.items.toml -------------------------------------------------------------------------------- /data/skill/crafting/leather.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/crafting/leather.recipes.toml -------------------------------------------------------------------------------- /data/skill/crafting/pottery.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/crafting/pottery.recipes.toml -------------------------------------------------------------------------------- /data/skill/dungeoneering/dungeoneering.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/dungeoneering/dungeoneering.gfx.toml -------------------------------------------------------------------------------- /data/skill/dungeoneering/dungeoneering.varbits.toml: -------------------------------------------------------------------------------- 1 | [dungeoneering_current_floor] 2 | id = 7550 3 | format = "int" 4 | -------------------------------------------------------------------------------- /data/skill/farming/basket.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/farming/basket.items.toml -------------------------------------------------------------------------------- /data/skill/farming/farming.anims.toml: -------------------------------------------------------------------------------- 1 | [farming_pour_water] 2 | id = 2283 -------------------------------------------------------------------------------- /data/skill/farming/farming.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/farming/farming.items.toml -------------------------------------------------------------------------------- /data/skill/farming/farming.jingles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/farming/farming.jingles.toml -------------------------------------------------------------------------------- /data/skill/farming/plant.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/farming/plant.items.toml -------------------------------------------------------------------------------- /data/skill/farming/produce.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/farming/produce.items.toml -------------------------------------------------------------------------------- /data/skill/farming/seed.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/farming/seed.items.toml -------------------------------------------------------------------------------- /data/skill/farming/vegetable_sack.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/farming/vegetable_sack.recipes.toml -------------------------------------------------------------------------------- /data/skill/firemaking/firemaking.anims.toml: -------------------------------------------------------------------------------- 1 | [light_fire] 2 | id = 733 3 | -------------------------------------------------------------------------------- /data/skill/firemaking/firemaking.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/firemaking/firemaking.items.toml -------------------------------------------------------------------------------- /data/skill/firemaking/light_source.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/firemaking/light_source.recipes.toml -------------------------------------------------------------------------------- /data/skill/firemaking/log.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/firemaking/log.items.toml -------------------------------------------------------------------------------- /data/skill/fishing/fish.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/fishing/fish.items.toml -------------------------------------------------------------------------------- /data/skill/fishing/fishing.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/fishing/fishing.anims.toml -------------------------------------------------------------------------------- /data/skill/fishing/fishing.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/fishing/fishing.items.toml -------------------------------------------------------------------------------- /data/skill/fishing/fishing.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/fishing/fishing.recipes.toml -------------------------------------------------------------------------------- /data/skill/fishing/fishing_spots.npcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/fishing/fishing_spots.npcs.toml -------------------------------------------------------------------------------- /data/skill/fletching/arrowtip.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/fletching/arrowtip.items.toml -------------------------------------------------------------------------------- /data/skill/fletching/arrowtip.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/fletching/arrowtip.recipes.toml -------------------------------------------------------------------------------- /data/skill/fletching/bolt_tip.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/fletching/bolt_tip.items.toml -------------------------------------------------------------------------------- /data/skill/fletching/bolt_tip.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/fletching/bolt_tip.recipes.toml -------------------------------------------------------------------------------- /data/skill/fletching/bow.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/fletching/bow.recipes.toml -------------------------------------------------------------------------------- /data/skill/fletching/crossbow.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/fletching/crossbow.recipes.toml -------------------------------------------------------------------------------- /data/skill/fletching/fletching.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/fletching/fletching.anims.toml -------------------------------------------------------------------------------- /data/skill/fletching/fletching.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/fletching/fletching.items.toml -------------------------------------------------------------------------------- /data/skill/herblore/barbarian_mix.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/herblore/barbarian_mix.items.toml -------------------------------------------------------------------------------- /data/skill/herblore/barbarian_mix.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/herblore/barbarian_mix.recipes.toml -------------------------------------------------------------------------------- /data/skill/herblore/crushing.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/herblore/crushing.recipes.toml -------------------------------------------------------------------------------- /data/skill/herblore/herblore.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/herblore/herblore.anims.toml -------------------------------------------------------------------------------- /data/skill/herblore/herblore.gfx.toml: -------------------------------------------------------------------------------- 1 | [overload] 2 | id = 560 3 | -------------------------------------------------------------------------------- /data/skill/herblore/herblore.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/herblore/herblore.items.toml -------------------------------------------------------------------------------- /data/skill/herblore/herblore.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/herblore/herblore.recipes.toml -------------------------------------------------------------------------------- /data/skill/herblore/herblore.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/herblore/herblore.varbits.toml -------------------------------------------------------------------------------- /data/skill/herblore/herblore.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/herblore/herblore.vars.toml -------------------------------------------------------------------------------- /data/skill/herblore/juju_potion.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/herblore/juju_potion.recipes.toml -------------------------------------------------------------------------------- /data/skill/herblore/potion.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/herblore/potion.items.toml -------------------------------------------------------------------------------- /data/skill/herblore/potion.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/herblore/potion.recipes.toml -------------------------------------------------------------------------------- /data/skill/herblore/potion_decant.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/herblore/potion_decant.recipes.toml -------------------------------------------------------------------------------- /data/skill/herblore/swamp_tar.recipes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/herblore/swamp_tar.recipes.toml -------------------------------------------------------------------------------- /data/skill/hunter/hunter.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/hunter/hunter.items.toml -------------------------------------------------------------------------------- /data/skill/hunter/hunting.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/hunter/hunting.gfx.toml -------------------------------------------------------------------------------- /data/skill/magic/jewellery/jewellery.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/jewellery/jewellery.vars.toml -------------------------------------------------------------------------------- /data/skill/magic/magic.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/magic.anims.toml -------------------------------------------------------------------------------- /data/skill/magic/magic.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/magic.gfx.toml -------------------------------------------------------------------------------- /data/skill/magic/magic.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/magic.ifaces.toml -------------------------------------------------------------------------------- /data/skill/magic/magic.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/magic.items.toml -------------------------------------------------------------------------------- /data/skill/magic/magic.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/magic.sounds.toml -------------------------------------------------------------------------------- /data/skill/magic/magic.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/magic.varbits.toml -------------------------------------------------------------------------------- /data/skill/magic/magic.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/magic.vars.toml -------------------------------------------------------------------------------- /data/skill/magic/magic_weapon.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/magic_weapon.items.toml -------------------------------------------------------------------------------- /data/skill/magic/robe.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/robe.items.toml -------------------------------------------------------------------------------- /data/skill/magic/runes.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/runes.items.toml -------------------------------------------------------------------------------- /data/skill/magic/spellbook/spellbook.varps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/spellbook/spellbook.varps.toml -------------------------------------------------------------------------------- /data/skill/magic/spells.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/spells.toml -------------------------------------------------------------------------------- /data/skill/magic/teleport/teleport.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/teleport/teleport.anims.toml -------------------------------------------------------------------------------- /data/skill/magic/teleport/teleport.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/teleport/teleport.gfx.toml -------------------------------------------------------------------------------- /data/skill/magic/teleport/teleport.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/magic/teleport/teleport.sounds.toml -------------------------------------------------------------------------------- /data/skill/melee/melee.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/melee/melee.anims.toml -------------------------------------------------------------------------------- /data/skill/melee/melee_armour.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/melee/melee_armour.items.toml -------------------------------------------------------------------------------- /data/skill/melee/melee_weapon.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/melee/melee_weapon.items.toml -------------------------------------------------------------------------------- /data/skill/melee/weapon.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/melee/weapon.vars.toml -------------------------------------------------------------------------------- /data/skill/mining/mining.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/mining/mining.vars.toml -------------------------------------------------------------------------------- /data/skill/mining/ore.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/mining/ore.items.toml -------------------------------------------------------------------------------- /data/skill/mining/pickaxe.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/mining/pickaxe.anims.toml -------------------------------------------------------------------------------- /data/skill/mining/pickaxe.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/mining/pickaxe.items.toml -------------------------------------------------------------------------------- /data/skill/mining/rocks.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/mining/rocks.objs.toml -------------------------------------------------------------------------------- /data/skill/prayer/altar.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/prayer/altar.objs.toml -------------------------------------------------------------------------------- /data/skill/prayer/bone.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/prayer/bone.items.toml -------------------------------------------------------------------------------- /data/skill/prayer/curses.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/prayer/curses.gfx.toml -------------------------------------------------------------------------------- /data/skill/prayer/prayer.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/prayer/prayer.anims.toml -------------------------------------------------------------------------------- /data/skill/prayer/prayer.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/prayer/prayer.gfx.toml -------------------------------------------------------------------------------- /data/skill/prayer/prayer.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/prayer/prayer.ifaces.toml -------------------------------------------------------------------------------- /data/skill/prayer/prayer.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/prayer/prayer.sounds.toml -------------------------------------------------------------------------------- /data/skill/prayer/prayer.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/prayer/prayer.varbits.toml -------------------------------------------------------------------------------- /data/skill/prayer/prayer.varcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/prayer/prayer.varcs.toml -------------------------------------------------------------------------------- /data/skill/prayer/prayer.varps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/prayer/prayer.varps.toml -------------------------------------------------------------------------------- /data/skill/prayer/prayer.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/prayer/prayer.vars.toml -------------------------------------------------------------------------------- /data/skill/prayer/prayers.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/prayer/prayers.toml -------------------------------------------------------------------------------- /data/skill/range/ammo_groups.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/ammo_groups.toml -------------------------------------------------------------------------------- /data/skill/range/arrow.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/arrow.items.toml -------------------------------------------------------------------------------- /data/skill/range/arrows.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/arrows.gfx.toml -------------------------------------------------------------------------------- /data/skill/range/avas.vars.toml: -------------------------------------------------------------------------------- 1 | [collect_junk] 2 | format = "boolean" 3 | persist = true 4 | -------------------------------------------------------------------------------- /data/skill/range/bolt.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/bolt.items.toml -------------------------------------------------------------------------------- /data/skill/range/bolt_special.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/bolt_special.sounds.toml -------------------------------------------------------------------------------- /data/skill/range/bolts.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/bolts.gfx.toml -------------------------------------------------------------------------------- /data/skill/range/bow.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/bow.items.toml -------------------------------------------------------------------------------- /data/skill/range/crossbow.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/crossbow.items.toml -------------------------------------------------------------------------------- /data/skill/range/dart.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/dart.items.toml -------------------------------------------------------------------------------- /data/skill/range/darts.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/darts.gfx.toml -------------------------------------------------------------------------------- /data/skill/range/hand_cannon.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/hand_cannon.gfx.toml -------------------------------------------------------------------------------- /data/skill/range/javelin.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/javelin.items.toml -------------------------------------------------------------------------------- /data/skill/range/javelins.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/javelins.gfx.toml -------------------------------------------------------------------------------- /data/skill/range/ranged_armour.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/ranged_armour.items.toml -------------------------------------------------------------------------------- /data/skill/range/throwing_axe.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/throwing_axe.gfx.toml -------------------------------------------------------------------------------- /data/skill/range/throwing_axe.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/throwing_axe.items.toml -------------------------------------------------------------------------------- /data/skill/range/throwing_knife.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/throwing_knife.gfx.toml -------------------------------------------------------------------------------- /data/skill/range/throwing_knife.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/throwing_knife.items.toml -------------------------------------------------------------------------------- /data/skill/range/thrown.gfx.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/range/thrown.gfx.toml -------------------------------------------------------------------------------- /data/skill/runecrafting/runecrafting.anims.toml: -------------------------------------------------------------------------------- 1 | [bind_runes] 2 | id = 791 -------------------------------------------------------------------------------- /data/skill/runecrafting/runecrafting.areas.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/runecrafting/runecrafting.areas.toml -------------------------------------------------------------------------------- /data/skill/runecrafting/runecrafting.gfx.toml: -------------------------------------------------------------------------------- 1 | [bind_runes] 2 | id = 186 3 | height = 92 4 | -------------------------------------------------------------------------------- /data/skill/runecrafting/runecrafting.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/runecrafting/runecrafting.items.toml -------------------------------------------------------------------------------- /data/skill/runecrafting/runecrafting.sounds.toml: -------------------------------------------------------------------------------- 1 | [bind_runes] 2 | id = 2710 3 | -------------------------------------------------------------------------------- /data/skill/runecrafting/runecrafting.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/runecrafting/runecrafting.teles.toml -------------------------------------------------------------------------------- /data/skill/skill.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/skill.ifaces.toml -------------------------------------------------------------------------------- /data/skill/skill.jingles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/skill.jingles.toml -------------------------------------------------------------------------------- /data/skill/skill.strings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/skill.strings.toml -------------------------------------------------------------------------------- /data/skill/skill.varps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/skill.varps.toml -------------------------------------------------------------------------------- /data/skill/skillcape.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/skillcape.items.toml -------------------------------------------------------------------------------- /data/skill/slayer/slayer.gfx.toml: -------------------------------------------------------------------------------- 1 | [mutated_zygomite] 2 | id = 578 3 | -------------------------------------------------------------------------------- /data/skill/slayer/slayer.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/slayer/slayer.ifaces.toml -------------------------------------------------------------------------------- /data/skill/slayer/slayer.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/slayer/slayer.items.toml -------------------------------------------------------------------------------- /data/skill/slayer/slayer.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/slayer/slayer.varbits.toml -------------------------------------------------------------------------------- /data/skill/slayer/slayer.varps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/slayer/slayer.varps.toml -------------------------------------------------------------------------------- /data/skill/slayer/slayer.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/slayer/slayer.vars.toml -------------------------------------------------------------------------------- /data/skill/slayer/slayer_challenge.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/slayer/slayer_challenge.items.toml -------------------------------------------------------------------------------- /data/skill/slayer/turael.tasks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/slayer/turael.tasks.toml -------------------------------------------------------------------------------- /data/skill/smithing/anvils.objs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/smithing/anvils.objs.toml -------------------------------------------------------------------------------- /data/skill/smithing/bars.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/smithing/bars.items.toml -------------------------------------------------------------------------------- /data/skill/smithing/smithing.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/smithing/smithing.anims.toml -------------------------------------------------------------------------------- /data/skill/smithing/smithing.gfx.toml: -------------------------------------------------------------------------------- 1 | [superheat_item] 2 | id = 148 3 | height = 60 4 | -------------------------------------------------------------------------------- /data/skill/smithing/smithing.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/smithing/smithing.ifaces.toml -------------------------------------------------------------------------------- /data/skill/smithing/smithing.invs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/smithing/smithing.invs.toml -------------------------------------------------------------------------------- /data/skill/smithing/smithing.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/smithing/smithing.items.toml -------------------------------------------------------------------------------- /data/skill/smithing/smithing.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/smithing/smithing.sounds.toml -------------------------------------------------------------------------------- /data/skill/summoning/summoning.anims.toml: -------------------------------------------------------------------------------- 1 | [summoning_infuse] 2 | id = 8500 -------------------------------------------------------------------------------- /data/skill/summoning/summoning.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/summoning/summoning.ifaces.toml -------------------------------------------------------------------------------- /data/skill/summoning/summoning.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/summoning/summoning.items.toml -------------------------------------------------------------------------------- /data/skill/summoning/summoning.objs.toml: -------------------------------------------------------------------------------- 1 | [obelisk] 2 | id = 28722 3 | examine = "Glowing with barely-suppressed energies." -------------------------------------------------------------------------------- /data/skill/summoning/summoning.teles.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/summoning/summoning.teles.toml -------------------------------------------------------------------------------- /data/skill/thieving/pickpocket.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/thieving/pickpocket.drops.toml -------------------------------------------------------------------------------- /data/skill/thieving/thieving.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/thieving/thieving.anims.toml -------------------------------------------------------------------------------- /data/skill/thieving/thieving.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/thieving/thieving.items.toml -------------------------------------------------------------------------------- /data/skill/thieving/thieving.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/thieving/thieving.sounds.toml -------------------------------------------------------------------------------- /data/skill/woodcutting/birds_nest.drops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/woodcutting/birds_nest.drops.toml -------------------------------------------------------------------------------- /data/skill/woodcutting/hatchet.anims.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/woodcutting/hatchet.anims.toml -------------------------------------------------------------------------------- /data/skill/woodcutting/hatchet.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/woodcutting/hatchet.items.toml -------------------------------------------------------------------------------- /data/skill/woodcutting/woodcutting.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/woodcutting/woodcutting.items.toml -------------------------------------------------------------------------------- /data/skill/woodcutting/woodcutting.sounds.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/skill/woodcutting/woodcutting.sounds.toml -------------------------------------------------------------------------------- /data/social/assist/assist.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/assist/assist.ifaces.toml -------------------------------------------------------------------------------- /data/social/assist/assist.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/assist/assist.varbits.toml -------------------------------------------------------------------------------- /data/social/assist/assist.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/assist/assist.vars.toml -------------------------------------------------------------------------------- /data/social/clan/clan.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/clan/clan.ifaces.toml -------------------------------------------------------------------------------- /data/social/clan/clan.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/clan/clan.varbits.toml -------------------------------------------------------------------------------- /data/social/clan/clan.varcs.toml: -------------------------------------------------------------------------------- 1 | [loot_share_loading_timeout] 2 | id = 53 3 | format = "int" 4 | -------------------------------------------------------------------------------- /data/social/clan/clan.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/clan/clan.vars.toml -------------------------------------------------------------------------------- /data/social/clan/clan_chat.varps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/clan/clan_chat.varps.toml -------------------------------------------------------------------------------- /data/social/friend/friend.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/friend/friend.ifaces.toml -------------------------------------------------------------------------------- /data/social/ignore/ignore.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/ignore/ignore.ifaces.toml -------------------------------------------------------------------------------- /data/social/photo/photo_booth.ifaces.toml: -------------------------------------------------------------------------------- 1 | [photo_booth] 2 | id = 549 3 | 4 | -------------------------------------------------------------------------------- /data/social/report/report.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/report/report.ifaces.toml -------------------------------------------------------------------------------- /data/social/trade/exchange/grand_exchange.jingles.toml: -------------------------------------------------------------------------------- 1 | [grand_exchange_offer_complete] 2 | id = 284 3 | -------------------------------------------------------------------------------- /data/social/trade/lend/lend.varbits.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/trade/lend/lend.varbits.toml -------------------------------------------------------------------------------- /data/social/trade/lend/lend.varps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/trade/lend/lend.varps.toml -------------------------------------------------------------------------------- /data/social/trade/lend/lend.vars.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/trade/lend/lend.vars.toml -------------------------------------------------------------------------------- /data/social/trade/lend/lent.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/trade/lend/lent.items.toml -------------------------------------------------------------------------------- /data/social/trade/rare.items.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/trade/rare.items.toml -------------------------------------------------------------------------------- /data/social/trade/trade.ifaces.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/trade/trade.ifaces.toml -------------------------------------------------------------------------------- /data/social/trade/trade.invs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/trade/trade.invs.toml -------------------------------------------------------------------------------- /data/social/trade/trade.strings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/trade/trade.strings.toml -------------------------------------------------------------------------------- /data/social/trade/trade.varcs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/trade/trade.varcs.toml -------------------------------------------------------------------------------- /data/social/trade/trade.varps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/data/social/trade/trade.varps.toml -------------------------------------------------------------------------------- /database/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/database/build.gradle.kts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /engine/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/engine/build.gradle.kts -------------------------------------------------------------------------------- /engine/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/engine/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /engine/src/test/resources/player.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/engine/src/test/resources/player.toml -------------------------------------------------------------------------------- /engine/src/test/resources/world/gregs/voidps/engine/data/definition/test-animation.toml: -------------------------------------------------------------------------------- 1 | [expression_yes] 2 | id = 9741 -------------------------------------------------------------------------------- /engine/src/test/resources/world/gregs/voidps/engine/data/definition/test-gfx.toml: -------------------------------------------------------------------------------- 1 | [gfx] 2 | teleport_modern = 1576 -------------------------------------------------------------------------------- /game/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/build.gradle.kts -------------------------------------------------------------------------------- /game/src/main/kotlin/ContentLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/kotlin/ContentLoader.kt -------------------------------------------------------------------------------- /game/src/main/kotlin/GameModules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/kotlin/GameModules.kt -------------------------------------------------------------------------------- /game/src/main/kotlin/GameTick.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/kotlin/GameTick.kt -------------------------------------------------------------------------------- /game/src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/kotlin/Main.kt -------------------------------------------------------------------------------- /game/src/main/kotlin/content/bot/Bot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/kotlin/content/bot/Bot.kt -------------------------------------------------------------------------------- /game/src/main/kotlin/content/bot/BotSpawns.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/kotlin/content/bot/BotSpawns.kt -------------------------------------------------------------------------------- /game/src/main/kotlin/content/bot/Bots.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/kotlin/content/bot/Bots.kt -------------------------------------------------------------------------------- /game/src/main/kotlin/content/bot/Task.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/kotlin/content/bot/Task.kt -------------------------------------------------------------------------------- /game/src/main/kotlin/content/bot/TaskManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/kotlin/content/bot/TaskManager.kt -------------------------------------------------------------------------------- /game/src/main/kotlin/content/bot/WalkingBot.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/kotlin/content/bot/WalkingBot.kt -------------------------------------------------------------------------------- /game/src/main/kotlin/content/entity/Examines.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/kotlin/content/entity/Examines.kt -------------------------------------------------------------------------------- /game/src/main/kotlin/content/entity/Movement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/kotlin/content/entity/Movement.kt -------------------------------------------------------------------------------- /game/src/main/kotlin/content/entity/obj/Mill.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/kotlin/content/entity/obj/Mill.kt -------------------------------------------------------------------------------- /game/src/main/kotlin/content/quest/Cutscene.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/kotlin/content/quest/Cutscene.kt -------------------------------------------------------------------------------- /game/src/main/kotlin/content/quest/Quest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/kotlin/content/quest/Quest.kt -------------------------------------------------------------------------------- /game/src/main/resources/game.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/resources/game.properties -------------------------------------------------------------------------------- /game/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/resources/logback.xml -------------------------------------------------------------------------------- /game/src/main/resources/run-server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/resources/run-server.bat -------------------------------------------------------------------------------- /game/src/main/resources/run-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/main/resources/run-server.sh -------------------------------------------------------------------------------- /game/src/test/kotlin/FakeRandom.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/test/kotlin/FakeRandom.kt -------------------------------------------------------------------------------- /game/src/test/kotlin/InstructionCalls.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/test/kotlin/InstructionCalls.kt -------------------------------------------------------------------------------- /game/src/test/kotlin/KoinMock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/test/kotlin/KoinMock.kt -------------------------------------------------------------------------------- /game/src/test/kotlin/MockProviderExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/test/kotlin/MockProviderExtension.kt -------------------------------------------------------------------------------- /game/src/test/kotlin/SettingsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/test/kotlin/SettingsTest.kt -------------------------------------------------------------------------------- /game/src/test/kotlin/WorldTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/test/kotlin/WorldTest.kt -------------------------------------------------------------------------------- /game/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/game/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/gradlew.bat -------------------------------------------------------------------------------- /network/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/network/build.gradle.kts -------------------------------------------------------------------------------- /network/src/test/resources/decoder-packets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/network/src/test/resources/decoder-packets.csv -------------------------------------------------------------------------------- /network/src/test/resources/encoder-packets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/network/src/test/resources/encoder-packets.csv -------------------------------------------------------------------------------- /network/src/test/resources/huffman.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/network/src/test/resources/huffman.csv -------------------------------------------------------------------------------- /qodana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/qodana.yaml -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /tools/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/tools/build.gradle.kts -------------------------------------------------------------------------------- /tools/src/main/kotlin/world/gregs/yaml/Yaml.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/tools/src/main/kotlin/world/gregs/yaml/Yaml.kt -------------------------------------------------------------------------------- /tools/src/main/resources/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/tools/src/main/resources/keywords.txt -------------------------------------------------------------------------------- /tools/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/tools/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /tools/src/test/resources/xteas/123.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/tools/src/test/resources/xteas/123.dat -------------------------------------------------------------------------------- /tools/src/test/resources/xteas/123.txt: -------------------------------------------------------------------------------- 1 | -1 2 | 2 3 | 3 -------------------------------------------------------------------------------- /tools/src/test/resources/xteas/xteas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/tools/src/test/resources/xteas/xteas.json -------------------------------------------------------------------------------- /types/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregHib/void/HEAD/types/build.gradle.kts --------------------------------------------------------------------------------