├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── content-feature-plugin.md │ └── game-engine-feature.md └── workflows │ └── build.yml ├── .gitignore ├── .swcrc ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── Dockerfile ├── FEATURES.md ├── LICENSE ├── README.md ├── biome.json ├── cache ├── file-names.properties ├── main_file_cache.dat0 ├── main_file_cache.dat1 ├── main_file_cache.dat2 ├── main_file_cache.idx0 ├── main_file_cache.idx1 ├── main_file_cache.idx10 ├── main_file_cache.idx11 ├── main_file_cache.idx12 ├── main_file_cache.idx2 ├── main_file_cache.idx255 ├── main_file_cache.idx3 ├── main_file_cache.idx4 ├── main_file_cache.idx5 ├── main_file_cache.idx6 ├── main_file_cache.idx7 ├── main_file_cache.idx8 └── main_file_cache.idx9 ├── config ├── file-names.properties └── server-config.example.json ├── data ├── config │ ├── combat-styles.json │ ├── examine-item-data.yaml │ ├── item-spawns │ │ └── lumbridge │ │ │ └── lumbridge.json │ ├── items │ │ ├── barrows │ │ │ └── dharoks.json │ │ ├── bolts.json │ │ ├── bones.json │ │ ├── containers.json │ │ ├── currency.json │ │ ├── equipment │ │ │ ├── amulets.json │ │ │ ├── axes.json │ │ │ ├── bows.json │ │ │ ├── capes.json │ │ │ ├── daggers.json │ │ │ ├── darts.json │ │ │ ├── halberd.json │ │ │ ├── hammers.json │ │ │ ├── hatchets.json │ │ │ ├── hats.json │ │ │ ├── javelins.json │ │ │ ├── leather-armour.json │ │ │ ├── longswords.json │ │ │ ├── mauls.json │ │ │ ├── pickaxes.json │ │ │ ├── shortswords.json │ │ │ ├── skillscapes.json │ │ │ ├── slayer.json │ │ │ ├── spears.json │ │ │ ├── staffs.json │ │ │ ├── standard-metals │ │ │ │ ├── adamant-armour.json │ │ │ │ ├── black-armour.json │ │ │ │ ├── bronze-armour.json │ │ │ │ ├── bronze-weapons.json │ │ │ │ ├── iron-armour.json │ │ │ │ ├── iron-weapons.json │ │ │ │ ├── mithril-armour.json │ │ │ │ ├── mithril-weapons.json │ │ │ │ ├── rune-armour.json │ │ │ │ ├── rune-god-armour.json │ │ │ │ ├── steel-armour.json │ │ │ │ ├── steel-weapons.json │ │ │ │ └── white-armour.json │ │ │ ├── tiaras.json │ │ │ ├── training.json │ │ │ └── whips.json │ │ ├── food.json │ │ ├── holiday │ │ │ └── partyhats.json │ │ ├── icons.json │ │ ├── logs.json │ │ ├── other.json │ │ ├── quests │ │ │ ├── lost-city.json │ │ │ └── witchs-potion.json │ │ └── skills │ │ │ ├── artisan-tools.json │ │ │ ├── baking.json │ │ │ ├── cooking.json │ │ │ ├── crafting │ │ │ ├── gems.json │ │ │ └── jewelery-moulds.json │ │ │ ├── firemaking.json │ │ │ ├── fishing.json │ │ │ ├── fletching │ │ │ ├── arrows.json │ │ │ └── bolts.json │ │ │ ├── herblore.json │ │ │ ├── herblore │ │ │ ├── herbs.json │ │ │ ├── ingredients.json │ │ │ └── tools.json │ │ │ ├── mining.json │ │ │ ├── prayer.json │ │ │ └── runecrafting.json │ ├── music │ │ └── musicRegions.json │ ├── npc-spawns │ │ ├── alkharid │ │ │ └── alkharid-general.json │ │ ├── ardougne │ │ │ ├── bankers.json │ │ │ ├── guards.json │ │ │ └── market.json │ │ ├── camelot │ │ │ └── bankers.json │ │ ├── canifis │ │ │ └── bankers.json │ │ ├── catherby │ │ │ └── bankers.json │ │ ├── draynor │ │ │ └── bankers.json │ │ ├── edgeville │ │ │ └── bankers.json │ │ ├── falador │ │ │ ├── bankers.json │ │ │ └── guards.json │ │ ├── keldagrim │ │ │ └── bankers.json │ │ ├── lumbridge │ │ │ ├── bankers.json │ │ │ ├── lumbridge-general.json │ │ │ ├── lumbridge-goblins.json │ │ │ └── lumbridge-sheep.json │ │ ├── magebank │ │ │ └── bankers.json │ │ ├── nardah │ │ │ └── bankers.json │ │ ├── pestcontrol │ │ │ └── bankers.json │ │ ├── portsarim │ │ │ └── port-sarim-general.json │ │ ├── rimmington │ │ │ └── rimmington.json │ │ ├── shilovillage │ │ │ └── bankers.json │ │ ├── varrock │ │ │ ├── bankers.json │ │ │ ├── blue-moon-inn.json │ │ │ └── varrock-general.json │ │ └── yanille │ │ │ └── bankers.json │ ├── npcs │ │ ├── alkharid.json │ │ ├── ardougne.json │ │ ├── bankers.json │ │ ├── barbarians.json │ │ ├── general.json │ │ ├── generic-humans.json │ │ ├── goblins.json │ │ ├── guards.json │ │ ├── lumbridge.json │ │ ├── port-sarim.json │ │ ├── rimmington.json │ │ ├── sheep.json │ │ └── varrock.json │ ├── scenery-spawns.yaml │ ├── shops │ │ ├── alkharid │ │ │ ├── alkharid-gem-trader.json │ │ │ ├── dommiks-crafting-store.json │ │ │ ├── louies-armored-legs.json │ │ │ └── ranaels-skirt-store.json │ │ ├── lumbridge │ │ │ ├── bobs-axes.json │ │ │ └── lumbridge-general-store.json │ │ ├── portsarim │ │ │ └── bettys-magic-emporium.json │ │ ├── shilo-village │ │ │ └── oblis-general-store.json │ │ └── varrock │ │ │ └── zaffs-staffs.json │ ├── travel-locations-data.yaml │ ├── widgets.json │ └── xteas │ │ ├── 435.json │ │ └── 468.json └── saves │ └── .gitkeep ├── docker-compose.yml ├── jest.config.ts ├── nodemon.json ├── package.json ├── src ├── engine │ ├── action │ │ ├── action-pipeline.ts │ │ ├── hook │ │ │ ├── action-hook.ts │ │ │ ├── hook-filters.test.ts │ │ │ ├── hook-filters.ts │ │ │ └── task.ts │ │ ├── loader.ts │ │ └── pipe │ │ │ ├── button.action.ts │ │ │ ├── equipment-change.action.ts │ │ │ ├── item-interaction.action.ts │ │ │ ├── item-on-item.action.ts │ │ │ ├── item-on-npc.action.ts │ │ │ ├── item-on-object.action.ts │ │ │ ├── item-on-player.action.ts │ │ │ ├── item-on-world-item.action.ts │ │ │ ├── item-swap.action.ts │ │ │ ├── magic-on-npc.action.ts │ │ │ ├── move-item.action.ts │ │ │ ├── npc-init.action.ts │ │ │ ├── npc-interaction.action.ts │ │ │ ├── object-interaction.action.ts │ │ │ ├── player-command.action.ts │ │ │ ├── player-init.action.ts │ │ │ ├── player-interaction.action.ts │ │ │ ├── prayer.action.ts │ │ │ ├── region-change.action.ts │ │ │ ├── spawned-item-interaction.action.ts │ │ │ ├── task │ │ │ ├── queueable-task.ts │ │ │ ├── walk-to-actor-plugin-task.ts │ │ │ ├── walk-to-item-plugin-task.ts │ │ │ └── walk-to-object-plugin-task.ts │ │ │ └── widget-interaction.action.ts │ ├── config │ │ ├── config-handler.ts │ │ ├── data-dump.ts │ │ ├── directories.ts │ │ ├── item-config.ts │ │ ├── item-spawn-config.ts │ │ ├── music-regions-config.ts │ │ ├── npc-config.ts │ │ ├── npc-spawn-config.ts │ │ ├── quest-config.ts │ │ ├── shop-config.test.ts │ │ └── shop-config.ts │ ├── interface │ │ └── interface-state.ts │ ├── net │ │ ├── inbound-packet-handler.ts │ │ ├── inbound-packets │ │ │ ├── add-friend.packet.ts │ │ │ ├── add-ignore.packet.ts │ │ │ ├── blinking-tab-click.packet.ts │ │ │ ├── button-click.packet.ts │ │ │ ├── character-design.packet.ts │ │ │ ├── chat.packet.ts │ │ │ ├── command.packet.ts │ │ │ ├── drop-item.packet.ts │ │ │ ├── examine.packet.ts │ │ │ ├── item-interaction.packet.ts │ │ │ ├── item-on-item.packet.ts │ │ │ ├── item-on-npc.packet.ts │ │ │ ├── item-on-object.packet.ts │ │ │ ├── item-on-player.packet.ts │ │ │ ├── item-on-world-item.packet.ts │ │ │ ├── item-swap.packet.ts │ │ │ ├── junk.packet.ts │ │ │ ├── magic-attack.packet.ts │ │ │ ├── npc-interaction.packet.ts │ │ │ ├── number-input.packet.ts │ │ │ ├── object-interaction.packet.ts │ │ │ ├── pickup-item.packet.ts │ │ │ ├── player-interaction.packet.ts │ │ │ ├── private-message.packet.ts │ │ │ ├── remove-friend.packet.ts │ │ │ ├── remove-ignore.packet.ts │ │ │ ├── social-button.packet.ts │ │ │ ├── walk.packet.ts │ │ │ ├── widget-interaction.packet.ts │ │ │ └── widgets-closed.packet.ts │ │ ├── isaac.ts │ │ ├── outbound-packet-handler.ts │ │ └── packet.ts │ ├── plugins │ │ ├── content-plugin.ts │ │ ├── loader.ts │ │ └── reload-content.ts │ ├── task │ │ ├── README.md │ │ ├── impl │ │ │ ├── actor-actor-interaction-task.ts │ │ │ ├── actor-landscape-object-interaction-task.ts │ │ │ ├── actor-task.ts │ │ │ ├── actor-teleport-task.ts │ │ │ ├── actor-walk-to-task.ts │ │ │ └── actor-world-item-interaction-task.ts │ │ ├── task-scheduler.test.ts │ │ ├── task-scheduler.ts │ │ ├── task.test.ts │ │ ├── task.ts │ │ ├── types.ts │ │ └── utils │ │ │ └── _testing.ts │ ├── util │ │ ├── address.ts │ │ ├── colors.ts │ │ ├── data.ts │ │ ├── error-handling.ts │ │ ├── files.ts │ │ ├── num.ts │ │ ├── objects.ts │ │ ├── queue.test.ts │ │ ├── queue.ts │ │ ├── strings.ts │ │ ├── time.ts │ │ └── varbits.ts │ └── world │ │ ├── actor │ │ ├── actor.ts │ │ ├── combat.ts │ │ ├── dialogue.ts │ │ ├── magic.ts │ │ ├── metadata.ts │ │ ├── npc.ts │ │ ├── pathfinding.ts │ │ ├── player │ │ │ ├── achievements.ts │ │ │ ├── attack.ts │ │ │ ├── cutscenes.ts │ │ │ ├── dialogue-action.ts │ │ │ ├── metadata.ts │ │ │ ├── model.ts │ │ │ ├── player-data.ts │ │ │ ├── player.ts │ │ │ ├── private-messaging.ts │ │ │ ├── quest.ts │ │ │ └── sync │ │ │ │ ├── actor-sync.ts │ │ │ │ ├── npc-sync-task.ts │ │ │ │ └── player-sync-task.ts │ │ ├── prayer.ts │ │ ├── skills.ts │ │ ├── update-flags.ts │ │ ├── util.ts │ │ └── walking-queue.ts │ │ ├── config │ │ ├── animation-ids.ts │ │ ├── examine-data.ts │ │ ├── gfx-ids.ts │ │ ├── harvest-tool.ts │ │ ├── harvestable-object.ts │ │ ├── item-ids.ts │ │ ├── object-ids.ts │ │ ├── scenery-spawns.ts │ │ ├── songs.ts │ │ ├── sound-ids.ts │ │ ├── travel-locations.ts │ │ └── widget.ts │ │ ├── direction.ts │ │ ├── index.ts │ │ ├── instances.ts │ │ ├── items │ │ ├── item-container.ts │ │ ├── item.ts │ │ └── world-item.ts │ │ ├── map │ │ ├── chunk-manager.ts │ │ ├── chunk.ts │ │ ├── collision-map.ts │ │ ├── landscape-object.ts │ │ └── region.ts │ │ ├── position.ts │ │ ├── skill-util │ │ ├── glory-boost.ts │ │ ├── harvest-roll.ts │ │ └── harvest-skill.ts │ │ ├── sound │ │ └── music.ts │ │ ├── task.ts │ │ └── world.ts ├── plugins │ ├── buttons │ │ ├── logout-button.plugin.ts │ │ ├── magic-attack.plugin.ts │ │ ├── magic-teleports.plugin.ts │ │ ├── player-emotes.plugin.ts │ │ └── player-setting-button.plugin.ts │ ├── combat │ │ └── combat-styles.plugin.ts │ ├── commands │ │ ├── bank-command.plugin.ts │ │ ├── camera-commands.plugin.ts │ │ ├── clear-inventory-command.plugin.ts │ │ ├── client-config-command.plugin.ts │ │ ├── current-position-command.plugin.ts │ │ ├── data-dump-command.plugin.ts │ │ ├── dump-metadata-command.plugin.ts │ │ ├── give-item-command.plugin.ts │ │ ├── groups-debug.plugin.ts │ │ ├── pathing-commands.plugin.ts │ │ ├── player-animation-command.plugin.ts │ │ ├── player-graphics-command.plugin.ts │ │ ├── quest-list-command.plugin.ts │ │ ├── region-debug-commands.plugin.ts │ │ ├── reset-camera-command.plugin.ts │ │ ├── sound-song-commands.plugin.ts │ │ ├── spawn-npc-command.plugin.ts │ │ ├── spawn-scenery-command.plugin.ts │ │ ├── spawn-test-players-command.plugin.ts │ │ ├── stat-commands.plugin.ts │ │ ├── teleport-command.plugin.ts │ │ ├── transform-command.plugin.ts │ │ ├── travel-back-command.plugin.ts │ │ ├── travel-command.plugin.ts │ │ └── widget-commands.plugin.ts │ ├── dialogue │ │ ├── dialogue-option.plugin.ts │ │ └── item-selection.plugin.ts │ ├── items │ │ ├── buckets │ │ │ ├── empty-container.plugin.ts │ │ │ └── fill-container.plugin.ts │ │ ├── capes │ │ │ └── skillcape-emotes.plugin.ts │ │ ├── consumables │ │ │ └── eating.plugin.ts │ │ ├── drop-item.plugin.ts │ │ ├── equipment │ │ │ ├── equip-item.plugin.ts │ │ │ ├── equipment-stats.plugin.ts │ │ │ └── unequip-item.plugin.ts │ │ ├── herblore │ │ │ └── clean-herb.ts │ │ ├── move-item.plugin.ts │ │ ├── pickup-item.plugin.ts │ │ ├── pots │ │ │ └── empty-pot.plugin.ts │ │ ├── rotten-potato │ │ │ ├── helpers │ │ │ │ ├── rotten-potato-helpers.ts │ │ │ │ └── rotten-potato-travel.ts │ │ │ ├── hooks │ │ │ │ ├── rotten-potato-command-hook.ts │ │ │ │ ├── rotten-potato-eat.ts │ │ │ │ ├── rotten-potato-item-on-item.ts │ │ │ │ ├── rotten-potato-item-on-player.ts │ │ │ │ └── rotten-potato-peel.ts │ │ │ └── rotten-potato.plugin.ts │ │ ├── runecrafting │ │ │ └── tiaras.plugin.ts │ │ ├── shopping │ │ │ ├── buy-from-shop.plugin.ts │ │ │ ├── item-value.plugin.ts │ │ │ └── sell-to-shop.plugin.ts │ │ └── swap-items.plugin.ts │ ├── music │ │ ├── music-regions.plugin.ts │ │ └── music-tab.plugin.ts │ ├── npcs │ │ ├── al-kharid │ │ │ ├── dommik-crafting-shop.plugin.ts │ │ │ ├── gem-trader.plugin.ts │ │ │ ├── karim.plugin.ts │ │ │ ├── louie-armoured-legs.plugin.ts │ │ │ └── ranael-super-skirt.plugin.ts │ │ ├── falador │ │ │ └── custom-guards.plugin.ts │ │ ├── lumbridge │ │ │ ├── bob.plugin.ts │ │ │ ├── hans.plugin.ts │ │ │ ├── lumbridge-farm-helpers.plugin.ts │ │ │ └── shopkeeper.plugin.ts │ │ ├── port-sarim │ │ │ └── betty.plugin.ts │ │ └── varrock │ │ │ ├── blue-moon-inn.plugin.ts │ │ │ ├── master-smithing-tutor.plugin.ts │ │ │ ├── wilough.plugin.ts │ │ │ └── zaff-superior-staffs.plugin.ts │ ├── objects │ │ ├── bank │ │ │ ├── bank.plugin.ts │ │ │ └── deposit-box.plugin.ts │ │ ├── cows │ │ │ └── cow.plugin.ts │ │ ├── crates │ │ │ └── crates.plugin.ts │ │ ├── doors │ │ │ ├── door.plugin.ts │ │ │ ├── double-door.plugin.ts │ │ │ └── gate.plugin.ts │ │ ├── dungeon-entrances │ │ │ └── taverly-dungeon-ladder.plugin.ts │ │ ├── item-spawns │ │ │ └── take-axe.plugin.ts │ │ ├── ladders │ │ │ └── ladder.plugin.ts │ │ ├── mill │ │ │ ├── flour-bin.plugin.ts │ │ │ ├── hopper-controls.plugin.ts │ │ │ └── hopper.plugin.ts │ │ └── pickables │ │ │ └── pickables.plugin.ts │ ├── player │ │ ├── follow-player.plugin.js │ │ ├── login-unlock-emotes.plugin.ts │ │ ├── login-update-settings.plugin.ts │ │ └── update-friends-list.plugin.ts │ ├── quests │ │ ├── cooks-assistant-quest.plugin.ts │ │ ├── goblin-diplomacy-tutorial │ │ │ ├── goblin-diplomacy-quest.plugin.ts │ │ │ ├── melee-tutor-dialogue.ts │ │ │ ├── runescape-guide-dialogue.ts │ │ │ └── stage-handler.ts │ │ ├── quest-journal.plugin.ts │ │ └── witchs-potion-quest.plugin.ts │ └── skills │ │ ├── construction │ │ ├── con-constants.ts │ │ ├── home-saver.ts │ │ ├── house.ts │ │ ├── index.ts │ │ ├── room-builder.ts │ │ └── util.ts │ │ ├── crafting │ │ ├── sheep-plugin.plugin.ts │ │ └── spinning-wheel.plugin.ts │ │ ├── firemaking │ │ ├── chance.ts │ │ ├── data.ts │ │ ├── firemaking-task.ts │ │ ├── index.ts │ │ ├── light-fire.ts │ │ └── types.ts │ │ ├── fletching │ │ ├── fletching-constants.ts │ │ ├── fletching-types.ts │ │ └── fletching.plugin.ts │ │ ├── level-up-dialogue.plugin.ts │ │ ├── mining │ │ ├── chance.ts │ │ ├── mining-task.ts │ │ ├── mining.plugin.ts │ │ └── prospecting.plugin.ts │ │ ├── prayer │ │ └── bury-bones.plugin.ts │ │ ├── runecrafting │ │ ├── runecrafting-altar.plugin.ts │ │ ├── runecrafting-constants.ts │ │ ├── runecrafting-crafting.plugin.ts │ │ ├── runecrafting-tiara.plugin.ts │ │ └── runecrafting-types.ts │ │ ├── skill-guides │ │ ├── Strength.json │ │ ├── agility.json │ │ ├── attack.json │ │ ├── construction.json │ │ ├── cooking.json │ │ ├── crafting.json │ │ ├── defence.json │ │ ├── farming.json │ │ ├── firemaking.json │ │ ├── fishing.json │ │ ├── fletching.json │ │ ├── herblore.json │ │ ├── hitpoint.json │ │ ├── magic.json │ │ ├── mining.json │ │ ├── prayer.json │ │ ├── ranged.json │ │ ├── runecrafting.json │ │ ├── skill-guide-config.ts │ │ ├── skill-guides.plugin.ts │ │ ├── slayer.json │ │ ├── smithing.json │ │ ├── thieving.json │ │ └── woodcutting.json │ │ ├── smithing │ │ ├── forging-constants.ts │ │ ├── forging-task.ts │ │ ├── forging-types.ts │ │ ├── forging.plugin.ts │ │ ├── smelting-constants.ts │ │ ├── smelting-task.ts │ │ ├── smelting-types.ts │ │ └── smelting.plugin.ts │ │ └── woodcutting │ │ ├── chance.ts │ │ ├── index.ts │ │ └── woodcutting-task.ts └── server │ ├── game │ ├── game-server-config.ts │ ├── game-server-connection.ts │ └── game-server.ts │ ├── gateway │ └── gateway-server.ts │ └── runner.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .gitignore 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/content-feature-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/.github/ISSUE_TEMPLATE/content-feature-plugin.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/game-engine-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/.github/ISSUE_TEMPLATE/game-engine-feature.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/.gitignore -------------------------------------------------------------------------------- /.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/.swcrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/Dockerfile -------------------------------------------------------------------------------- /FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/FEATURES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/biome.json -------------------------------------------------------------------------------- /cache/file-names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/file-names.properties -------------------------------------------------------------------------------- /cache/main_file_cache.dat0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.dat0 -------------------------------------------------------------------------------- /cache/main_file_cache.dat1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.dat1 -------------------------------------------------------------------------------- /cache/main_file_cache.dat2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.dat2 -------------------------------------------------------------------------------- /cache/main_file_cache.idx0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.idx0 -------------------------------------------------------------------------------- /cache/main_file_cache.idx1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.idx1 -------------------------------------------------------------------------------- /cache/main_file_cache.idx10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.idx10 -------------------------------------------------------------------------------- /cache/main_file_cache.idx11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.idx11 -------------------------------------------------------------------------------- /cache/main_file_cache.idx12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.idx12 -------------------------------------------------------------------------------- /cache/main_file_cache.idx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.idx2 -------------------------------------------------------------------------------- /cache/main_file_cache.idx255: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.idx255 -------------------------------------------------------------------------------- /cache/main_file_cache.idx3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.idx3 -------------------------------------------------------------------------------- /cache/main_file_cache.idx4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.idx4 -------------------------------------------------------------------------------- /cache/main_file_cache.idx5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.idx5 -------------------------------------------------------------------------------- /cache/main_file_cache.idx6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.idx6 -------------------------------------------------------------------------------- /cache/main_file_cache.idx7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.idx7 -------------------------------------------------------------------------------- /cache/main_file_cache.idx8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.idx8 -------------------------------------------------------------------------------- /cache/main_file_cache.idx9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/cache/main_file_cache.idx9 -------------------------------------------------------------------------------- /config/file-names.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/config/file-names.properties -------------------------------------------------------------------------------- /config/server-config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/config/server-config.example.json -------------------------------------------------------------------------------- /data/config/combat-styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/combat-styles.json -------------------------------------------------------------------------------- /data/config/examine-item-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/examine-item-data.yaml -------------------------------------------------------------------------------- /data/config/item-spawns/lumbridge/lumbridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/item-spawns/lumbridge/lumbridge.json -------------------------------------------------------------------------------- /data/config/items/barrows/dharoks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/barrows/dharoks.json -------------------------------------------------------------------------------- /data/config/items/bolts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/bolts.json -------------------------------------------------------------------------------- /data/config/items/bones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/bones.json -------------------------------------------------------------------------------- /data/config/items/containers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/containers.json -------------------------------------------------------------------------------- /data/config/items/currency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/currency.json -------------------------------------------------------------------------------- /data/config/items/equipment/amulets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/amulets.json -------------------------------------------------------------------------------- /data/config/items/equipment/axes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/axes.json -------------------------------------------------------------------------------- /data/config/items/equipment/bows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/bows.json -------------------------------------------------------------------------------- /data/config/items/equipment/capes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/capes.json -------------------------------------------------------------------------------- /data/config/items/equipment/daggers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/daggers.json -------------------------------------------------------------------------------- /data/config/items/equipment/darts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/darts.json -------------------------------------------------------------------------------- /data/config/items/equipment/halberd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/halberd.json -------------------------------------------------------------------------------- /data/config/items/equipment/hammers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/hammers.json -------------------------------------------------------------------------------- /data/config/items/equipment/hatchets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/hatchets.json -------------------------------------------------------------------------------- /data/config/items/equipment/hats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/hats.json -------------------------------------------------------------------------------- /data/config/items/equipment/javelins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/javelins.json -------------------------------------------------------------------------------- /data/config/items/equipment/leather-armour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/leather-armour.json -------------------------------------------------------------------------------- /data/config/items/equipment/longswords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/longswords.json -------------------------------------------------------------------------------- /data/config/items/equipment/mauls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/mauls.json -------------------------------------------------------------------------------- /data/config/items/equipment/pickaxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/pickaxes.json -------------------------------------------------------------------------------- /data/config/items/equipment/shortswords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/shortswords.json -------------------------------------------------------------------------------- /data/config/items/equipment/skillscapes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/skillscapes.json -------------------------------------------------------------------------------- /data/config/items/equipment/slayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/slayer.json -------------------------------------------------------------------------------- /data/config/items/equipment/spears.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/spears.json -------------------------------------------------------------------------------- /data/config/items/equipment/staffs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/staffs.json -------------------------------------------------------------------------------- /data/config/items/equipment/standard-metals/adamant-armour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/standard-metals/adamant-armour.json -------------------------------------------------------------------------------- /data/config/items/equipment/standard-metals/black-armour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/standard-metals/black-armour.json -------------------------------------------------------------------------------- /data/config/items/equipment/standard-metals/bronze-armour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/standard-metals/bronze-armour.json -------------------------------------------------------------------------------- /data/config/items/equipment/standard-metals/bronze-weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/standard-metals/bronze-weapons.json -------------------------------------------------------------------------------- /data/config/items/equipment/standard-metals/iron-armour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/standard-metals/iron-armour.json -------------------------------------------------------------------------------- /data/config/items/equipment/standard-metals/iron-weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/standard-metals/iron-weapons.json -------------------------------------------------------------------------------- /data/config/items/equipment/standard-metals/mithril-armour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/standard-metals/mithril-armour.json -------------------------------------------------------------------------------- /data/config/items/equipment/standard-metals/mithril-weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/standard-metals/mithril-weapons.json -------------------------------------------------------------------------------- /data/config/items/equipment/standard-metals/rune-armour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/standard-metals/rune-armour.json -------------------------------------------------------------------------------- /data/config/items/equipment/standard-metals/rune-god-armour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/standard-metals/rune-god-armour.json -------------------------------------------------------------------------------- /data/config/items/equipment/standard-metals/steel-armour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/standard-metals/steel-armour.json -------------------------------------------------------------------------------- /data/config/items/equipment/standard-metals/steel-weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/standard-metals/steel-weapons.json -------------------------------------------------------------------------------- /data/config/items/equipment/standard-metals/white-armour.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/standard-metals/white-armour.json -------------------------------------------------------------------------------- /data/config/items/equipment/tiaras.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/tiaras.json -------------------------------------------------------------------------------- /data/config/items/equipment/training.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/training.json -------------------------------------------------------------------------------- /data/config/items/equipment/whips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/equipment/whips.json -------------------------------------------------------------------------------- /data/config/items/food.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/food.json -------------------------------------------------------------------------------- /data/config/items/holiday/partyhats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/holiday/partyhats.json -------------------------------------------------------------------------------- /data/config/items/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/icons.json -------------------------------------------------------------------------------- /data/config/items/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/logs.json -------------------------------------------------------------------------------- /data/config/items/other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/other.json -------------------------------------------------------------------------------- /data/config/items/quests/lost-city.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/quests/lost-city.json -------------------------------------------------------------------------------- /data/config/items/quests/witchs-potion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/quests/witchs-potion.json -------------------------------------------------------------------------------- /data/config/items/skills/artisan-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/artisan-tools.json -------------------------------------------------------------------------------- /data/config/items/skills/baking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/baking.json -------------------------------------------------------------------------------- /data/config/items/skills/cooking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/cooking.json -------------------------------------------------------------------------------- /data/config/items/skills/crafting/gems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/crafting/gems.json -------------------------------------------------------------------------------- /data/config/items/skills/crafting/jewelery-moulds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/crafting/jewelery-moulds.json -------------------------------------------------------------------------------- /data/config/items/skills/firemaking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/firemaking.json -------------------------------------------------------------------------------- /data/config/items/skills/fishing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/fishing.json -------------------------------------------------------------------------------- /data/config/items/skills/fletching/arrows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/fletching/arrows.json -------------------------------------------------------------------------------- /data/config/items/skills/fletching/bolts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/fletching/bolts.json -------------------------------------------------------------------------------- /data/config/items/skills/herblore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/herblore.json -------------------------------------------------------------------------------- /data/config/items/skills/herblore/herbs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/herblore/herbs.json -------------------------------------------------------------------------------- /data/config/items/skills/herblore/ingredients.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/herblore/ingredients.json -------------------------------------------------------------------------------- /data/config/items/skills/herblore/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/herblore/tools.json -------------------------------------------------------------------------------- /data/config/items/skills/mining.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/mining.json -------------------------------------------------------------------------------- /data/config/items/skills/prayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/prayer.json -------------------------------------------------------------------------------- /data/config/items/skills/runecrafting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/items/skills/runecrafting.json -------------------------------------------------------------------------------- /data/config/music/musicRegions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/music/musicRegions.json -------------------------------------------------------------------------------- /data/config/npc-spawns/alkharid/alkharid-general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/alkharid/alkharid-general.json -------------------------------------------------------------------------------- /data/config/npc-spawns/ardougne/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/ardougne/bankers.json -------------------------------------------------------------------------------- /data/config/npc-spawns/ardougne/guards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/ardougne/guards.json -------------------------------------------------------------------------------- /data/config/npc-spawns/ardougne/market.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/ardougne/market.json -------------------------------------------------------------------------------- /data/config/npc-spawns/camelot/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/camelot/bankers.json -------------------------------------------------------------------------------- /data/config/npc-spawns/canifis/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/canifis/bankers.json -------------------------------------------------------------------------------- /data/config/npc-spawns/catherby/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/catherby/bankers.json -------------------------------------------------------------------------------- /data/config/npc-spawns/draynor/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/draynor/bankers.json -------------------------------------------------------------------------------- /data/config/npc-spawns/edgeville/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/edgeville/bankers.json -------------------------------------------------------------------------------- /data/config/npc-spawns/falador/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/falador/bankers.json -------------------------------------------------------------------------------- /data/config/npc-spawns/falador/guards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/falador/guards.json -------------------------------------------------------------------------------- /data/config/npc-spawns/keldagrim/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/keldagrim/bankers.json -------------------------------------------------------------------------------- /data/config/npc-spawns/lumbridge/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/lumbridge/bankers.json -------------------------------------------------------------------------------- /data/config/npc-spawns/lumbridge/lumbridge-general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/lumbridge/lumbridge-general.json -------------------------------------------------------------------------------- /data/config/npc-spawns/lumbridge/lumbridge-goblins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/lumbridge/lumbridge-goblins.json -------------------------------------------------------------------------------- /data/config/npc-spawns/lumbridge/lumbridge-sheep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/lumbridge/lumbridge-sheep.json -------------------------------------------------------------------------------- /data/config/npc-spawns/magebank/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/magebank/bankers.json -------------------------------------------------------------------------------- /data/config/npc-spawns/nardah/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/nardah/bankers.json -------------------------------------------------------------------------------- /data/config/npc-spawns/pestcontrol/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/pestcontrol/bankers.json -------------------------------------------------------------------------------- /data/config/npc-spawns/portsarim/port-sarim-general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/portsarim/port-sarim-general.json -------------------------------------------------------------------------------- /data/config/npc-spawns/rimmington/rimmington.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/rimmington/rimmington.json -------------------------------------------------------------------------------- /data/config/npc-spawns/shilovillage/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/shilovillage/bankers.json -------------------------------------------------------------------------------- /data/config/npc-spawns/varrock/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/varrock/bankers.json -------------------------------------------------------------------------------- /data/config/npc-spawns/varrock/blue-moon-inn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/varrock/blue-moon-inn.json -------------------------------------------------------------------------------- /data/config/npc-spawns/varrock/varrock-general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/varrock/varrock-general.json -------------------------------------------------------------------------------- /data/config/npc-spawns/yanille/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npc-spawns/yanille/bankers.json -------------------------------------------------------------------------------- /data/config/npcs/alkharid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npcs/alkharid.json -------------------------------------------------------------------------------- /data/config/npcs/ardougne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npcs/ardougne.json -------------------------------------------------------------------------------- /data/config/npcs/bankers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npcs/bankers.json -------------------------------------------------------------------------------- /data/config/npcs/barbarians.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npcs/barbarians.json -------------------------------------------------------------------------------- /data/config/npcs/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npcs/general.json -------------------------------------------------------------------------------- /data/config/npcs/generic-humans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npcs/generic-humans.json -------------------------------------------------------------------------------- /data/config/npcs/goblins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npcs/goblins.json -------------------------------------------------------------------------------- /data/config/npcs/guards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npcs/guards.json -------------------------------------------------------------------------------- /data/config/npcs/lumbridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npcs/lumbridge.json -------------------------------------------------------------------------------- /data/config/npcs/port-sarim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npcs/port-sarim.json -------------------------------------------------------------------------------- /data/config/npcs/rimmington.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npcs/rimmington.json -------------------------------------------------------------------------------- /data/config/npcs/sheep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npcs/sheep.json -------------------------------------------------------------------------------- /data/config/npcs/varrock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/npcs/varrock.json -------------------------------------------------------------------------------- /data/config/scenery-spawns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/scenery-spawns.yaml -------------------------------------------------------------------------------- /data/config/shops/alkharid/alkharid-gem-trader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/shops/alkharid/alkharid-gem-trader.json -------------------------------------------------------------------------------- /data/config/shops/alkharid/dommiks-crafting-store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/shops/alkharid/dommiks-crafting-store.json -------------------------------------------------------------------------------- /data/config/shops/alkharid/louies-armored-legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/shops/alkharid/louies-armored-legs.json -------------------------------------------------------------------------------- /data/config/shops/alkharid/ranaels-skirt-store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/shops/alkharid/ranaels-skirt-store.json -------------------------------------------------------------------------------- /data/config/shops/lumbridge/bobs-axes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/shops/lumbridge/bobs-axes.json -------------------------------------------------------------------------------- /data/config/shops/lumbridge/lumbridge-general-store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/shops/lumbridge/lumbridge-general-store.json -------------------------------------------------------------------------------- /data/config/shops/portsarim/bettys-magic-emporium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/shops/portsarim/bettys-magic-emporium.json -------------------------------------------------------------------------------- /data/config/shops/shilo-village/oblis-general-store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/shops/shilo-village/oblis-general-store.json -------------------------------------------------------------------------------- /data/config/shops/varrock/zaffs-staffs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/shops/varrock/zaffs-staffs.json -------------------------------------------------------------------------------- /data/config/travel-locations-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/travel-locations-data.yaml -------------------------------------------------------------------------------- /data/config/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/widgets.json -------------------------------------------------------------------------------- /data/config/xteas/435.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/xteas/435.json -------------------------------------------------------------------------------- /data/config/xteas/468.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/data/config/xteas/468.json -------------------------------------------------------------------------------- /data/saves/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/jest.config.ts -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/package.json -------------------------------------------------------------------------------- /src/engine/action/action-pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/action-pipeline.ts -------------------------------------------------------------------------------- /src/engine/action/hook/action-hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/hook/action-hook.ts -------------------------------------------------------------------------------- /src/engine/action/hook/hook-filters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/hook/hook-filters.test.ts -------------------------------------------------------------------------------- /src/engine/action/hook/hook-filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/hook/hook-filters.ts -------------------------------------------------------------------------------- /src/engine/action/hook/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/hook/task.ts -------------------------------------------------------------------------------- /src/engine/action/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/loader.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/button.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/button.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/equipment-change.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/equipment-change.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/item-interaction.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/item-interaction.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/item-on-item.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/item-on-item.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/item-on-npc.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/item-on-npc.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/item-on-object.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/item-on-object.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/item-on-player.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/item-on-player.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/item-on-world-item.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/item-on-world-item.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/item-swap.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/item-swap.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/magic-on-npc.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/magic-on-npc.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/move-item.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/move-item.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/npc-init.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/npc-init.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/npc-interaction.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/npc-interaction.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/object-interaction.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/object-interaction.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/player-command.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/player-command.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/player-init.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/player-init.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/player-interaction.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/player-interaction.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/prayer.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/prayer.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/region-change.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/region-change.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/spawned-item-interaction.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/spawned-item-interaction.action.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/task/queueable-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/task/queueable-task.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/task/walk-to-actor-plugin-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/task/walk-to-actor-plugin-task.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/task/walk-to-item-plugin-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/task/walk-to-item-plugin-task.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/task/walk-to-object-plugin-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/task/walk-to-object-plugin-task.ts -------------------------------------------------------------------------------- /src/engine/action/pipe/widget-interaction.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/action/pipe/widget-interaction.action.ts -------------------------------------------------------------------------------- /src/engine/config/config-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/config/config-handler.ts -------------------------------------------------------------------------------- /src/engine/config/data-dump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/config/data-dump.ts -------------------------------------------------------------------------------- /src/engine/config/directories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/config/directories.ts -------------------------------------------------------------------------------- /src/engine/config/item-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/config/item-config.ts -------------------------------------------------------------------------------- /src/engine/config/item-spawn-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/config/item-spawn-config.ts -------------------------------------------------------------------------------- /src/engine/config/music-regions-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/config/music-regions-config.ts -------------------------------------------------------------------------------- /src/engine/config/npc-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/config/npc-config.ts -------------------------------------------------------------------------------- /src/engine/config/npc-spawn-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/config/npc-spawn-config.ts -------------------------------------------------------------------------------- /src/engine/config/quest-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/config/quest-config.ts -------------------------------------------------------------------------------- /src/engine/config/shop-config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/config/shop-config.test.ts -------------------------------------------------------------------------------- /src/engine/config/shop-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/config/shop-config.ts -------------------------------------------------------------------------------- /src/engine/interface/interface-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/interface/interface-state.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packet-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packet-handler.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/add-friend.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/add-friend.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/add-ignore.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/add-ignore.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/blinking-tab-click.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/blinking-tab-click.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/button-click.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/button-click.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/character-design.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/character-design.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/chat.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/chat.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/command.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/command.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/drop-item.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/drop-item.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/examine.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/examine.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/item-interaction.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/item-interaction.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/item-on-item.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/item-on-item.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/item-on-npc.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/item-on-npc.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/item-on-object.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/item-on-object.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/item-on-player.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/item-on-player.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/item-on-world-item.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/item-on-world-item.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/item-swap.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/item-swap.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/junk.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/junk.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/magic-attack.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/magic-attack.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/npc-interaction.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/npc-interaction.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/number-input.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/number-input.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/object-interaction.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/object-interaction.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/pickup-item.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/pickup-item.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/player-interaction.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/player-interaction.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/private-message.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/private-message.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/remove-friend.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/remove-friend.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/remove-ignore.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/remove-ignore.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/social-button.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/social-button.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/walk.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/walk.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/widget-interaction.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/widget-interaction.packet.ts -------------------------------------------------------------------------------- /src/engine/net/inbound-packets/widgets-closed.packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/inbound-packets/widgets-closed.packet.ts -------------------------------------------------------------------------------- /src/engine/net/isaac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/isaac.ts -------------------------------------------------------------------------------- /src/engine/net/outbound-packet-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/outbound-packet-handler.ts -------------------------------------------------------------------------------- /src/engine/net/packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/net/packet.ts -------------------------------------------------------------------------------- /src/engine/plugins/content-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/plugins/content-plugin.ts -------------------------------------------------------------------------------- /src/engine/plugins/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/plugins/loader.ts -------------------------------------------------------------------------------- /src/engine/plugins/reload-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/plugins/reload-content.ts -------------------------------------------------------------------------------- /src/engine/task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/task/README.md -------------------------------------------------------------------------------- /src/engine/task/impl/actor-actor-interaction-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/task/impl/actor-actor-interaction-task.ts -------------------------------------------------------------------------------- /src/engine/task/impl/actor-landscape-object-interaction-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/task/impl/actor-landscape-object-interaction-task.ts -------------------------------------------------------------------------------- /src/engine/task/impl/actor-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/task/impl/actor-task.ts -------------------------------------------------------------------------------- /src/engine/task/impl/actor-teleport-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/task/impl/actor-teleport-task.ts -------------------------------------------------------------------------------- /src/engine/task/impl/actor-walk-to-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/task/impl/actor-walk-to-task.ts -------------------------------------------------------------------------------- /src/engine/task/impl/actor-world-item-interaction-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/task/impl/actor-world-item-interaction-task.ts -------------------------------------------------------------------------------- /src/engine/task/task-scheduler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/task/task-scheduler.test.ts -------------------------------------------------------------------------------- /src/engine/task/task-scheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/task/task-scheduler.ts -------------------------------------------------------------------------------- /src/engine/task/task.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/task/task.test.ts -------------------------------------------------------------------------------- /src/engine/task/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/task/task.ts -------------------------------------------------------------------------------- /src/engine/task/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/task/types.ts -------------------------------------------------------------------------------- /src/engine/task/utils/_testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/task/utils/_testing.ts -------------------------------------------------------------------------------- /src/engine/util/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/util/address.ts -------------------------------------------------------------------------------- /src/engine/util/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/util/colors.ts -------------------------------------------------------------------------------- /src/engine/util/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/util/data.ts -------------------------------------------------------------------------------- /src/engine/util/error-handling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/util/error-handling.ts -------------------------------------------------------------------------------- /src/engine/util/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/util/files.ts -------------------------------------------------------------------------------- /src/engine/util/num.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/util/num.ts -------------------------------------------------------------------------------- /src/engine/util/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/util/objects.ts -------------------------------------------------------------------------------- /src/engine/util/queue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/util/queue.test.ts -------------------------------------------------------------------------------- /src/engine/util/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/util/queue.ts -------------------------------------------------------------------------------- /src/engine/util/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/util/strings.ts -------------------------------------------------------------------------------- /src/engine/util/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/util/time.ts -------------------------------------------------------------------------------- /src/engine/util/varbits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/util/varbits.ts -------------------------------------------------------------------------------- /src/engine/world/actor/actor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/actor.ts -------------------------------------------------------------------------------- /src/engine/world/actor/combat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/combat.ts -------------------------------------------------------------------------------- /src/engine/world/actor/dialogue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/dialogue.ts -------------------------------------------------------------------------------- /src/engine/world/actor/magic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/magic.ts -------------------------------------------------------------------------------- /src/engine/world/actor/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/metadata.ts -------------------------------------------------------------------------------- /src/engine/world/actor/npc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/npc.ts -------------------------------------------------------------------------------- /src/engine/world/actor/pathfinding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/pathfinding.ts -------------------------------------------------------------------------------- /src/engine/world/actor/player/achievements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/player/achievements.ts -------------------------------------------------------------------------------- /src/engine/world/actor/player/attack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/player/attack.ts -------------------------------------------------------------------------------- /src/engine/world/actor/player/cutscenes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/player/cutscenes.ts -------------------------------------------------------------------------------- /src/engine/world/actor/player/dialogue-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/player/dialogue-action.ts -------------------------------------------------------------------------------- /src/engine/world/actor/player/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/player/metadata.ts -------------------------------------------------------------------------------- /src/engine/world/actor/player/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/player/model.ts -------------------------------------------------------------------------------- /src/engine/world/actor/player/player-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/player/player-data.ts -------------------------------------------------------------------------------- /src/engine/world/actor/player/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/player/player.ts -------------------------------------------------------------------------------- /src/engine/world/actor/player/private-messaging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/player/private-messaging.ts -------------------------------------------------------------------------------- /src/engine/world/actor/player/quest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/player/quest.ts -------------------------------------------------------------------------------- /src/engine/world/actor/player/sync/actor-sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/player/sync/actor-sync.ts -------------------------------------------------------------------------------- /src/engine/world/actor/player/sync/npc-sync-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/player/sync/npc-sync-task.ts -------------------------------------------------------------------------------- /src/engine/world/actor/player/sync/player-sync-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/player/sync/player-sync-task.ts -------------------------------------------------------------------------------- /src/engine/world/actor/prayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/prayer.ts -------------------------------------------------------------------------------- /src/engine/world/actor/skills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/skills.ts -------------------------------------------------------------------------------- /src/engine/world/actor/update-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/update-flags.ts -------------------------------------------------------------------------------- /src/engine/world/actor/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/util.ts -------------------------------------------------------------------------------- /src/engine/world/actor/walking-queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/actor/walking-queue.ts -------------------------------------------------------------------------------- /src/engine/world/config/animation-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/config/animation-ids.ts -------------------------------------------------------------------------------- /src/engine/world/config/examine-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/config/examine-data.ts -------------------------------------------------------------------------------- /src/engine/world/config/gfx-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/config/gfx-ids.ts -------------------------------------------------------------------------------- /src/engine/world/config/harvest-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/config/harvest-tool.ts -------------------------------------------------------------------------------- /src/engine/world/config/harvestable-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/config/harvestable-object.ts -------------------------------------------------------------------------------- /src/engine/world/config/item-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/config/item-ids.ts -------------------------------------------------------------------------------- /src/engine/world/config/object-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/config/object-ids.ts -------------------------------------------------------------------------------- /src/engine/world/config/scenery-spawns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/config/scenery-spawns.ts -------------------------------------------------------------------------------- /src/engine/world/config/songs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/config/songs.ts -------------------------------------------------------------------------------- /src/engine/world/config/sound-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/config/sound-ids.ts -------------------------------------------------------------------------------- /src/engine/world/config/travel-locations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/config/travel-locations.ts -------------------------------------------------------------------------------- /src/engine/world/config/widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/config/widget.ts -------------------------------------------------------------------------------- /src/engine/world/direction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/direction.ts -------------------------------------------------------------------------------- /src/engine/world/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/index.ts -------------------------------------------------------------------------------- /src/engine/world/instances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/instances.ts -------------------------------------------------------------------------------- /src/engine/world/items/item-container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/items/item-container.ts -------------------------------------------------------------------------------- /src/engine/world/items/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/items/item.ts -------------------------------------------------------------------------------- /src/engine/world/items/world-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/items/world-item.ts -------------------------------------------------------------------------------- /src/engine/world/map/chunk-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/map/chunk-manager.ts -------------------------------------------------------------------------------- /src/engine/world/map/chunk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/map/chunk.ts -------------------------------------------------------------------------------- /src/engine/world/map/collision-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/map/collision-map.ts -------------------------------------------------------------------------------- /src/engine/world/map/landscape-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/map/landscape-object.ts -------------------------------------------------------------------------------- /src/engine/world/map/region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/map/region.ts -------------------------------------------------------------------------------- /src/engine/world/position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/position.ts -------------------------------------------------------------------------------- /src/engine/world/skill-util/glory-boost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/skill-util/glory-boost.ts -------------------------------------------------------------------------------- /src/engine/world/skill-util/harvest-roll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/skill-util/harvest-roll.ts -------------------------------------------------------------------------------- /src/engine/world/skill-util/harvest-skill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/skill-util/harvest-skill.ts -------------------------------------------------------------------------------- /src/engine/world/sound/music.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/sound/music.ts -------------------------------------------------------------------------------- /src/engine/world/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/task.ts -------------------------------------------------------------------------------- /src/engine/world/world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/engine/world/world.ts -------------------------------------------------------------------------------- /src/plugins/buttons/logout-button.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/buttons/logout-button.plugin.ts -------------------------------------------------------------------------------- /src/plugins/buttons/magic-attack.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/buttons/magic-attack.plugin.ts -------------------------------------------------------------------------------- /src/plugins/buttons/magic-teleports.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/buttons/magic-teleports.plugin.ts -------------------------------------------------------------------------------- /src/plugins/buttons/player-emotes.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/buttons/player-emotes.plugin.ts -------------------------------------------------------------------------------- /src/plugins/buttons/player-setting-button.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/buttons/player-setting-button.plugin.ts -------------------------------------------------------------------------------- /src/plugins/combat/combat-styles.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/combat/combat-styles.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/bank-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/bank-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/camera-commands.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/camera-commands.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/clear-inventory-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/clear-inventory-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/client-config-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/client-config-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/current-position-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/current-position-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/data-dump-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/data-dump-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/dump-metadata-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/dump-metadata-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/give-item-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/give-item-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/groups-debug.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/groups-debug.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/pathing-commands.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/pathing-commands.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/player-animation-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/player-animation-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/player-graphics-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/player-graphics-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/quest-list-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/quest-list-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/region-debug-commands.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/region-debug-commands.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/reset-camera-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/reset-camera-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/sound-song-commands.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/sound-song-commands.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/spawn-npc-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/spawn-npc-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/spawn-scenery-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/spawn-scenery-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/spawn-test-players-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/spawn-test-players-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/stat-commands.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/stat-commands.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/teleport-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/teleport-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/transform-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/transform-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/travel-back-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/travel-back-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/travel-command.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/travel-command.plugin.ts -------------------------------------------------------------------------------- /src/plugins/commands/widget-commands.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/commands/widget-commands.plugin.ts -------------------------------------------------------------------------------- /src/plugins/dialogue/dialogue-option.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/dialogue/dialogue-option.plugin.ts -------------------------------------------------------------------------------- /src/plugins/dialogue/item-selection.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/dialogue/item-selection.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/buckets/empty-container.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/buckets/empty-container.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/buckets/fill-container.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/buckets/fill-container.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/capes/skillcape-emotes.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/capes/skillcape-emotes.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/consumables/eating.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/consumables/eating.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/drop-item.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/drop-item.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/equipment/equip-item.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/equipment/equip-item.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/equipment/equipment-stats.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/equipment/equipment-stats.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/equipment/unequip-item.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/equipment/unequip-item.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/herblore/clean-herb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/herblore/clean-herb.ts -------------------------------------------------------------------------------- /src/plugins/items/move-item.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/move-item.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/pickup-item.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/pickup-item.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/pots/empty-pot.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/pots/empty-pot.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/rotten-potato/helpers/rotten-potato-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/rotten-potato/helpers/rotten-potato-helpers.ts -------------------------------------------------------------------------------- /src/plugins/items/rotten-potato/helpers/rotten-potato-travel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/rotten-potato/helpers/rotten-potato-travel.ts -------------------------------------------------------------------------------- /src/plugins/items/rotten-potato/hooks/rotten-potato-command-hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/rotten-potato/hooks/rotten-potato-command-hook.ts -------------------------------------------------------------------------------- /src/plugins/items/rotten-potato/hooks/rotten-potato-eat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/rotten-potato/hooks/rotten-potato-eat.ts -------------------------------------------------------------------------------- /src/plugins/items/rotten-potato/hooks/rotten-potato-item-on-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/rotten-potato/hooks/rotten-potato-item-on-item.ts -------------------------------------------------------------------------------- /src/plugins/items/rotten-potato/hooks/rotten-potato-item-on-player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/rotten-potato/hooks/rotten-potato-item-on-player.ts -------------------------------------------------------------------------------- /src/plugins/items/rotten-potato/hooks/rotten-potato-peel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/rotten-potato/hooks/rotten-potato-peel.ts -------------------------------------------------------------------------------- /src/plugins/items/rotten-potato/rotten-potato.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/rotten-potato/rotten-potato.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/runecrafting/tiaras.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/runecrafting/tiaras.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/shopping/buy-from-shop.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/shopping/buy-from-shop.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/shopping/item-value.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/shopping/item-value.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/shopping/sell-to-shop.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/shopping/sell-to-shop.plugin.ts -------------------------------------------------------------------------------- /src/plugins/items/swap-items.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/items/swap-items.plugin.ts -------------------------------------------------------------------------------- /src/plugins/music/music-regions.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/music/music-regions.plugin.ts -------------------------------------------------------------------------------- /src/plugins/music/music-tab.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/music/music-tab.plugin.ts -------------------------------------------------------------------------------- /src/plugins/npcs/al-kharid/dommik-crafting-shop.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/npcs/al-kharid/dommik-crafting-shop.plugin.ts -------------------------------------------------------------------------------- /src/plugins/npcs/al-kharid/gem-trader.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/npcs/al-kharid/gem-trader.plugin.ts -------------------------------------------------------------------------------- /src/plugins/npcs/al-kharid/karim.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/npcs/al-kharid/karim.plugin.ts -------------------------------------------------------------------------------- /src/plugins/npcs/al-kharid/louie-armoured-legs.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/npcs/al-kharid/louie-armoured-legs.plugin.ts -------------------------------------------------------------------------------- /src/plugins/npcs/al-kharid/ranael-super-skirt.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/npcs/al-kharid/ranael-super-skirt.plugin.ts -------------------------------------------------------------------------------- /src/plugins/npcs/falador/custom-guards.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/npcs/falador/custom-guards.plugin.ts -------------------------------------------------------------------------------- /src/plugins/npcs/lumbridge/bob.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/npcs/lumbridge/bob.plugin.ts -------------------------------------------------------------------------------- /src/plugins/npcs/lumbridge/hans.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/npcs/lumbridge/hans.plugin.ts -------------------------------------------------------------------------------- /src/plugins/npcs/lumbridge/lumbridge-farm-helpers.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/npcs/lumbridge/lumbridge-farm-helpers.plugin.ts -------------------------------------------------------------------------------- /src/plugins/npcs/lumbridge/shopkeeper.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/npcs/lumbridge/shopkeeper.plugin.ts -------------------------------------------------------------------------------- /src/plugins/npcs/port-sarim/betty.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/npcs/port-sarim/betty.plugin.ts -------------------------------------------------------------------------------- /src/plugins/npcs/varrock/blue-moon-inn.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/npcs/varrock/blue-moon-inn.plugin.ts -------------------------------------------------------------------------------- /src/plugins/npcs/varrock/master-smithing-tutor.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/npcs/varrock/master-smithing-tutor.plugin.ts -------------------------------------------------------------------------------- /src/plugins/npcs/varrock/wilough.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/npcs/varrock/wilough.plugin.ts -------------------------------------------------------------------------------- /src/plugins/npcs/varrock/zaff-superior-staffs.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/npcs/varrock/zaff-superior-staffs.plugin.ts -------------------------------------------------------------------------------- /src/plugins/objects/bank/bank.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/objects/bank/bank.plugin.ts -------------------------------------------------------------------------------- /src/plugins/objects/bank/deposit-box.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/objects/bank/deposit-box.plugin.ts -------------------------------------------------------------------------------- /src/plugins/objects/cows/cow.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/objects/cows/cow.plugin.ts -------------------------------------------------------------------------------- /src/plugins/objects/crates/crates.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/objects/crates/crates.plugin.ts -------------------------------------------------------------------------------- /src/plugins/objects/doors/door.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/objects/doors/door.plugin.ts -------------------------------------------------------------------------------- /src/plugins/objects/doors/double-door.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/objects/doors/double-door.plugin.ts -------------------------------------------------------------------------------- /src/plugins/objects/doors/gate.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/objects/doors/gate.plugin.ts -------------------------------------------------------------------------------- /src/plugins/objects/dungeon-entrances/taverly-dungeon-ladder.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/objects/dungeon-entrances/taverly-dungeon-ladder.plugin.ts -------------------------------------------------------------------------------- /src/plugins/objects/item-spawns/take-axe.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/objects/item-spawns/take-axe.plugin.ts -------------------------------------------------------------------------------- /src/plugins/objects/ladders/ladder.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/objects/ladders/ladder.plugin.ts -------------------------------------------------------------------------------- /src/plugins/objects/mill/flour-bin.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/objects/mill/flour-bin.plugin.ts -------------------------------------------------------------------------------- /src/plugins/objects/mill/hopper-controls.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/objects/mill/hopper-controls.plugin.ts -------------------------------------------------------------------------------- /src/plugins/objects/mill/hopper.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/objects/mill/hopper.plugin.ts -------------------------------------------------------------------------------- /src/plugins/objects/pickables/pickables.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/objects/pickables/pickables.plugin.ts -------------------------------------------------------------------------------- /src/plugins/player/follow-player.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/player/follow-player.plugin.js -------------------------------------------------------------------------------- /src/plugins/player/login-unlock-emotes.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/player/login-unlock-emotes.plugin.ts -------------------------------------------------------------------------------- /src/plugins/player/login-update-settings.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/player/login-update-settings.plugin.ts -------------------------------------------------------------------------------- /src/plugins/player/update-friends-list.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/player/update-friends-list.plugin.ts -------------------------------------------------------------------------------- /src/plugins/quests/cooks-assistant-quest.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/quests/cooks-assistant-quest.plugin.ts -------------------------------------------------------------------------------- /src/plugins/quests/goblin-diplomacy-tutorial/goblin-diplomacy-quest.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/quests/goblin-diplomacy-tutorial/goblin-diplomacy-quest.plugin.ts -------------------------------------------------------------------------------- /src/plugins/quests/goblin-diplomacy-tutorial/melee-tutor-dialogue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/quests/goblin-diplomacy-tutorial/melee-tutor-dialogue.ts -------------------------------------------------------------------------------- /src/plugins/quests/goblin-diplomacy-tutorial/runescape-guide-dialogue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/quests/goblin-diplomacy-tutorial/runescape-guide-dialogue.ts -------------------------------------------------------------------------------- /src/plugins/quests/goblin-diplomacy-tutorial/stage-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/quests/goblin-diplomacy-tutorial/stage-handler.ts -------------------------------------------------------------------------------- /src/plugins/quests/quest-journal.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/quests/quest-journal.plugin.ts -------------------------------------------------------------------------------- /src/plugins/quests/witchs-potion-quest.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/quests/witchs-potion-quest.plugin.ts -------------------------------------------------------------------------------- /src/plugins/skills/construction/con-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/construction/con-constants.ts -------------------------------------------------------------------------------- /src/plugins/skills/construction/home-saver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/construction/home-saver.ts -------------------------------------------------------------------------------- /src/plugins/skills/construction/house.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/construction/house.ts -------------------------------------------------------------------------------- /src/plugins/skills/construction/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/construction/index.ts -------------------------------------------------------------------------------- /src/plugins/skills/construction/room-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/construction/room-builder.ts -------------------------------------------------------------------------------- /src/plugins/skills/construction/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/construction/util.ts -------------------------------------------------------------------------------- /src/plugins/skills/crafting/sheep-plugin.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/crafting/sheep-plugin.plugin.ts -------------------------------------------------------------------------------- /src/plugins/skills/crafting/spinning-wheel.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/crafting/spinning-wheel.plugin.ts -------------------------------------------------------------------------------- /src/plugins/skills/firemaking/chance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/firemaking/chance.ts -------------------------------------------------------------------------------- /src/plugins/skills/firemaking/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/firemaking/data.ts -------------------------------------------------------------------------------- /src/plugins/skills/firemaking/firemaking-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/firemaking/firemaking-task.ts -------------------------------------------------------------------------------- /src/plugins/skills/firemaking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/firemaking/index.ts -------------------------------------------------------------------------------- /src/plugins/skills/firemaking/light-fire.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/firemaking/light-fire.ts -------------------------------------------------------------------------------- /src/plugins/skills/firemaking/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/firemaking/types.ts -------------------------------------------------------------------------------- /src/plugins/skills/fletching/fletching-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/fletching/fletching-constants.ts -------------------------------------------------------------------------------- /src/plugins/skills/fletching/fletching-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/fletching/fletching-types.ts -------------------------------------------------------------------------------- /src/plugins/skills/fletching/fletching.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/fletching/fletching.plugin.ts -------------------------------------------------------------------------------- /src/plugins/skills/level-up-dialogue.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/level-up-dialogue.plugin.ts -------------------------------------------------------------------------------- /src/plugins/skills/mining/chance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/mining/chance.ts -------------------------------------------------------------------------------- /src/plugins/skills/mining/mining-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/mining/mining-task.ts -------------------------------------------------------------------------------- /src/plugins/skills/mining/mining.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/mining/mining.plugin.ts -------------------------------------------------------------------------------- /src/plugins/skills/mining/prospecting.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/mining/prospecting.plugin.ts -------------------------------------------------------------------------------- /src/plugins/skills/prayer/bury-bones.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/prayer/bury-bones.plugin.ts -------------------------------------------------------------------------------- /src/plugins/skills/runecrafting/runecrafting-altar.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/runecrafting/runecrafting-altar.plugin.ts -------------------------------------------------------------------------------- /src/plugins/skills/runecrafting/runecrafting-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/runecrafting/runecrafting-constants.ts -------------------------------------------------------------------------------- /src/plugins/skills/runecrafting/runecrafting-crafting.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/runecrafting/runecrafting-crafting.plugin.ts -------------------------------------------------------------------------------- /src/plugins/skills/runecrafting/runecrafting-tiara.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/runecrafting/runecrafting-tiara.plugin.ts -------------------------------------------------------------------------------- /src/plugins/skills/runecrafting/runecrafting-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/runecrafting/runecrafting-types.ts -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/Strength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/Strength.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/agility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/agility.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/attack.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/construction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/construction.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/cooking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/cooking.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/crafting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/crafting.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/defence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/defence.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/farming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/farming.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/firemaking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/firemaking.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/fishing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/fishing.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/fletching.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/fletching.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/herblore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/herblore.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/hitpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/hitpoint.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/magic.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/mining.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/mining.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/prayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/prayer.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/ranged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/ranged.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/runecrafting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/runecrafting.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/skill-guide-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/skill-guide-config.ts -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/skill-guides.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/skill-guides.plugin.ts -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/slayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/slayer.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/smithing.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/thieving.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/thieving.json -------------------------------------------------------------------------------- /src/plugins/skills/skill-guides/woodcutting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/skill-guides/woodcutting.json -------------------------------------------------------------------------------- /src/plugins/skills/smithing/forging-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/smithing/forging-constants.ts -------------------------------------------------------------------------------- /src/plugins/skills/smithing/forging-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/smithing/forging-task.ts -------------------------------------------------------------------------------- /src/plugins/skills/smithing/forging-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/smithing/forging-types.ts -------------------------------------------------------------------------------- /src/plugins/skills/smithing/forging.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/smithing/forging.plugin.ts -------------------------------------------------------------------------------- /src/plugins/skills/smithing/smelting-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/smithing/smelting-constants.ts -------------------------------------------------------------------------------- /src/plugins/skills/smithing/smelting-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/smithing/smelting-task.ts -------------------------------------------------------------------------------- /src/plugins/skills/smithing/smelting-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/smithing/smelting-types.ts -------------------------------------------------------------------------------- /src/plugins/skills/smithing/smelting.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/smithing/smelting.plugin.ts -------------------------------------------------------------------------------- /src/plugins/skills/woodcutting/chance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/woodcutting/chance.ts -------------------------------------------------------------------------------- /src/plugins/skills/woodcutting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/woodcutting/index.ts -------------------------------------------------------------------------------- /src/plugins/skills/woodcutting/woodcutting-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/plugins/skills/woodcutting/woodcutting-task.ts -------------------------------------------------------------------------------- /src/server/game/game-server-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/server/game/game-server-config.ts -------------------------------------------------------------------------------- /src/server/game/game-server-connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/server/game/game-server-connection.ts -------------------------------------------------------------------------------- /src/server/game/game-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/server/game/game-server.ts -------------------------------------------------------------------------------- /src/server/gateway/gateway-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/server/gateway/gateway-server.ts -------------------------------------------------------------------------------- /src/server/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/src/server/runner.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runejs/server/HEAD/tsconfig.json --------------------------------------------------------------------------------