A library containing constants for animations, interfaces, graphics, items, networking, npcs, scenery, and sounds.
Find a file
2022-05-20 15:28:41 +00:00
src/main/kotlin/org/rs09/consts Added toy horse animation names 2021-12-19 04:17:26 -05:00
.gitignore Initial Commit 2021-12-19 03:37:49 -05:00
build.gradle Initial Commit 2021-12-19 03:37:49 -05:00
gradle.properties Initial Commit 2021-12-19 03:37:49 -05:00
gradlew Initial Commit 2021-12-19 03:37:49 -05:00
gradlew.bat Initial Commit 2021-12-19 03:37:49 -05:00
LICENSE Add LICENSE 2022-05-20 15:28:41 +00:00
README.md Update README.md 2021-12-19 09:08:55 +00:00
settings.gradle Initial Commit 2021-12-19 03:37:49 -05:00

RS09 Constants Library

A library containing constants for animations, interfaces, graphics, items, networking, npcs, scenery, and sounds.

Note: Interfaces, Items, NPCs, and Scenery are already named. If you have a suggestion, or want to be more specific with the naming for one of those, post an issue.


Naming Conventions

Animations:

const val Entity/Scenery_Name_Describe_Animation_AnimationId = AnimationId

Example:

    const val HUMAN_FLAP_4280 = 4280
    const val TRAIBORN_SUMMON_CABINET_4602 = 4602

Graphics/Sounds:

const val Describe_Sound/GFX_Sound/GFXId = Sound/GFXId

Example:

    // GFX:
    const val RECEIVE_SILVERLIGHT_778 = 778
    const val ZOMBIE_HAND_1244 = 1244

    // Sound:
    const val OPEN_CABINET_44 = 44
    const val OPEN_HEAVY_54 = 54
    const val WATER_BEING_POURED_2982 = 2982