Actions

Known File Info: Difference between revisions

From RuneWiki

Line 281: Line 281:
</pre>
</pre>


===Folders===
===Structure===
Game features are broken up into folders (organization arbitrarily chosen by the dev working on it).
 
Configs and scripts are loaded recursively from every folder inside src/scripts.
 
Models and animations are exposed to configs by their filename minus extension inside src/models.
 
The "packing order" (client-facing IDs) are sequentially incremented any time a new file/config is detected. Occasionally, this packing order is reset. For example, NPCs may not be in the same order from one revision to another. It just forces the client to redownload those cache archives.
 
Configs are structured pretty similarly to ini (not a true parser):<syntaxhighlight lang="ini">
// would be in something like example.npc
 
[example_npc]
name=Example NPC
desc=Showing off a NPC config!
model1=man_head_bald
model2=man_jaw_moustache
 
// would be in something like example.obj
 
[example_obj]
name=Example Object
desc=Now showing off an Obj config!
model=inv_example_object
2dzoom=780
2dxof=-3
2dyof=-3
2dxan=432
2dyan=104
members=yes
 
// would be in something like example.loc
 
[example_loc]
name=Example Location
desc=Now showing off a Loc config!
model1=example_door_straight,^WALL_STRAIGHT
model2=example_door_diagonalc,^WALL_DIAGONALCORNER
model3=example_door_l,^WALL_L
model4=example_door_squarec,^WALL_SQUARECORNER
model5=example_door_diagonal,^WALL_DIAGONAL
active=yes
recol1s=2
recol1d=0
recol2s=24
recol2d=4762
op1=Open
</syntaxhighlight>
 
=== Folders ===
<pre>
<pre>
pack/
pack/

Revision as of 17:10, 3 May 2023

This page was put together using publicly available information sourced from old OSRS livestreams and search engine results.

src/models/ is used for skeletons, animations, and models.

src/scripts/ is used for configs, interfaces, and runescripts.

Licensed Tools

Photoshop

3ds Max

ZBrush

Internal Tools

ScriptEd

MapEd

IconEd

JagEd

Web Services

account-creation
account-creation-reports
account-association
accountappeal
adventurers-log
adventurers-log-updater
auth-reports
authentication-server
avatar-rs
beta-clanserver
beta-gamelogclienterror
beta-save-converter
beta-stockmarket
beta-usergame
billing-antifraud
billing-blackhawk
billing-boku
billing-bonds
billing-incomm
billing-paypal
billing-scstaff
billing-supersonic
billing-voucher
billing_amazonddd
billing_axeso
billing_ayden
billing_contact
billing_core
billing_derived
billing_iris_bridge
billing_jcoins
billing_membership
billing_realtime
billing_uol
billproxy
bugtracker-pw
caseload
clan-forum
clan-hiscores
clan-home
clan-reports
clanloginserver
clanloginserver_oldscape
clanserver
clanserver_oldscape
comment
commercial-crm
config-manager
configviewer
crscore
displaynames
dob
dodgymark
email-register
email-send
feature-signup
forum
forum_de
forum_fr
forum_pt
forum-escalations
friend-referral
friendloader
friendserver
fulfilment_gateway
gamelogclienterror
gamelogevent
gamelogeventflume
gamelogsession
gamelogsession_sa
gamelogspecs
gamelogtrade
gamelogtrade_oldschool
gamenote
global-variables-rt5
grouping-system
hijackscore_sa
hiscore
hiscore_ironman
hiscore_hardcore_ironman
hiscore_oldschool
hiscore_oldschool_ironman
hiscore_oldschool_hardmore_ironman
hiscore_oldschool_ultimate
hiscore_oldschool_deadman
hiscore_oldschool_seasonal
hiscore_oldschool_tournament
icuq
identity_service
instance-manager
iplog
iplogip
iploguid
iploguser
iplogusergame
iplogweblogin
item-grant
itemcodes
itemdb_oldschool
itemdb_rs
launcher-v4-bridge
lock
loginserver
loyalty-points
main
metric-collection
mtxn_config
mtxn_rs_shop
mtxn_sync_shop
namecache
news
offence-appeal
offence-derived-effects
offence-mute-receiver
offence-receiver
offence-viewer
oldschool_gim_hiscores
oldschool_hardcore_gim_hiscores
password_history
platform
player-categorisation
playerwatch
pmod
poll
profile-editor
prp
pvpkills
recovery_questions
rs2-broadcast
sn-integration
snapshot-incoming
snapshot-scheduler
snapshot2-core
sportal
sso-store
staff_admin
stockmarket
stockmarket_oldschool
stockmarket_oldschool_deadman
stockmarket_oldschool_seasonal
stockmarket_oldschool_tournament
telemetry-ingress
temp-hiscores
ticketing
totp-authenticator
translate-de
translate-fr
translate-pt
trial-membership
twitter-bot
uid-passport
username
weblogin
website-data

Data Extensions

.base:
File Explorer description is "Animation template file"
This file represents animation skeletons and possibly some other metadata.

.anim:
Animation frames. This gets applied to a skeleton + model.

.jgd:
File Explorer description is "JGD text file"
This file is used in Jaged Mesh Editor (Jaged = "Jagex Editor") as an intermediary format before packing to ob3.

.ob3:
File Explorer description is "Jagex model file"
Current model format.

.ob2:
Legacy model format, seen on models from 2007 and before.

.jm2:
Internal map format e.g. "m50_50.jm2"
May stand for Jagex Map 2?

.synth:
Synthesized sound effects.

Config Extensions

.area

.constant / .macro

.cs2:
ClientScript

.enum:
Enumerations

.flo:
Floor overlay

.flu:
Floor underlay

.headbar

.hitmark

.hunt:
Hunt mode

.idk:
Identity kit (player models)

.inv:
Inventory

.loc:
Location

.npc:
Npc

.obj:
Object

.param:
Parameters

.rs2:
RuneScript

.seq:
Sequence

.spotanim:
Spot animation

.varp:
Player variables

.varbit:
Player bit variables

.varn:
Npc variables

.varnbit:
Npc bit variables

.vars:
Shared (world) variables

.varsbit:
Shared (world) bit variables. Not sure that this exists.

.varobj:
Object variables

Structure

Game features are broken up into folders (organization arbitrarily chosen by the dev working on it).

Configs and scripts are loaded recursively from every folder inside src/scripts.

Models and animations are exposed to configs by their filename minus extension inside src/models.

The "packing order" (client-facing IDs) are sequentially incremented any time a new file/config is detected. Occasionally, this packing order is reset. For example, NPCs may not be in the same order from one revision to another. It just forces the client to redownload those cache archives.

Configs are structured pretty similarly to ini (not a true parser):

// would be in something like example.npc

[example_npc]
name=Example NPC
desc=Showing off a NPC config!
model1=man_head_bald
model2=man_jaw_moustache

// would be in something like example.obj

[example_obj]
name=Example Object
desc=Now showing off an Obj config!
model=inv_example_object
2dzoom=780
2dxof=-3
2dyof=-3
2dxan=432
2dyan=104
members=yes

// would be in something like example.loc

[example_loc]
name=Example Location
desc=Now showing off a Loc config!
model1=example_door_straight,^WALL_STRAIGHT
model2=example_door_diagonalc,^WALL_DIAGONALCORNER
model3=example_door_l,^WALL_L
model4=example_door_squarec,^WALL_SQUARECORNER
model5=example_door_diagonal,^WALL_DIAGONAL
active=yes
recol1s=2
recol1d=0
recol2s=24
recol2d=4762
op1=Open

Folders

pack/

src/
src/binary/
src/defaults/
src/interfaces/
src/maps/
src/maps/worldmap/
src/models/
src/models/agility_shortcuts/
src/models/area_abyssal_space/
src/models/area_aide/
src/models/area_brimhaven_dungeon/
src/models/area_clanwars/
src/models/area_dagganoth_dungeon/
src/models/area_dorgesh/
src/models/area_falador/
src/models/area_fossil/
src/models/area_fossil/fossil_underwater/
src/models/area_fremennik/
src/models/area_goblin_caves/
src/models/area_godwars/
src/models/area_grand_exchange/
src/models/area_harmless/
src/models/area_hellhound_lair/
src/models/area_ice/
src/models/area_mage_arena/
src/models/area_mor_ul_rek/
src/models/area_nexus/
src/models/area_rimmington/
src/models/area_rogues_den/
src/models/area_sanguine/
src/models/area_sos/
src/models/area_tasks/
src/models/area_tbow_cleanup/
src/models/area_vm/
src/models/area_warguild/
src/models/area_wilderness/
src/models/area_zeah/
src/models/bounty_hunter/
src/models/canoeing/
src/models/chathead/
src/models/deadman/
src/models/game_agilityarena/
src/models/game_agilitypyramid/
src/models/game_aluft_aloft/
src/models/game_barbassault/
src/models/game_barrows/
src/models/game_battle_royale/
src/models/game_blast_furnace/
src/models/game_boardgames/
src/models/game_brew/
src/models/game_castlewars/
src/models/game_cba/
src/models/game_champion/
src/models/game_clanwars/
src/models/game_ii/
src/models/game_mole/
src/models/game_ntk/
src/models/game_pest/
src/models/game_templetrek/
src/models/game_templetrek_2/
src/models/game_tob/
src/models/game_tog/
src/models/game_trail/
src/models/game_trick_or_treat/
src/models/game_tzhaar/
src/models/game_werewolfagility/
src/models/holiday_events/
src/models/human/
src/models/human/anim/
src/models/human/anim/100_guide/
src/models/human/anim/100_james/
src/models/human/anim/100_op/
src/models/human/anim/100_pirate/
src/models/human/anim/100_sir/
src/models/human/anim/action - common/
src/models/human/anim/action - rare/
src/models/human/anim/agility_shortcuts/
src/models/human/anim/aluft_aloft/
src/models/human/anim/area_abyssal/
src/models/human/anim/area_aide/
src/models/human/anim/area_dorgesh/
src/models/human/anim/area_fossil/
src/models/human/anim/area_fremmenik/
src/models/human/anim/area_goblin_caves/
src/models/human/anim/area_godwars/
src/models/human/anim/area_godwars/godwars_sword_update/
src/models/human/anim/area_harmless/
src/models/human/anim/area_hellhound_lair_anim/
src/models/human/anim/area_keldagrim/
src/models/human/anim/area_roguesden/
src/models/human/anim/area_sos/
src/models/human/anim/area_tbow_cleanup/ [blurry]
src/models/human/anim/area_tzhaarcaves/
src/models/human/anim/area_zeah/
src/models/human/anim/area_zeah/dclaws_spec/
src/models/human/anim/area_zeah/dhunter_lance/
src/models/human/anim/area_zeah/dsword_spec/
src/models/human/anim/area_zeah/dtaxe_spec/
src/models/human/anim/area_zeah/dtknives_spec/
src/models/human/anim/area_zeah/elder_maul/
src/models/human/anim/basic + tutorial/
src/models/human/anim/black_knights_fortress/
src/models/human/anim/brain_robbery/
src/models/human/anim/burgh_anims/
src/models/human/anim/canoeing/
src/models/human/anim/cluefest/
src/models/human/anim/combat - free/
src/models/human/anim/combat - members/
src/models/human/anim/diary_teleports/
src/models/human/anim/dmm_anims/
src/models/human/anim/doric/
src/models/human/anim/dragon_tools/
src/models/human/anim/dragon_warhammer/
src/models/human/anim/drilldemon/
src/models/human/anim/ectophial_teleport/
src/models/human/anim/emote/
src/models/human/anim/fai_falador/
src/models/human/anim/fai_varrock/
src/models/human/anim/fishing_contest/
src/models/human/anim/game - agilityarena/
src/models/human/anim/game_agilitypyramid/
src/models/human/anim/game_barbassault/
src/models/human/anim/game_barrows/
src/models/human/anim/game_blast_furnace/
src/models/human/anim/game_boardgames/
src/models/human/anim/game_brew/
src/models/human/anim/game_castlewars/
src/models/human/anim/game_champion/
src/models/human/anim/game_clue_scroll/
src/models/human/anim/Game_ii/
src/models/human/anim/game_ntk/
src/models/human/anim/game_pest/
src/models/human/anim/game_templetrek/
src/models/human/anim/game_tob/
src/models/human/anim/game_tog/
src/models/human/anim/game_trial/
src/models/human/anim/ghoul/
src/models/human/anim/goblin_diplomacy/
src/models/human/anim/gravedigger_macro/
src/models/human/anim/holiday_events/
src/models/human/anim/horsey/
src/models/human/anim/macro_mind/
src/models/human/anim/macroevent/
src/models/human/anim/movement/
src/models/human/anim/magic - free/
src/models/human/anim/magic - members/
src/models/human/anim/magic_carpet/
src/models/human/anim/magictraining/
src/models/human/anim/max_cape/
src/models/human/anim/mud_skipper/
src/models/human/anim/necro_plant_res/
src/models/human/anim/necro_teleport/
src/models/human/anim/Npc_improvement/
src/models/human/anim/addskull/
src/models/human/anim/petrock/
src/models/human/anim/plague_city/
src/models/human/anim/poh/
src/models/human/anim/poh2/
src/models/human/anim/poh3/
src/models/human/anim/poh4/
src/models/human/anim/qp_cook/
src/models/human/anim/qp_demon_slayer/
src/models/human/anim/qp_digsite/
src/models/human/anim/qp_dragon_slayer/
src/models/human/anim/qp_dwarf_mcannon/
src/models/human/anim/qp_elem1/
src/models/human/anim/Qp_observatory/
src/models/human/anim/qp_quest_impcatcher/
src/models/human/anim/quest - deathplateau/
src/models/human/anim/quest - druidic_spirit/
src/models/human/anim/quest - regicide/
src/models/human/anim/quest_animal_magnitism/
src/models/human/anim/quest_burgh/
src/models/human/anim/quest_digsite/
src/models/human/anim/quest_dragon_slayer_2/
src/models/human/anim/quest_dragonslayer2/
src/models/human/anim/quest_legendarysword/
src/models/human/anim/quest_legendarysword2/
src/models/human/anim/quest_LOTR/
src/models/human/anim/quest_lunar/
src/models/human/anim/quest_mdaughter/
src/models/human/anim/quest_mm2/
src/models/human/anim/quest_myreque_4/
src/models/human/anim/quest_plaguecity/
src/models/human/anim/quest_ratcatcher/
src/models/human/anim/quest_summoning/
src/models/human/anim/quest_tbwt/
src/models/human/anim/quest_the_feud/
src/models/human/anim/quest_tourtrap/
src/models/human/anim/quest_tower_of_life/
src/models/human/anim/quest_troll_rescue/
src/models/human/anim/quest_trollromance/
src/models/human/anim/quest_twocats/
src/models/human/anim/quest_vampires/
src/models/human/anim/quest_vampireslayer/
src/models/human/anim/quest_vampirewarrior/
src/models/human/anim/quest_varock_museum/
src/models/human/anim/quest_viking/
src/models/human/anim/quest_wanted/
src/models/human/anim/quest_watchtower/
src/models/human/anim/quest_werewolf_agility_arena/
src/models/human/anim/quest_zogre/
src/models/human/anim/raids/
src/models/human/anim/romeo_juliet/
src/models/human/anim/rum_deal/
src/models/human/anim/sandwichlady/
src/models/human/anim/secret_ghosts/
src/models/human/anim/skill - free/
src/models/human/anim/skill - members/
src/models/human/anim/skill_brutal/
src/models/human/anim/skill_cooking/
src/models/human/anim/skill_crafting/
src/models/human/anim/skill_farming/
src/models/human/anim/skill_hunting/
src/models/human/anim/skill_ranging/
src/models/human/anim/skill_slayer/
src/models/human/anim/skill_slayer/
src/models/human/anim/skillcapes/
src/models/human/anim/skilling_anims/
src/models/human/anim/soulbane/
src/models/human/anim/suroks_revenge/
src/models/human/anim/town_crier/
src/models/human/anim/trans/
src/models/human/anim/trick_or_treat/
src/models/human/anim/warguild/
src/models/human/anim/wilderness_capes/
src/models/human/anim/zmi_altar/
src/models/human/man/
src/models/human/man/arms/
src/models/human/man/deadman_mode/
src/models/human/man/feet/
src/models/human/man/fullbody/
src/models/human/man/hands/
src/models/human/man/hat/
src/models/human/man/hat/hat_treasure_trails_2016/
src/models/human/man/head/
src/models/human/man/head/2017_new_hair/
src/models/human/man/head/head_pvp_armours/
src/models/human/man/head/head_treasure_trails_2016/
src/models/human/man/head/New Folder/
src/models/human/man/head/slayer/
src/models/human/man/headextra/
src/models/human/man/jaw/
src/models/human/man/legs/
src/models/human/man/necklaces/
src/models/human/man/torso/
src/models/human/man/torsoextra/ [capes]
src/models/human/man/torsoextra/cluescrolls/
src/models/human/man/torsoextra/torsoextra_treasure_trails_2016/
src/models/human/man/wild_armour/
src/models/human/weapons/
src/models/human/weapons/fossil_agility_test/
src/models/human/weapons/poh_heraldic/
src/models/human/weapons/pvp_weapons/
src/models/human/weapons/raidsrewards/
src/models/human/weapons/weapons_treasure_trail_2016/
src/models/human/weaponsextra/
src/models/human/woman/
src/models/interface/
src/models/inv/
src/models/macroevents/
src/models/magic_carpet/
src/models/max_cape/
src/models/music_cape/
src/models/npc/
src/models/ogre_area/
src/models/opening_chests/
src/models/player_owned_house/
src/models/projectiles/
src/models/quest_afr/
src/models/quest_ahoy/
src/models/quest_animal_magnetism/
src/models/quest_augers_eye/
src/models/quest_black_knights_fortress/
src/models/quest_brain_robbery/
src/models/quest_burgh/
src/models/quest_contact/
src/models/quest_cook/
src/models/quest_death/
src/models/quest_demon_slayer_rework/
src/models/quest_deserttreasure/
src/models/quest_devious/
src/models/quest_digsite/
src/models/quest_dragon_slayer_qip/
src/models/quest_dragonslayer2/
src/models/Quest_dream_mentor/
src/models/quest_dtt_dorgeshuun/
src/models/quest_dwarf_rock/
src/models/quest_eadgar/
src/models/quest_easglepeak/
src/models/quest_elem2/
src/models/quest_elementalworkshop/
src/models/quest_elid/
src/models/quest_enakh/
src/models/quest_eye_of_glouphrie/
src/models/quest_fairy/
src/models/quest_fairytale2/
src/models/quest_fenkenstrain/
src/models/quest_fever/
src/models/quest_fishing_contest/
src/models/quest_forgettable/
src/models/quest_fourdiamonds/
src/models/quest_gertrudes_cat/
src/models/quest_goblin_diplomacy/
src/models/quest_golem/
src/models/quest_grim/
src/models/quest_handsand/
src/models/quest_hauntedmine/
src/models/quest_horror/
src/models/quest_hundred/
src/models/quest_icthalarins/
src/models/quest_impcatcher/
src/models/quest_kalphite/
src/models/quest_karam_dungeon/
src/models/quest_kings_randsom/
src/models/quest_led_zep/
src/models/quest_legendsword_2/
src/models/quest_LOTR/
src/models/quest_lovakengj/
src/models/quest_lunar/
src/models/quest_makinghistory/
src/models/quest_mcannon/
src/models/quest_mdaughter/
src/models/quest_misc/
src/models/quest_mm/
src/models/quest_mm2/
src/models/quest_mourning/
src/models/quest_murder_mystery/
src/models/quest_my2arm/
src/models/quest_myarm/
src/models/quest_myreque_pa [incomplete name]
src/models/quest_naturespirit/
src/models/quest_observatory/
src/models/quest_slug2/
src/models/quest_soulbane/
src/models/quest_summoning/
src/models/quest_suroks_revenge/
src/models/quest_swansong/
src/models/quest_tbwt/
src/models/quest_the_feud/
src/models/quest_tourtrap/
src/models/quest_tower_of_life/
src/models/quest_tranquility/
src/models/quest_troll/
src/models/quest_trollrescue/
src/models/quest_trollromance/
src/models/quest_twocats/
src/models/quest_vampires/
src/models/quest_vampirewarrior/
src/models/quest_viking/
src/models/quest_wanted/
src/models/quest_watchtower/
src/models/quest_zogre/
src/models/reward_darkbow/
src/models/scene/
src/models/skill_brutal/
src/models/skill_cooking/
src/models/skill_farming/
src/models/skill_fishing/
src/models/skill_hunting/
src/models/skill_lore/
src/models/skill_mining/
src/models/skill_ranging/
src/models/skill_slayer/
src/models/skill_slayer/interface/
src/models/skill_slayer/inventory/
src/models/skill_slayer/location/
src/models/skill_slayer/npc/
src/models/skill_slayer/npc/abyssal/
src/models/skill_slayer/npc/banshee/
src/models/skill_slayer/npc/basilisk/
src/models/skill_slayer/npc/bloodveld/
src/models/skill_slayer/npc/cave_crawler/
src/models/skill_slayer/npc/cockatrice/
src/models/skill_slayer/npc/crawling_hand/
src/models/skill_slayer/npc/demon/
src/models/skill_slayer/npc/dustdevil/
src/models/skill_slayer/npc/gargoyle/
src/models/skill_slayer/npc/grotesque_guardians/
src/models/skill_slayer/npc/grotesque_guardians/grotesque_guardian_animations/
src/models/skill_slayer/npc/jelly/
src/models/skill_slayer/npc/killerwatt/
src/models/skill_slayer/npc/kursk/
src/models/skill_slayer/npc/pyrefiend/
src/models/skill_slayer/npc/rockslug/
src/models/skill_slayer/npc/screaming_banshee/
src/models/skill_slayer/npc/slayer_bugs/
src/models/skill_slayer/npc/slayer_lizard/
src/models/skill_slayer/npc/spectre/
src/models/skill_slayer/npc/turoth/
src/models/skill_slayer/npc/wyvern/
src/models/skill_slayer/npc/zygomite/
src/models/skill_slayer/projectiles/
src/models/skill_slayer/slayer_tower_roof/
src/models/skill_slayer/slayer_tower_roof/slayer_tower_roof_wallkit/
src/models/skill_slayer/spotanim/
src/models/skill_slayer/spotanims/
src/models/skill_woodcutting/
src/models/skillcapes/
src/models/spells/
src/models/town_crier/
src/models/transilvania_area/
src/models/update_shadow_maj/
src/models/zmi_altar/
src/scripts/
src/scripts/areas/
src/scripts/areas/Area_Abyssal_space/
src/scripts/areas/area_aide/
src/scripts/areas/area_battlefield/
src/scripts/areas/area_dagganoth_dungeon/
src/scripts/areas/area_desert/
src/scripts/areas/area_dorgesh_kaan/
src/scripts/areas/area_fossil/
src/scripts/areas/area_fossil/config/
src/scripts/areas/area_fossil/script/
src/scripts/areas/area_gnome/
src/scripts/areas/area_goblin_caves/
src/scripts/areas/area_godwars_dungeon/
src/scripts/areas/Area_HAM_Fanatics/
src/scripts/areas/area_harmless/
src/scripts/areas/Area_karam_dungeon/
src/scripts/areas/area_keldagrim/
src/scripts/areas/area_mage_arena/
src/scripts/areas/area_nexus/
src/scripts/areas/area_rimmington/
src/scripts/areas/area_roguesden/
src/scripts/areas/area_sos/
src/scripts/areas/kebos/
src/scripts/areas/kebos/brimstone/
src/scripts/areas/monastery/
src/scripts/areas/Morytania/
src/scripts/areas/morytania_vampires/
src/scripts/areas/Werewolf_Village/
src/scripts/areas/zeah/
src/scripts/bonds/
src/scripts/clanchat/
src/scripts/deadman/
src/scripts/doors/
src/scripts/drop tables/
src/scripts/floors/
src/scripts/follower_cat/
src/scripts/general_follower/
src/scripts/general_use/
src/scripts/grand_exchange/
src/scripts/holiday_events/
src/scripts/interface_banks/
src/scripts/interface_boat/
src/scripts/interface_chat/
src/scripts/interface_chatsystem/
src/scripts/interface_map/
src/scripts/interface_options/
src/scripts/interface_polls/
src/scripts/interface_quest_journal/
src/scripts/interface_reportabuse/
src/scripts/interface_reusable_components/
src/scripts/interface_shops/
src/scripts/interface_skill_advance_guide_v2/
src/scripts/interface_skills/
src/scripts/interface_toplevel/
src/scripts/interface_trade/
src/scripts/interface_wear/
src/scripts/interface_welcomescreen/
src/scripts/interface_worldmap/
src/scripts/interface_worldswitcher/
src/scripts/ladders+stairs/
src/scripts/levelrequire/
src/scripts/macro events/
src/scripts/minigames/
src/scripts/minigames/game_nzone/
src/scripts/minigames/game_osman-sorceress/
src/scripts/minigames/game_partyroom/
src/scripts/minigames/game_pest/
src/scripts/minigames/game_pyramid_plunder/
src/scripts/minigames/game_tears_of_guthix/
src/scripts/minigames/game_temple_trek/
src/scripts/minigames/game_trail/
src/scripts/minigames/game_trawler/
src/scripts/minigames/grouping/
src/scripts/minigames/livestreams/
src/scripts/minigames/game_clanwars/
src/scripts/music/
src/scripts/npc/
src/scripts/objects/
src/scripts/player/
src/scripts/quests/
src/scripts/quests/quest_upass/
src/scripts/quests/quest_upass/upass_traps/
src/scripts/scenery/
src/scripts/skill_agility/
src/scripts/skill_brutal/
src/scripts/skill_combat/
src/scripts/skill_construction/
src/scripts/skill_cooking/
src/scripts/skill_crafting/
src/scripts/skill_farming/
src/scripts/skill_firemaking/
src/scripts/skill_fishing/
src/scripts/skill_fletching/
src/scripts/skill_general/
src/scripts/skill_herblore/
src/scripts/skill_hunting/
src/scripts/skill_magic/
src/scripts/skill_magic/Lunar Spells/
src/scripts/skill_magic/spell list/
src/scripts/skill_magic/Zaros Spells/
src/scripts/skill_mining/
src/scripts/skill_prayer/
src/scripts/skill_runecraft/
src/scripts/skill_slayer/
src/scripts/skill_slayer/gargoyle_boss/
src/scripts/skill_slayer/gargoyle_boss/config/
src/scripts/skill_slayer/gargoyle_boss/script/
src/scripts/skill_slayer/location scripts/
src/scripts/skill_slayer/monster scripts/
src/scripts/skill_slayer/npcs/
src/scripts/skill_slayer/rewards/
src/scripts/skill_slayer/superior_slayer_encounters/
src/scripts/skill_slayer/Zygomites/
src/scripts/skill_smtihing/
src/scripts/skill_thieving/
src/scripts/skill_woodcutting/
src/scripts/test_connor/
src/scripts/transportation/
src/scripts/tutorial/
src/scripts/warning_system/
src/sounds/
src/sprites/
src/webscripts/

src/

src/rs2_v4.engine

src/maps/

src/maps/keynames.txt
src/maps/labels_dungeon.txt
src/maps/labels_extra.txt
src/maps/labels_main.txt
[src/maps/*.jm2 e.g. m50_50.jm2 for Lumbridge]

src/models/area_fossil/fossil_underwater/

src/models/area_fossil/fossil_underwater/fi_anchor1.ob3
src/models/area_fossil/fossil_underwater/fi_clam1.ob3
src/models/area_fossil/fossil_underwater/fi_seabed_cavewall_1.ob3
src/models/area_fossil/fossil_underwater/fi_seabed_cavewall_2.ob3
src/models/area_fossil/fossil_underwater/fi_seabed_cavewall_3.ob3
src/models/area_fossil/fossil_underwater/fi_seabed_cavewall_5.ob3
src/models/area_fossil/fossil_underwater/fi_seabed_wall_1.ob3
src/models/area_fossil/fossil_underwater/fi_seabed_wall_2.ob3
src/models/area_fossil/fossil_underwater/fi_seabed_wall_5.ob3
src/models/area_fossil/fossil_underwater/fi_seabed_wall_top.ob3

src/models/human/anim/area_godwars/

src/models/human/anim/area_godwars/godwars_dying_paladin_death.anim
src/models/human/anim/area_godwars/godwars_dying_paladin_ready.anim
src/models/human/anim/area_godwars/godwars_dying_paladin_readyanim.anim
src/models/human/anim/area_godwars/godwars_godsword_armadyl.anim
src/models/human/anim/area_godwars/godwars_godsword_bandos.anim
src/models/human/anim/area_godwars/godwars_godsword_saradomin.anim
src/models/human/anim/area_godwars/godwars_godsword_zamorak.anim
src/models/human/anim/area_godwars/godwars_gong_hammer.anim
src/models/human/anim/area_godwars/godwars_player_move_boulder.anim
src/models/human/anim/area_godwars/godwars_player_move_bolder_south.anim
src/models/human/anim/area_godwars/godwars_saradomin_sword_attack.anim
src/models/human/anim/area_godwars/godwars_swimming_attack.anim
src/models/human/anim/area_godwars/godwars_swimming_death.anim
src/models/human/anim/area_godwars/godwars_swimming_defend.anim
src/models/human/anim/area_godwars/godwars_swimming_forward.anim
src/models/human/anim/area_godwars/godwars_swimming_ready.anim

src/models/human/anim/area_godwars/godwars_sword_update/

src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_armadyl_special_player.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_bandos_special_player.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_block.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_chop.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_defend.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_dragon_2H.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_ready.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_run.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_saradomin_god_special_player.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_saradomin_special.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_slash.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_smash.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_turnonspot.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_walk.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_walk_left.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_walk_right.anim
src/models/human/anim/area_godwars/godwars_sword_update/dh_sword_update_zamorak_special_player.anim
src/models/human/anim/area_godwars/godwars_sword_update/zamorakspear_run.anim
src/models/human/anim/area_godwars/godwars_sword_update/zamorakspear_turnonspot.anim
src/models/human/anim/area_godwars/godwars_sword_update/zamorakspear_walk.anim
src/models/human/anim/area_godwars/godwars_sword_update/zamorakspear_walkleft.anim
src/models/human/anim/area_godwars/godwars_sword_update/zamorakspear_walkright.anim

src/models/human/anim/area_zeah/

src/models/human/anim/area_zeah/bulwark_bash.anim
src/models/human/anim/area_zeah/bulwark_block.anim
src/models/human/anim/area_zeah/bulwark_crush.anim
src/models/human/anim/area_zeah/bulwark_run.anim
src/models/human/anim/area_zeah/bulwark_walk.anim
src/models/human/anim/area_zeah/human_dead_poses.anim
src/models/human/anim/area_zeah/ready_bulwark.anim
src/models/human/anim/area_zeah/ready_sheathed.anim
src/models/human/anim/area_zeah/xeric_pose.anim

src/models/human/anim/area_zeah/dclaws_spec/

src/models/human/anim/area_zeah/dclaws_spec/dclaws_human_spec.anim

src/models/human/anim/area_zeah/dhunter_lance/

src/models/human/anim/area_zeah/dhunter_lance/dhunter_lance_crush.anim
src/models/human/anim/area_zeah/dhunter_lance/dhunter_lance_stab.anim

src/models/human/anim/basic + tutorial/

src/models/human/anim/basic + tutorial/cast_chargeorb.anim
src/models/human/anim/basic + tutorial/cast_teleport.anim
src/models/human/anim/basic + tutorial/closedoorl.anim
src/models/human/anim/basic + tutorial/closedoorr.anim
src/models/human/anim/basic + tutorial/cooking.anim
src/models/human/anim/basic + tutorial/ddagger-block.anim
src/models/human/anim/basic + tutorial/ddagger-def.anim
src/models/human/anim/basic + tutorial/ddagger-hack.anim
src/models/human/anim/basic + tutorial/ddagger-lunge.anim
src/models/human/anim/basic + tutorial/death.anim
src/models/human/anim/basic + tutorial/dh_sword_ready.anim
src/models/human/anim/basic + tutorial/dh_sword_run.anim
src/models/human/anim/basic + tutorial/dh_word_walk.anim
src/models/human/anim/basic + tutorial/eat.anim
src/models/human/anim/basic + tutorial/fa_furnace.anim
src/models/human/anim/basic + tutorial/firecooking.anim
src/models/human/anim/basic + tutorial/furnace.anim
src/models/human/anim/basic + tutorial/lightfire.anim
src/models/human/anim/basic + tutorial/lobsterpot.anim
src/models/human/anim/basic + tutorial/milk.anim
src/models/human/anim/basic + tutorial/mining.anim
src/models/human/anim/basic + tutorial/mining_update.anim
src/models/human/anim/basic + tutorial/mining_update_looped.anim
src/models/human/anim/basic + tutorial/mining_update_wall_closer.anim
src/models/human/anim/basic + tutorial/newwalkleft.anim
src/models/human/anim/basic + tutorial/newwalkright.anim
src/models/human/anim/basic + tutorial/opendoor.anim
src/models/human/anim/basic + tutorial/opendoorl.anim
src/models/human/anim/basic + tutorial/opendoorr.anim
src/models/human/anim/basic + tutorial/pickupfloor.anim
src/models/human/anim/basic + tutorial/pray.anim
src/models/human/anim/basic + tutorial/reachforladder.anim
src/models/human/anim/basic + tutorial/ready.anim
src/models/human/anim/basic + tutorial/running.anim
src/models/human/anim/basic + tutorial/shield_defence.nim
src/models/human/anim/basic + tutorial/smithing.anim
src/models/human/anim/basic + tutorial/sword-block.anim
src/models/human/anim/basic + tutorial/sword-def.anim

src/models/human/man/

src/models/human/man/ds2_fleet_boat_paladin_steeringwheel.ob3
src/models/human/man/ds2_fleet_boat_whiteknight_steeringwheel.ob3
src/models/human/man/skill_slayer_npc_infernal_mage.ob3
src/models/human/man/tob_stranger.ob3
src/models/human/man/wildy_cave_revenant_knight.ob3

src/models/human/man/hat/

src/models/human/man/hat/AncientsI_Mitre_Male.ob3
src/models/human/man/hat/Armadyl_Male_Mitre.ob3
src/models/human/man/hat/Bandos_Mitre_Male.ob3
src/models/human/man/hat/brut_barbarian_helm1.ob2
src/models/human/man/hat/brut_barbarian_helm2.ob2
src/models/human/man/hat/brut_barbarian_helm3.ob2
src/models/human/man/hat/Cat_Mask_Male.ob3
src/models/human/man/hat/DragonMask_Male_Mask.ob3
src/models/human/man/hat/druidwreath_summerevent2014_man.ob3
src/models/human/man/hat/Explorers_Hat_Male.ob3
src/models/human/man/hat/game_pest_archer_helm_male.ob2
src/models/human/man/hat/game_pest_mage_helm_male.ob2
src/models/human/man/hat/grim_helm.ob2
src/models/human/man/hat/grim_stylus_hat.ob2
src/models/human/man/hat/gub_reindeer_hat_male.ob2
src/models/human/man/hat/guthix_halo_male.ob3
src/models/human/man/hat/hunter_pushorn_hat_man.ob2
src/models/human/man/hat/lavadragon_mask.ob3
src/models/human/man/hat/Leprechaun_Hat_Male.ob3
src/models/human/man/hat/man_hat_100_pirate_fishbowl.ob2
src/models/human/man/hat/man_hat_4th_bday.ob3
src/models/human/man/hat/man_hat_aide_fisher.ob2
src/models/human/man/hat/man_hat_ancestral_hat.ob3
src/models/human/man/hat/man_hat_angler.ob3
src/models/human/man/hat/man_hat_arabian.ob2
src/models/human/man/hat/man_hat_barbarian_drill.ob2
src/models/human/man/hat/man_hat_barbarian_helmet_01.ob2
src/models/human/man/hat/man_hat_barbarian_helmet_02.ob2
src/models/human/man/hat/man_hat_barbarian_helmet_03.ob3
src/models/human/man/hat/man_hat_barbarian_helmet_army.ob2
src/models/human/man/hat/man_hat_barbassault_penance_fighter.ob2
src/models/human/man/hat/man_hat_barbassault_penance_healer.ob2
src/models/human/man/hat/man_hat_barbassault_penance_ranger.ob2
src/models/human/man/hat/man_hat_barbassault_penance_runner.ob2
src/models/human/man/hat/man_hat_barrel1.ob2
src/models/human/man/hat/man_hat_barrel2.ob2
src/models/human/man/hat/man_hat_barrel3.ob2
src/models/human/man/hat/man_hat_barrel4.ob2
src/models/human/man/hat/man_hat_barrel5.ob2
src/models/human/man/hat/man_hat_barrows_skeleton.ob2
src/models/human/man/hat/man_hat_battered_mining_helmet.ob2
src/models/human/man/hat/man_hat_bee_keeper.ob2
src/models/human/man/hat/man_hat_beret_artist.ob2
src/models/human/man/hat/man_hat_berret.ob2
src/models/human/man/hat/man_hat_birdseye.ob2
src/models/human/man/hat/man_hat_bounty_hunter.ob3
src/models/human/man/hat/man_hat_bounty_rogue.ob3
src/models/human/man/hat/man_hat_bowler.ob2
src/models/human/man/hat/man_hat_brew_tricorn.ob2
src/models/human/man/hat/man_hat_bunnyears.ob2
src/models/human/man/hat/man_hat_butlers.ob2
src/models/human/man/hat/man_hat_cavalier.ob2
src/models/human/man/hat/man_hat_cave_goblin_mining.ob2
src/models/human/man/hat/man_hat_gave_goblin_mining_unli.ob2
src/models/human/man/hat/man_hat_chef_poh.ob2
src/models/human/man/hat/man_hat_chefs.ob2
src/models/human/man/hat/man_hat_crown.ob2
src/models/human/man/hat/man_hat_crown2.ob2
src/models/human/man/hat/man_hat_crown3.ob2
src/models/human/man/hat/man_hat_darkmage.ob2
src/models/human/man/hat/man_hat_darktrooper.ob2
src/models/human/man/hat/man_hat_doctors.ob2
src/models/human/man/hat/man_hat_drill_camoflage.ob2
src/models/human/man/hat/man_hat_elem_helm_male.ob2
src/models/human/man/hat/man_hat_elf.ob2
src/models/human/man/hat/man_hat_elfhat2.ob2
src/models/human/man/hat/man_hat_elfpriest.ob2
src/models/human/man/hat/man_hat_enviro_suit_helmet.ob2
src/models/human/man/hat/man_hat_featherband1.ob2
src/models/human/man/hat/man_hat_featherband2.ob2
src/models/human/man/hat/man_hat_featherband3.ob2
src/models/human/man/hat/man_hat_fedora.ob2
src/models/human/man/hat/man_hat_fez.ob2
src/models/human/man/hat/man_hat_fishing_contest.ob2
src/models/human/man/hat/man_hat_fris_kinglyhat.ob2 [Helm of neitiznot]
src/models/human/man/hat/man_hat_fris_town_crier.ob2
src/models/human/man/hat/man_hat_frisb_jester.ob2
src/models/human/man/hat/man_hat_frog_crown.ob2
src/models/human/man/hat/man_hat_ghost_cavalier.ob2
src/models/human/man/hat/man_hat_ghost_[unable to transcribe].ob2
src/models/human/man/hat/man_hat_ghost_sailor.ob2
src/models/human/man/hat/man_hat_ghost_wizard.ob3
src/models/human/man/hat/man_hat_glassblower.ob2
src/models/human/man/hat/man_hat_granite_helm.ob2
src/models/human/man/hat/man_hat_gravedigger_head.ob2
src/models/human/man/hat/man_hat_headband.ob2
src/models/human/man/hat/man_hat_hunting.ob2
src/models/human/man/hat/man_hat_jester.ob2
src/models/human/man/hat/man_hat_lederhosen.ob2
src/models/human/man/hat/man_hat_lumberjack_checker.ob2
src/models/human/man/hat/man_hat_lunar_moonclan.ob2
src/models/human/man/hat/man_hat_lunar_moonclan_headgear.ob2

src/models/human/man/head/

src/models/human/man/head/Afro_Male.ob3
src/models/human/man/head/antisanta_head.ob3
src/models/human/man/head/atvar_head_helm_elite_male.ob3
src/models/human/man/head/atvar_head_helm_hard_male.ob3
src/models/human/man/head/atvar_head_helm_medium_male.ob3
src/models/human/man/head/bh_trader.ob3
src/models/human/man/head/Bronze_Male_FullHelmet_trimmed_Trail.ob3
src/models/human/man/head/brut_ascending_spirit_hat.ob2
src/models/human/man/head/brut_ascending_spirit_head.ob2
src/models/human/man/head/brut_barbarian_skel_helm1.ob2
src/models/human/man/head/brut_barbarian_skel_helm2.ob2
src/models/human/man/head/brut_barbarian_skel_helm3.ob2
src/models/human/man/head/brut_full_dragon_helm.ob2
src/models/human/man/head/canafis_update_head_male1.ob3
src/models/human/man/head/canafis_update_head_male2.ob2
src/models/human/man/head/canafis_update_head_male3.ob3
src/models/human/man/head/canafis_update_head_male4.ob2
src/models/human/man/head/canafis_update_head_male5.ob2
src/models/human/man/head/child.ob2
src/models/human/man/head/contract_all_head.ob2
src/models/human/man/head/cwars_mage_heaed.ob3
src/models/human/man/head/deadman_head.ob3
src/models/human/man/head/dragon_slayer_qp_ghost_head_man.ob2
src/models/human/man/head/dragon_slayer_qp_ghost_head_man2.ob2
src/models/human/man/head/dream_helm.ob2
src/models/human/man/head/easter07_chicken_head.ob2
src/models/human/man/head/elder_druid_head.ob3
src/models/human/man/head/fai_varrock_afro.ob2
src/models/human/man/head/fight_arena_general_khazard_skull.ob2
src/models/human/man/head/fight_arena_general_khazard_helm.ob2
src/models/human/man/head/game_pest_melee_helm_male.ob2
src/models/human/man/head/GoblinManHead.ob3
src/models/human/man/head/godwars_armadyl_helmet_male.ob2
src/models/human/man/head/godwars_dying_paladin_head.ob2
src/models/human/man/head/godwars_knight_head.ob2
src/models/human/man/head/godwars_knight_head2.ob2
src/models/human/man/head/godwarsr_saradomin_wizard_head.ob2
src/models/human/man/head/graceful_hoods_male.ob3
src/models/human/man/head/hunter_pushorn_head_man.ob2
src/models/human/man/head/hunter_sabretooth_head_man.ob2
src/models/human/man/head/hunter_spikeride_head_man.ob2
src/models/human/man/head/hw06_jack_o_lantern_head_man.ob2
src/models/human/man/head/hw06_skel_cow_head.ob2
src/models/human/man/head/hw07_grim_head_male.ob2
src/models/human/man/head/hw15_gravedigger_head.ob3
src/models/human/man/head/ImpHat_Male.ob3
src/models/human/man/head/Iron_G_FullHelm_Male.ob3
src/models/human/man/head/Iron_T_fullHelm_male.ob3
src/models/human/man/head/ironman_helm.ob3
src/models/human/man/head/ironman_helm_h.ob3
src/models/human/man/head/ironman_helm_u.ob3
src/models/human/man/head/jersey_collar_bald.ob2
src/models/human/man/head/keeperofkeys_head.ob3
src/models/human/man/head/lz_arthur_bronze_helm.ob2
src/models/human/man/head/lz_prosecutor_head.ob2
src/models/human/man/head/mac_head.ob3
src/models/human/man/head/Male_Bronze_T_Fullhelm.ob3
src/models/human/man/head/man_hat_mage_pizzaz.ob2
src/models/human/man/head/man_head_100_pirate_fishbowl.ob2
src/models/human/man/head/man_head_5oclock_shadow.ob2
src/models/human/man/head/man_head_anvas_headgear.ob3
src/models/human/man/head/man_head_arabian.ob2
src/models/human/man/head/man_head_arabian2.ob2
src/models/human/man/head/man_head_architect_hos.ob3
src/models/human/man/head/man_head_architect_pisc.ob3
src/models/human/man/head/man_head_baboon.ob2
src/models/human/man/head/man_head_bald.ob2
src/models/human/man/head/man_head_bald_fat.ob2
src/models/human/man/head/man_head_balder.ob2
src/models/human/man/head/man_head_banshee_mask.ob3
src/models/human/man/head/man_head_barbarian_chef.ob2
src/models/human/man/head/man_head_barbarian_chief.ob2
src/models/human/man/head/man_head_barbary_1.ob3
src/models/human/man/head/man_head_barbary_2.ob3
src/models/human/man/head/man_head_barbary_3.ob3
src/models/human/man/head/man_head_barbary_4.ob3
src/models/human/man/head/man_head_barrow_dharok.ob3
src/models/human/man/head/man_head_barrow_dharok_wraith.ob2
src/models/human/man/head/man_head_barrow_guthan.ob2
src/models/human/man/head/man_head_barrow_guthan_wraith.ob2
src/models/human/man/head/man_head_barrow_karil.ob2
src/models/human/man/head/man_head_barrow_torag.ob2
src/models/human/man/head/man_head_barrow_torag_wraith.ob2
src/models/human/man/head/man_head_barrow_verac.ob2
src/models/human/man/head/man_head_bridgelum_consult.ob2
src/models/human/man/head/man_head_castlewars_hood.ob2
src/models/human/man/head/man_head_chaos_necro.ob3
src/models/human/man/head/man_head_clown_mask.ob3
src/models/human/man/head/man_head_coif.ob2
src/models/human/man/head/man_head_contact_sopanem_guard.ob2
src/models/human/man/head/man_head_crab_helmet.ob2
src/models/human/man/head/man_head_croc_ob2
src/models/human/man/head/man_head_curtains.ob2
src/models/human/man/head/man_head_curtains_highlight.ob2
src/models/human/man/head/man_head_curtains_long.ob2
src/models/human/man/head/man_head_curtains_long_highlight.ob2

src/models/human/man/jaw/

src/models/human/man/jaw/brut_ascending_spirit_jaw.ob2
src/models/human/man/jaw/keeperofkeys_jaw.ob3
src/models/human/man/jaw/man_jaw.ob3
src/models/human/man/jaw/man_jaw_5oclock_shadow.ob2
src/models/human/man/jaw/man_jaw_arabian.ob2
src/models/human/man/jaw/man_jaw_arabian2.ob2
src/models/human/man/jaw/man_jaw_arabian2_fakebeard.ob2
src/models/human/man/jaw/man_jaw_barbarian_beard.ob3
src/models/human/man/jaw/man_jaw_barbary_1.ob3
src/models/human/man/jaw/man_jaw_barbary_2.ob3
src/models/human/man/jaw/man_jaw_chaos_necro.ob3
src/models/human/man/jaw/man_jaw_dali_highlight.ob2
src/models/human/man/jaw/man_jaw_egyption.ob2
src/models/human/man/jaw/man_jaw_facemask.ob2
src/models/human/man/jaw/man_jaw_goaty.ob2
src/models/human/man/jaw/man_jaw_handlebar_highlight.ob2
src/models/human/man/jaw/man_jaw_king.ob2
src/models/human/man/jaw/man_jaw_medium.ob2
src/models/human/man/jaw/man_jaw_moustache.ob2
src/models/human/man/jaw/man_jaw_moustache2.ob2
src/models/human/man/jaw/man_jaw_moustache3.ob2
src/models/human/man/jaw/man_jaw_moustache4_highlight.ob2
src/models/human/man/jaw/man_jaw_muttonchips_highlight.ob2
src/models/human/man/jaw/man_jaw_muttonfull_highlight.ob2
src/models/human/man/jaw/man_jaw_none.ob2
src/models/human/man/jaw/man_jaw_ragged_beard.ob2
src/models/human/man/jaw/man_jaw_santa.ob2
src/models/human/man/jaw/man_jaw_short.ob2
src/models/human/man/jaw/man_jaw_short2.ob2
src/models/human/man/jaw/man_jaw_short2_fat.ob2
src/models/human/man/jaw/man_jaw_short_fat.ob2
src/models/human/man/jaw/man_jaw_split.ob2
src/models/human/man/jaw/man_jaw_vampyre.ob3
src/models/human/man/jaw/man_jaw_vc_moustache.ob2
src/models/human/man/jaw/man_jaw_very_long_ragged.ob2
src/models/human/man/jaw/man_jaw_very_long_ragged_fat.ob2
src/models/human/man/jaw/man_jaw_visser_highlight.ob2
src/models/human/man/jaw/man_jaw_waxed_highlight.ob2
src/models/human/man/jaw/Patchy_Beard.ob2
src/models/human/man/jaw/prospector_pete_jaw.ob3
src/models/human/man/jaw/qp_soa_jonny_the_beard_beard.ob2
src/models/human/man/jaw/qp_watchtower_wizard_very_long.ob2
src/models/human/man/jaw/slug2_mayor3.ob2
src/models/human/man/jaw/town_crier_beard.ob2

src/models/human/man/torsoextra/

src/models/human/man/torsoextra/3acloak_Male.ob3
src/models/human/man/torsoextra/AncientsI_Cloak_Male.ob3
src/models/human/man/torsoextra/anma_quiver_iron_man.ob2
src/models/human/man/torsoextra/anma_quiver_steel_man.ob2
src/models/human/man/torsoextra/anma_quiver_vorkath_man.ob3
src/models/human/man/torsoextra/Armadyl_MainCloak.ob3
src/models/human/man/torsoextra/atvar_torsoextra_cloak_easy_male.ob3
src/models/human/man/torsoextra/atvar_torsoextra_cloak_elite_main.ob3
src/models/human/man/torsoextra/atvar_torsoextra_cloak_hard_male.ob3
src/models/human/man/torsoextra/atvar_torsoextra_cloak_medium_male.ob3
src/models/human/man/torsoextra/Bandos_Cloak_Male.ob3
src/models/human/man/torsoextra/championscloak_male.ob3
src/models/human/man/torsoextra/cwars_range_cape.ob3
src/models/human/man/torsoextra/deadman_cloak.ob3
src/models/human/man/torsoextra/dragon_slayer_qp_oracle_cape.ob2
src/models/human/man/torsoextra/dragon_slayer_qp_ozaich_cloak.ob2
src/models/human/man/torsoextra/Explorers_Backpack_Male.ob3
src/models/human/man/torsoextra/fight_arena_general_khazard_cloak.ob2
src/models/human/man/torsoextra/fight_arena_general_khazard_giant.ob2
src/models/human/man/torsoextra/game_pest_teleport_badge.ob2
src/models/human/man/torsoextra/ghost_hat_back.ob2
src/models/human/man/torsoextra/godwars_knight_cloak.ob2
src/models/human/man/torsoextra/graceful_cape_male.ob3
src/models/human/man/torsoextra/keeperofkeys_sack.ob3
src/models/human/man/torsoextra/lotr_shylock_sack.ob2
src/models/human/man/torsoextra/lunar_seal_of_passage.ob2
src/models/human/man/torsoextra/man_torsoextra_100_books1.ob2
src/models/human/man/torsoextra/man_torsoextra_100_books2.ob2
src/models/human/man/torsoextra/man_torsoextra_100_books3.ob2
src/models/human/man/torsoextra/man_torsoextra_100_books4.ob2
src/models/human/man/torsoextra/man_torsoextra_100_books5.ob2
src/models/human/man/torsoextra/man_torsoextra_100_pirate_breathing_apparatus.ob2
src/models/human/man/torsoextra/man_torsoextra_ancientsymbol.ob3
src/models/human/man/torsoextra/man_torsoextra_apron.ob2
src/models/human/man/torsoextra/man_torsoextra_apron_qui_pocket.ob2
src/models/human/man/torsoextra/man_torsoextra_armadylsymbol.ob3
src/models/human/man/torsoextra/man_torsoextra_bandossymbol.ob3
src/models/human/man/torsoextra/man_torsoextra_barbarian_chest_rap.ob2
src/models/human/man/torsoextra/man_torsoextra_barbarian_hairy_chet.ob2
src/models/human/man/torsoextra/man_torsoextra_barbarian_shoulder_pads.ob2
src/models/human/man/torsoextra/man_torsoextra_barbarian_shoulder_pads_army.ob2
src/models/human/man/torsoextra/man_torsoextra_barbassault_attacker_icon.ob2
src/models/human/man/torsoextra/man_torsoextra_barbassault_collector_icon.ob2
src/models/human/man/torsoextra/man_torsoextra_barbassault_defender_icon.ob2
src/models/human/man/torsoextra/man_torsoextra_barbassault_healer_icon.ob2
src/models/human/man/torsoextra/man_torsoextra_bards_cape.ob3
src/models/human/man/torsoextra/man_torsoextra_barrow_wraith_cloak2.ob2
src/models/human/man/torsoextra/man_torsoextra_barrows_skeleton_cloak.ob2
src/models/human/man/torsoextra/man_torsoextra_bloodsplalts.ob2
src/models/human/man/torsoextra/man_torsoextra_bloodsplats_notfat.ob2
src/models/human/man/torsoextra/man_torsoextra_bone_sack.ob2
src/models/human/man/torsoextra/man_torsoextra_bone_sack_player_m.ob2
src/models/human/man/torsoextra/man_torsoextra_buff_for_plate.ob2
src/models/human/man/torsoextra/man_torsoextra_buttons.ob2
src/models/human/man/torsoextra/man_torsoextra_buttons2.ob2
src/models/human/man/torsoextra/man_torsoextra_buttonsfat.ob2
src/models/human/man/torsoextra/man_torsoextra_buttonsfat2.ob2
src/models/human/man/torsoextra/man_torsoextra_camoflauge_robe.ob2
src/models/human/man/torsoextra/man_torsoextra_castlewars_cloak.ob2
src/models/human/man/torsoextra/man_torsoextra_cheap_cloak.ob2
src/models/human/man/torsoextra/man_torsoextra_champion_dwarf_throne.ob2
src/models/human/man/torsoextra/man_torsoextra_champion_elf_throne.ob2
src/models/human/man/torsoextra/man_torsoextra_champion_skeleton_armour.ob2
src/models/human/man/torsoextra/man_torsoextra_champion_throne.ob2
src/models/human/man/torsoextra/man_torsoextra_cloak.ob3
src/models/human/man/torsoextra/man_torsoextra_cloak2.ob2
src/models/human/man/torsoextra/man_torsoextra_cloak_for_hood2.ob2
src/models/human/man/torsoextra/man_torsoextra_cloak_for_hood2_no_head.ob2
src/models/human/man/torsoextra/man_torsoextra_cloak_of_darkness.ob3
src/models/human/man/torsoextra/man_torsoextra_cloak_plane.ob2
src/models/human/man/torsoextra/man_torsoextra_cloak_plain_sit_floor.ob2
src/models/human/man/torsoextra/man_torsoextra_contact_menaphos_guards_pads.ob2
src/models/human/man/torsoextra/man_torsoextra_contact_menaphos_guards_skirt.ob2
src/models/human/man/torsoextra/man_torsoextra_cox_challenge_tier1_cape.ob3
src/models/human/man/torsoextra/man_torsoextra_cox_challenge_tier2_cape.ob3
src/models/human/man/torsoextra/man_torsoextra_cox_challenge_tier3_cape.ob3
src/models/human/man/torsoextra/man_torsoextra_cox_challenge_tier4_cape.ob3
src/models/human/man/torsoextra/man_torsoextra_cox_challenge_tier5_cape.ob3
src/models/human/man/torsoextra/man_torsoextra_dark_wizard_decor.ob2
src/models/human/man/torsoextra/man_torsoextra_dark_wizard_leg_decor.ob2
src/models/human/man/torsoextra/man_torsoextra_darkelf_cloak.ob2
src/models/human/man/torsoextra/man_torsoextra_drilldemon_star.ob2
src/models/human/man/torsoextra/man_torsoextra_eagle_cape.ob2
src/models/human/man/torsoextra/man_torsoextra_elfpriestdecor.ob2
src/models/human/man/torsoextra/man_torsoextra_enviro_suit_tank.ob2
src/models/human/man/torsoextra/man_torsoextra_favour_ham_logo.ob2
src/models/human/man/torsoextra/man_torsoextra_favour_ham_logo_cloak.ob2
src/models/human/man/torsoextra/man_torsoextra_fever_scars.ob2
src/models/human/man/torsoextra/man_torsoextra_fever_stitches.ob2
src/models/human/man/torsoextra/man_torsoextra_fire_cape.ob3
src/models/human/man/torsoextra/man_torsoextra_fire_cape_dummy.ob2
src/models/human/man/torsoextra/man_torsoextra_fishsack.ob3
src/models/human/man/torsoextra/man_torsoextra_fris_kinglycape.ob2
src/models/human/man/torsoextra/man_torsoextra_ghost_cloak.ob2
src/models/human/man/torsoextra/man_torsoextra_ghost_sailor.ob2
src/models/human/man/torsoextra/man_torsoextra_glassblower_apron.ob2
src/models/human/man/torsoextra/man_torsoextra_grain_sack.ob2
src/models/human/man/torsoextra/man_torsoextra_guard_shoulder_pads.ob2
src/models/human/man/torsoextra/man_torsoextra_guide_backpack.ob2
src/models/human/man/torsoextra/man_torsoextra_guidedecor.ob2
src/models/human/man/torsoextra/man_torsoextra_guthix_cape.ob3
src/models/human/man/torsoextra/man_torsoextra_guthixsymbol.ob2
src/models/human/man/torsoextra/man_torsoextra_herquin_pocket_watch.ob2
src/models/human/man/torsoextra/man_torsoextra_herquin_toolbelt.ob2
src/models/human/man/torsoextra/man_torsoextra_hoode.ob2
src/models/human/man/torsoextra/man_torsoextra_infernalcape.ob3
src/models/human/man/torsoextra/man_torsoextra_infernalcape_dummy.ob3
src/models/human/man/torsoextra/man_torsoextra_invisible_cape.ob2
src/models/human/man/torsoextra/man_torsoextra_jacket.ob2
src/models/human/man/torsoextra/man_torsoextra_jacketfat.ob2
src/models/human/man/torsoextra/man_torsoextra_jester_cloak.ob3
src/models/human/man/torsoextra/man_torsoextra_lab_coat.ob3
src/models/human/man/torsoextra/man_torsoextra_laderhosen_straps.ob2
src/models/human/man/torsoextra/man_torsoextra_lon_for_platemail.ob2

src/models/human/weapons/

src/models/human/weapons/3A_Bow_Weapon.ob3
src/models/human/weapons/3A_Broadsword_MaleWeapon.ob3
src/models/human/weapons/3A_hatchet.ob3
src/models/human/weapons/3A_hatchet_woman.ob3
src/models/human/weapons/3A_pickaxe.ob3
src/models/human/weapons/3A_pickaxe_woman.ob3
src/models/human/weapons/3A_Wand_Weapon.ob3
src/models/human/weapons/aaaaaaaa.ob3
src/models/human/weapons/abyssal_tentacle.ob3
src/models/human/weapons/amethyst_crafting.ob3
src/models/human/weapons/Ancientsl_Crozier_Male.ob3
src/models/human/weapons/anma_axe.ob2
src/models/human/weapons/anma_iron.ob2
src/models/human/weapons/anmasack_empty.ob2
src/models/human/weapons/anma_sack_full.ob2
src/models/human/weapons/arcane_shield.ob3
src/models/human/weapons/area_aide_kiteshield.ob2
src/models/human/weapons/Armadyl_Male_Crozier.ob3
src/models/human/weapons/ash_mug.ob3
src/models/human/weapons/Bandos_Crozier.ob3
src/models/human/weapons/barbarian_axe_for_man.ob2
src/models/human/weapons/bbbbbbbb.ob3
src/models/human/weapons/blessed_spirit_shield.ob3
src/models/human/weapons/br_halberd.ob3
src/models/human/weapons/brain_anchor.ob2
src/models/human/weapons/brain_weapons_open_book.ob2
src/models/human/weapons/brain_ewapons_open_saradomin_book.ob2
src/models/human/weapons/Bronze_Male_Kiteshield_trimmed_Trail.ob3
src/models/human/weapons/brut_firemaking_daganoth_bow.ob2
src/models/human/weapons/brut_firemaking_longbow.ob2
src/models/human/weapons/brut_firemaking_shortbow.ob2
src/models/human/weapons/brut_fishing_rod.ob2
src/models/human/weapons/brut_net.ob2
src/models/human/weapons/brut_pspear.ob2
src/models/human/weapons/brut_shark.ob2
src/models/human/weapons/brut_spear.ob2
src/models/human/weapons/brut_swordfish.ob2
src/models/human/weapons/brut_tuna.ob2
src/models/human/weapons/Cane_Weapon.ob3
src/models/human/weapons/chronicle_man.ob3
src/models/human/weapons/chronical_woman.ob3
src/models/human/weapons/contact_sophanem_spear.ob2
src/models/human/weapons/contact_sophanem_spear_woman.ob2
src/models/human/weapons/darkbow_darkbow.ob2
src/models/human/weapons/deadman_sword.ob3
src/models/human/weapons/dorgesh_whirly_scanner.ob2
src/models/human/weapons/Dragon_Cane.ob3
src/models/human/weapons/dragon_claws.ob3
src/models/human/weapons/dream_magic_shortbow.ob2
src/models/human/weapons/easter07_egg.ob2
src/models/human/weapons/easter07_egg_bunny.ob2
src/models/human/weapons/easter07_egg_green.ob2
src/models/human/weapons/easter07_egg_orange.ob2
src/models/human/weapons/easter07_egg_yellow.ob2
src/models/human/weapons/eek_female.ob3
src/models/human/weapons/eek_male.ob3
src/models/human/weapons/elysian_shield.ob3
src/models/human/weapons/eyeglo_crystal_axe.ob2
src/models/human/weapons/fai_ikov_lucien_staff.ob2
src/models/human/weapons/fai_varrock_guard_broom_woman.ob2
src/models/human/weapons/fai_varrock_guard_shield.ob2
src/models/human/weapons/fai_varrock_guard_sword.ob2
src/models/human/weapons/fai_varrock_guard_wateringcan.ob2
src/models/human/weapons/fai_varrock_halbard.ob2
src/models/human/weapons/fai_varrock_half_bench.ob2
src/models/human/weapons/female_arcane_shield.ob3
src/models/human/weapons/female_blessed_spirit_shield.ob3
src/models/human/weapons/female_elysian_shield.ob3
src/models/human/weapons/female_spectral_shield.ob3
src/models/human/weapons/female_spirit_shield.ob3
src/models/human/weapons/fight_arena_general_khazard_sword.ob2
src/models/human/weapons/fns_arctic_pine_log_lhand.ob2
src/models/human/weapons/fns_viking_axe.ob2
src/models/human/weapons/goblin_paint_cannon.ob3
src/models/human/weapons/godwars_armadyl_godsword_player.ob3
src/models/human/weapons/godwars_armadyl_godsword_player_g.ob3
src/models/human/weapons/godwars_bandos_godsword_player.ob3
src/models/human/weapons/godwars_bandos_godsword_player_g.ob3
src/models/human/weapons/godwars_knight_axe.ob2
src/models/human/weapons/godwars_saradomin_godsword.ob2
src/models/human/weapons/godwars_saradomin_godsword_player.ob3
src/models/human/weapons/godwars_saradomin_godsword_player_g.ob3
src/models/human/weapons/godwars_saradomin_wizard_cane.ob2
src/models/human/weapons/godwars_water_trident_player.ob2
src/models/human/weapons/godwars_zamorak_godsword_player.ob3
src/models/human/weapons/godwars_zamokak_godsword_player_g.ob3
src/models/human/weapons/godwars_zamorak_spear_player.ob2
src/models/human/weapons/grim_potion_vial.ob2
src/models/human/weapons/grim_sylius_walking_stick.ob2
src/models/human/weapons/gub_xmas_2006_player_held_snowball.ob2
src/models/human/weapons/hand_scroll_teleport.ob3
src/models/human/weapons/heavy_ballista.ob3
src/models/human/weapons/hillgiant_club.ob3
src/models/human/weapons/human_weapons_100_brulee_pot.ob2
src/models/human/weapons/human_weapons_100_chair_mohogany.ob2
src/models/human/weapons/human_weapons_100_egg_whisk.ob2
src/models/human/weapons/human_weapons_100_frying_pan.ob2
src/models/human/weapons/human_weapons_100_kebab_skewer.ob2
src/models/human/weapons/human_weapons_100_large_spatula.ob2
src/models/human/weapons/human_weapons_100_meat_cleaver.ob2
src/models/human/weapons/human_weapons_100_meat_tenderiser.ob2
src/models/human/weapons/human_weapons_100_rolling_pin.ob2
src/models/human/weapons/human_weapons_100_spork.ob2
src/models/human/weapons/human_weapons_100_sushi_knife.ob2
src/models/human/weapons/human_weapons_100_wooden_spoon.ob2
src/models/human/weapons/human_weapons_100guide_egg_bottom.ob2
src/models/human/weapons/human_weapons_abyssal_dagger.ob3
src/models/human/weapons/human_weapons_abyssal_dagger_p.ob3
src/models/human/weapons/human_weapons_abyssal_whip.ob2
src/models/human/weapons/human_weapons_aide_stick.ob2
src/models/human/weapons/human_weapons_aide_woodsman_axe.ob2
src/models/human/weapons/human_weapons_aivas_crossbow.ob3
src/models/human/weapons/human_weapons_anger_axe_char.ob2
src/models/human/weapons/human_weapons_anger_mace_char.ob2
src/models/human/weapons/human_weapons_anger_spear_char.ob2
src/models/human/weapons/human_weapons_anger_sword_char.ob2
src/models/human/weapons/human_weapons_antidragonshield.ob2
src/models/human/weapons/human_weapons_antidragonshield_update.ob2
src/models/human/weapons/human_weapons_aquarium_net.ob2
src/models/human/weapons/human_weapons_arceeus_essence_block.ob3
src/models/human/weapons/human_weapons_arclight.ob3
src/models/human/weapons/human_weapons_armour_leopard_toy.ob3
src/models/human/weapons/human_weapons_atvar_banner_easy.ob3
src/models/human/weapons/human_weapons_atvar_banner_elite.ob3
src/models/human/weapons/human_weapons_atvar_banner_hard.ob3
src/models/human/weapons/human_weapons_atvar_banner_medium.ob3
src/models/human/weapons/human_weapons_aws.ob3
src/models/human/weapons/human_weapons_axe.ob2
src/models/human/weapons/human_weapons_bag_of_salt.ob2
src/models/human/weapons/human_weapons_baguette.ob2
src/models/human/weapons/human_weapons_bannana.ob2
src/models/human/weapons/human_weapons_bannana_left.ob2
src/models/human/weapons/human_weapons_barbarian_axe.ob2
src/models/human/weapons/human_weapons_barbarian_hammer.ob2
src/models/human/weapons/human_weapons_barbarian_hammer.ob3
src/models/human/weapons/human_weapons_barbarian_longbow.ob2
src/models/human/weapons/human_weapons_barbarian_spear.ob2
src/models/human/weapons/human_weapons_barbarian_spiky_club.ob2
src/models/human/weapons/human_weapons_barbarian_sword.ob2
src/models/human/weapons/human_weapons_barbassault_vial.ob2
src/models/human/weapons/human_weapons_barrow_dharok_axe.ob2
src/models/human/weapons/human_weapons_barrow_dharok_wraith_axe.ob2
src/models/human/weapons/human_weapons_barrow_guthan_mstar.ob2
src/models/human/weapons/human_weapons_barrow_guthan_wraith_mstar.ob2
src/models/human/weapons/human_weapons_barrow_quarterstaff.ob2
src/models/human/weapons/human_weapons_barrow_quarterstaff_female.ob2
src/models/human/weapons/human_weapons_barrow_torag_hammers.ob2
src/models/human/weapons/human_weapons_barrow_torag_wraith_hammers.ob2
src/models/human/weapons/human_weapons_barrow_verac_warspear.ob2
src/models/human/weapons/human_weapons_barrow_verac_wraith_spear.ob2
src/models/human/weapons/human_weapons_basket_of_easter_eggs.ob2
src/models/human/weapons/human_weapons_bday_balloons.ob3
src/models/human/weapons/human_weapons_beer.ob2
src/models/human/weapons/human_weapons_beer_glass_empty.ob2
src/models/human/weapons/human_weapons_beer_glass_full.ob2
src/models/human/weapons/human_weapons_beerkeg.ob2
src/models/human/weapons/human_weapons_bench.ob2
src/models/human/weapons/human_weapons_bird_caller.ob2
src/models/human/weapons/human_weapons_black_knight_dossier.ob2
src/models/human/weapons/human_weapons_blackjack.ob2
src/models/human/weapons/human_weapons_blackjack_assault_rogue_trader.ob2
src/models/human/weapons/human_weapons_blackjack_defend_rogue_trader.ob2
src/models/human/weapons/human_weapons_blast_furnace_air_pump.ob2
src/models/human/weapons/human_weapons_blast_furnace_conveyer_cycle.ob2
src/models/human/weapons/human_weapons_blood_chiginki.ob3
src/models/human/weapons/human_weapons_blood_scythe.ob3
src/models/human/weapons/human_weapons_blood_scythe_uncharged.ob3
src/models/human/weapons/human_weapons_bludgeon.b3
src/models/human/weapons/human_weapons_blueritesword.ob2
src/models/human/weapons/human_weapons_bobcat.ob3
src/models/human/weapons/human_weapons_bone_club.ob2
src/models/human/weapons/human_weapons_bone_spear.ob2
src/models/human/weapons/human_weapons_book.ob2
src/models/human/weapons/human_weapons_book_staff.ob3
src/models/human/weapons/human_weapons_boomerrang.ob2
src/models/human/weapons/human_weapons_bucket_left.ob2
src/models/human/weapons/human_weapons_bucket_tar.ob2
src/models/human/weapons/human_weapons_bug_lantern.ob2
src/models/human/weapons/human_weapons_bug_lantern_glow.ob2
src/models/human/weapons/human_weapons_burgh_rod_control.ob2
src/models/human/weapons/human_weapons_butterfly_jar.ob2
src/models/human/weapons/human_weapons_butterfly_net.ob2
src/models/human/weapons/human_weapons_cabbage.ob3
src/models/human/weapons/human_weapons_cabbage_book.ob3
src/models/human/weapons/human_weapons_cabbage_mage.ob3
src/models/human/weapons/human_weapons_cabbage_overhead.ob3
src/models/human/weapons/human_weapons_calquat_keg.ob2
src/models/human/weapons/human_weapons_calquat_keg_left.ob2
src/models/human/weapons/human_weapons_camorras_axe.ob3
src/models/human/weapons/human_weapons_canoeing_paddle.ob2
src/models/human/weapons/human_weapons_castlewars_banner_green.ob3
src/models/human/weapons/human_weapons_castlewars_banner_saradomin.ob2
src/models/human/weapons/human_weapons_castlewaras_banner_zamorak.ob2
src/models/human/weapons/human_weapons_cattleprod.ob2
src/models/human/weapons/human_weapons_chair.ob2
src/models/human/weapons/human_weapons_chapion_ghoul_club.ob2
src/models/human/weapons/human_weapons_champion_skeleton_bow.ob2
src/models/human/weapons/human_weapons_champion_zombie_arm.ob2
src/models/human/weapons/human_weapons_charcoal.ob2
src/models/human/weapons/human_weapons_cherican.ob3
src/models/human/weapons/human_weapons_chicken.ob2
src/models/human/weapons/human_weapons_chicken_drumstick.ob2
src/models/human/weapons/human_weapons_chinchompa.ob2
src/models/human/weapons/human_weapons_chisel.ob2
src/models/human/weapons/human_weapons_chocolate_bar.ob2
src/models/human/weapons/human_weapons_clawhammer.ob2
src/models/human/weapons/human_weapons_cleaver.ob2
src/models/human/weapons/human_weapons_clipboard.ob2
src/models/human/weapons/human_weapons_clipboardandpen.ob3
src/models/human/weapons/human_weapons_contact_kerris.ob2
src/models/human/weapons/human_weapons_contact_kerris_poison.ob2
src/models/human/weapons/human_weapons_contact_sophanem_guards_cutlass_female.ob2
src/models/human/weapons/human_weapons_crab_claw.ob2
src/models/human/weapons/human_weapons_craws_bow.ob3
src/models/human/weapons/human_weapons_craws_bow_charged.ob3
src/models/human/weapons/human_weapons_crystal_bow.ob2
src/models/human/weapons/human_weapons_crystal_shield.ob2
src/models/human/weapons/human_weapons_cudgel.ob2
src/models/human/weapons/human_weapons_dagannoth_bow.ob2
src/models/human/weapons/human_weapons_dagannoth_bow_female.ob2
src/models/human/weapons/human_weapons_dh_sword_ornate.ob2
src/models/human/weapons/human_weapons_dh-sword.ob2
src/models/human/weapons/human_weapons_dibber.ob2
src/models/human/weapons/human_weapons_dk_witch_broomstick.ob2
src/models/human/weapons/human_weapons_dragon_dagger.ob2
src/models/human/weapons/human_weapons_dragon_defender.ob3
src/models/human/weapons/human_weapons_dragon_defender_woman.ob3
src/models/human/weapons/human_weapons_dragon_halberd.ob2
src/models/human/weapons/human_weapons_dragon_hasta.ob3
src/models/human/weapons/human_weapons_dragon_kiteshield.ob3
src/models/human/weapons/human_weapons_dragon_kiteshield_female.ob3
src/models/human/weapons/human_weapons_dragon_mace.ob2
src/models/human/weapons/human_weapons_dragon_scimitar.ob2
src/models/human/weapons/human_weapons_dragon_smallaxe.ob2
src/models/human/weapons/human_weapons_dragon_smallaxe_broke.ob2
src/models/human/weapons/human_weapons_dragon_smallaxe_handle_macro.ob2
src/models/human/weapons/human_weapons_dragon_spear.ob2
src/models/human/weapons/human_weapons_dragon_sq_shield.ob2
src/models/human/weapons/human_weapons_dragon_tknife.ob3
src/models/human/weapons/human_weapons_dragon_tknife_off.ob3
src/models/human/weapons/human_weapons_dragon_two_handed_sword.ob2
src/models/human/weapons/human_weapons_dragon_warhammer.ob3
src/models/human/weapons/human_weapons_dragonaxe.ob2
src/models/human/weapons/human_weapons_dragonfire_ward.ob3
src/models/human/weapons/human_weapons_dragonfireshield.ob2
src/models/human/weapons/human_weapons_dragonhunter_lance.ob3
src/models/human/weapons/human_weapons_dragonsword.ob2
src/models/human/weapons/human_weapons_drive_throne.ob2
src/models/human/weapons/human_weapons_dttd_bone_crossbow.ob2
src/models/human/weapons/human_weapons_dttd_bone_dagger.ob2
src/models/human/weapons/human_weapons_dttd_bone_dagger_p.ob2
src/models/human/weapons/human_weapons_dttd_crate.ob2
src/models/human/weapons/human_weapons_dttd_ham_goblet.ob2
src/models/human/weapons/human_weapons_dttd_ham_goblet_rhand.ob3
src/models/human/weapons/human_weapons_dttd_zanik_bone_crossbow.ob2
src/models/human/weapons/human_weapons_dttd_zanik_tog_bowl.ob2
src/models/human/weapons/human_weapons_dualclaws.ob2
src/models/human/weapons/human_weapons_dust_staff.ob3
src/models/human/weapons/human_weapons_dwarf_blunt_axe.ob2
src/models/human/weapons/human_weapons_dwarf_chair.ob2
src/models/human/weapons/human_weapons_dwarf_sharp_axe.ob2
src/models/human/weapons/human_weapons_dye_bottle_ft.ob2
src/models/human/weapons/human_weapons_dye_bottle_night.ob2
src/models/human/weapons/human_weapons_earthwarriormace.ob2
src/models/human/weapons/human_weapons_ectophial_teleport.ob3

src/models/skill_slayer/npc/grotesque_guardians/

src/models/skill_slayer/npc/grotesque_guardians/grotesque_guardians.base

src/models/skill_slayer/slayer_tower_roof/slayer_tower_roof_wallkit/

src/models/skill_slayer/slayer_tower_roof/slayer_tower_roof_wallkit/slayer_tower_roof_wall_arch_corner_01.ob3
src/models/skill_slayer/slayer_tower_roof/slayer_tower_roof_wallkit/slayer_tower_roof_wall_arch_corner_01_2.ob3
src/models/skill_slayer/slayer_tower_roof/slayer_tower_roof_wallkit/slayer_tower_roof_wall_arch_straight_01_1.ob3
src/models/skill_slayer/slayer_tower_roof/slayer_tower_roof_wallkit/slayer_tower_roof_wall_arch_straight_02_1.ob3
src/models/skill_slayer/slayer_tower_roof/slayer_tower_roof_wallkit/slayer_tower_roof_wall_arch_straight_03_1.ob3
src/models/skill_slayer/slayer_tower_roof/slayer_tower_roof_wallkit/slayer_tower_roof_wall_corner_01.ob3
src/models/skill_slayer/slayer_tower_roof/slayer_tower_roof_wallkit/slayer_tower_roof_wall_corner_02.ob3
src/models/skill_slayer/slayer_tower_roof/slayer_tower_roof_wallkit/slayer_tower_roof_wall_pony_corner_01.ob3
src/models/skill_slayer/slayer_tower_roof/slayer_tower_roof_wallkit/slayer_tower_roof_wall_pony_corner_01_2.ob3
src/models/skill_slayer/slayer_tower_roof/slayer_tower_roof_wallkit/slayer_tower_roof_wall_pony_corner_straight_01_1.ob3
src/models/skill_slayer/slayer_tower_roof/slayer_tower_roof_wallkit/slayer_tower_roof_wall_pony_corner_straight_02_1.ob3
src/models/skill_slayer/slayer_tower_roof/slayer_tower_roof_wallkit/slayer_tower_roof_wall_straight_01_1.ob3
src/models/skill_slayer/slayer_tower_roof/slayer_tower_roof_wallkit/slayer_tower_roof_wall_straight_02_1.ob3

src/scripts/

src/scripts/allowlogin.rs2
src/scripts/calcqp.rs2
src/scripts/drop.rs2

src/scripts/areas/area_fossil/config/

src/scripts/areas/area_fossil/config/fossil.area
src/scripts/areas/area_fossil/config/fossil.constant
src/scripts/areas/area_fossil/config/fossil.enum
src/scripts/areas/area_fossil/config/fossil.inv
src/scripts/areas/area_fossil/config/fossil.loc
src/scripts/areas/area_fossil/config/fossil.npc
src/scripts/areas/area_fossil/config/fossil.obj
src/scripts/areas/area_fossil/config/fossil.seq
src/scripts/areas/area_fossil/config/fossil.spotanim
src/scripts/areas/area_fossil/config/fossil.varbit
src/scripts/areas/area_fossil/config/fossil.varp
src/scripts/areas/area_fossil/config/fossil_npc.seq
src/scripts/areas/area_fossil/config/fossil_pvn.npc
src/scripts/areas/area_fossil/config/fossil_reward.obj
src/scripts/areas/area_fossil/config/fossil_scene.loc
src/scripts/areas/area_fossil/config/fossil_underwater.loc
src/scripts/areas/area_fossil/config/wyvern_shield.varobj

src/scripts/areas/kebos/brimstone/

src/scripts/areas/kebos/brimstone/brimstone.obj

src/scripts/drop tables/

src/scripts/drop tables/_drops.rs2
src/scripts/drop tables/bandit_leader.rs2
src/scripts/drop tables/barbarian.rs2
src/scripts/drop tables/battle_tortoises_drops.rs2
src/scripts/drop tables/bear.rs2
src/scripts/drop tables/bearded_dark_wizard.rs2
src/scripts/drop tables/black_demon.rs2
src/scripts/drop tables/black_dragon.rs2
src/scripts/drop tables/black_knight.rs2
src/scripts/drop tables/brawling_bandit.rs2
src/scripts/drop tables/bronzedragon.rs2
src/scripts/drop tables/cave_goblins.rs2
src/scripts/drop tables/chaos_druid.rs2
src/scripts/drop tables/chaos_druid_warrior.rs2
src/scripts/drop tables/chicken.rs2
src/scripts/drop tables/citizens.rs2
src/scripts/drop tables/cosmic_entity.rs2
src/scripts/drop tables/cow.rs2
src/scripts/drop tables/dagganoths.rs2
src/scripts/drop tables/dark_warrior.rs2
src/scripts/drop tables/deal_pirate_drops.rs2
src/scripts/drop tables/druid.rs2
src/scripts/drop tables/dwarf_chaos.rs2
src/scripts/drop tables/dwarf_mountain.rs2
src/scripts/drop tables/dwarf_normal.rs2

src/scripts/floors/

src/scripts/floors/overlay.flo
src/scripts/floors/underlay.flu

src/scripts/skill_slayer/

src/scripts/skill_slayer/kill_log.if3
src/scripts/skill_slayer/slayer.area
src/scripts/skill_slayer/slayer.constant

src/scripts/gargoyle_boss/config/

src/scripts/skill_slayer/gargoyle_boss/config/garg_boss.constant
src/scripts/skill_slayer/gargoyle_boss/config/garg_boss.controller
src/scripts/skill_slayer/gargoyle_boss/config/garg_boss.npc
src/scripts/skill_slayer/gargoyle_boss/config/garg_boss.obj
src/scripts/skill_slayer/gargoyle_boss/config/garg_boss.varbit
src/scripts/skill_slayer/gargoyle_boss/config/garg_boss.varp
src/scripts/skill_slayer/gargoyle_boss/config/garg_boss.vars
src/scripts/skill_slayer/gargoyle_boss/config/grotesque_guardians.seq
src/scripts/skill_slayer/gargoyle_boss/config/slayer_tower_roof.loc