├── .gitattributes ├── .gitignore ├── .simbapackage ├── Antiban.simba ├── Bank.simba ├── Chat.simba ├── Combat.simba ├── Constants.simba ├── Equipment.simba ├── GameTab.simba ├── Ground.simba ├── Interfaces.simba ├── Internal ├── Functions.simba ├── Hooks.simba ├── RSActor.simba ├── RSAnimatedModel.simba ├── RSAnimation.simba ├── RSAnimationFrame.simba ├── RSAnimationSequence.simba ├── RSAnimationSkeleton.simba ├── RSCache.simba ├── RSCamera.simba ├── RSClient.simba ├── RSCollisionMap.simba ├── RSCombatInfo.simba ├── RSConstants.simba ├── RSDynamicObject.simba ├── RSEntity.simba ├── RSGameInstance.simba ├── RSGameShell.simba ├── RSGraphics.simba ├── RSGraphicsObject.simba ├── RSGroundObject.simba ├── RSHashTable.simba ├── RSItem.simba ├── RSItemDefinition.simba ├── RSItemNode.simba ├── RSIterableHashTable.simba ├── RSLinkedList.simba ├── RSLocalPlayer.simba ├── RSMath.simba ├── RSMenu.simba ├── RSModel.simba ├── RSNPC.simba ├── RSNPCDefinition.simba ├── RSNameInfo.simba ├── RSNode.simba ├── RSNodeDeque.simba ├── RSObject.simba ├── RSObjectDefinition.simba ├── RSPlayer.simba ├── RSPlayerDefinition.simba ├── RSPlayerUpdateManager.simba ├── RSProjectile.simba ├── RSQueue.simba ├── RSScene.simba ├── RSSceneTile.simba ├── RSStructures.simba ├── RSText.simba ├── RSTile.simba ├── RSVarbitDefinition.simba ├── RSVarcs.simba ├── RSVarps.simba ├── RSWidget.simba ├── RSWidgetNode.simba ├── Reflection.simba ├── Setup.simba ├── Static.simba ├── StaticFunctions.simba └── Structures.simba ├── Inventory.simba ├── LICENSE ├── Login.simba ├── Magic.simba ├── Mainscreen.simba ├── Menu.simba ├── Model.simba ├── Mouse.simba ├── NPC.simba ├── Objects.simba ├── PathFinding.simba ├── Player.simba ├── Prayer.simba ├── README.md ├── Reflection.simba ├── ReflectionTest.simba ├── Skills.simba ├── Timing.simba ├── Updater.simba ├── Walking.simba └── Worlds.simba /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | *.Plugins -------------------------------------------------------------------------------- /.simbapackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/.simbapackage -------------------------------------------------------------------------------- /Antiban.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Antiban.simba -------------------------------------------------------------------------------- /Bank.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Bank.simba -------------------------------------------------------------------------------- /Chat.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Chat.simba -------------------------------------------------------------------------------- /Combat.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Combat.simba -------------------------------------------------------------------------------- /Constants.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Constants.simba -------------------------------------------------------------------------------- /Equipment.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Equipment.simba -------------------------------------------------------------------------------- /GameTab.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/GameTab.simba -------------------------------------------------------------------------------- /Ground.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Ground.simba -------------------------------------------------------------------------------- /Interfaces.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Interfaces.simba -------------------------------------------------------------------------------- /Internal/Functions.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/Functions.simba -------------------------------------------------------------------------------- /Internal/Hooks.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/Hooks.simba -------------------------------------------------------------------------------- /Internal/RSActor.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSActor.simba -------------------------------------------------------------------------------- /Internal/RSAnimatedModel.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSAnimatedModel.simba -------------------------------------------------------------------------------- /Internal/RSAnimation.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSAnimation.simba -------------------------------------------------------------------------------- /Internal/RSAnimationFrame.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSAnimationFrame.simba -------------------------------------------------------------------------------- /Internal/RSAnimationSequence.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSAnimationSequence.simba -------------------------------------------------------------------------------- /Internal/RSAnimationSkeleton.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSAnimationSkeleton.simba -------------------------------------------------------------------------------- /Internal/RSCache.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSCache.simba -------------------------------------------------------------------------------- /Internal/RSCamera.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSCamera.simba -------------------------------------------------------------------------------- /Internal/RSClient.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSClient.simba -------------------------------------------------------------------------------- /Internal/RSCollisionMap.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSCollisionMap.simba -------------------------------------------------------------------------------- /Internal/RSCombatInfo.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSCombatInfo.simba -------------------------------------------------------------------------------- /Internal/RSConstants.simba: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Internal/RSDynamicObject.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSDynamicObject.simba -------------------------------------------------------------------------------- /Internal/RSEntity.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSEntity.simba -------------------------------------------------------------------------------- /Internal/RSGameInstance.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSGameInstance.simba -------------------------------------------------------------------------------- /Internal/RSGameShell.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSGameShell.simba -------------------------------------------------------------------------------- /Internal/RSGraphics.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSGraphics.simba -------------------------------------------------------------------------------- /Internal/RSGraphicsObject.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSGraphicsObject.simba -------------------------------------------------------------------------------- /Internal/RSGroundObject.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSGroundObject.simba -------------------------------------------------------------------------------- /Internal/RSHashTable.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSHashTable.simba -------------------------------------------------------------------------------- /Internal/RSItem.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSItem.simba -------------------------------------------------------------------------------- /Internal/RSItemDefinition.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSItemDefinition.simba -------------------------------------------------------------------------------- /Internal/RSItemNode.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSItemNode.simba -------------------------------------------------------------------------------- /Internal/RSIterableHashTable.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSIterableHashTable.simba -------------------------------------------------------------------------------- /Internal/RSLinkedList.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSLinkedList.simba -------------------------------------------------------------------------------- /Internal/RSLocalPlayer.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSLocalPlayer.simba -------------------------------------------------------------------------------- /Internal/RSMath.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSMath.simba -------------------------------------------------------------------------------- /Internal/RSMenu.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSMenu.simba -------------------------------------------------------------------------------- /Internal/RSModel.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSModel.simba -------------------------------------------------------------------------------- /Internal/RSNPC.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSNPC.simba -------------------------------------------------------------------------------- /Internal/RSNPCDefinition.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSNPCDefinition.simba -------------------------------------------------------------------------------- /Internal/RSNameInfo.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSNameInfo.simba -------------------------------------------------------------------------------- /Internal/RSNode.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSNode.simba -------------------------------------------------------------------------------- /Internal/RSNodeDeque.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSNodeDeque.simba -------------------------------------------------------------------------------- /Internal/RSObject.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSObject.simba -------------------------------------------------------------------------------- /Internal/RSObjectDefinition.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSObjectDefinition.simba -------------------------------------------------------------------------------- /Internal/RSPlayer.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSPlayer.simba -------------------------------------------------------------------------------- /Internal/RSPlayerDefinition.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSPlayerDefinition.simba -------------------------------------------------------------------------------- /Internal/RSPlayerUpdateManager.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSPlayerUpdateManager.simba -------------------------------------------------------------------------------- /Internal/RSProjectile.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSProjectile.simba -------------------------------------------------------------------------------- /Internal/RSQueue.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSQueue.simba -------------------------------------------------------------------------------- /Internal/RSScene.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSScene.simba -------------------------------------------------------------------------------- /Internal/RSSceneTile.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSSceneTile.simba -------------------------------------------------------------------------------- /Internal/RSStructures.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSStructures.simba -------------------------------------------------------------------------------- /Internal/RSText.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSText.simba -------------------------------------------------------------------------------- /Internal/RSTile.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSTile.simba -------------------------------------------------------------------------------- /Internal/RSVarbitDefinition.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSVarbitDefinition.simba -------------------------------------------------------------------------------- /Internal/RSVarcs.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSVarcs.simba -------------------------------------------------------------------------------- /Internal/RSVarps.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSVarps.simba -------------------------------------------------------------------------------- /Internal/RSWidget.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSWidget.simba -------------------------------------------------------------------------------- /Internal/RSWidgetNode.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/RSWidgetNode.simba -------------------------------------------------------------------------------- /Internal/Reflection.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/Reflection.simba -------------------------------------------------------------------------------- /Internal/Setup.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/Setup.simba -------------------------------------------------------------------------------- /Internal/Static.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/Static.simba -------------------------------------------------------------------------------- /Internal/StaticFunctions.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/StaticFunctions.simba -------------------------------------------------------------------------------- /Internal/Structures.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Internal/Structures.simba -------------------------------------------------------------------------------- /Inventory.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Inventory.simba -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/LICENSE -------------------------------------------------------------------------------- /Login.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Login.simba -------------------------------------------------------------------------------- /Magic.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Magic.simba -------------------------------------------------------------------------------- /Mainscreen.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Mainscreen.simba -------------------------------------------------------------------------------- /Menu.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Menu.simba -------------------------------------------------------------------------------- /Model.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Model.simba -------------------------------------------------------------------------------- /Mouse.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Mouse.simba -------------------------------------------------------------------------------- /NPC.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/NPC.simba -------------------------------------------------------------------------------- /Objects.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Objects.simba -------------------------------------------------------------------------------- /PathFinding.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/PathFinding.simba -------------------------------------------------------------------------------- /Player.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Player.simba -------------------------------------------------------------------------------- /Prayer.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Prayer.simba -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/README.md -------------------------------------------------------------------------------- /Reflection.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Reflection.simba -------------------------------------------------------------------------------- /ReflectionTest.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/ReflectionTest.simba -------------------------------------------------------------------------------- /Skills.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Skills.simba -------------------------------------------------------------------------------- /Timing.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Timing.simba -------------------------------------------------------------------------------- /Updater.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Updater.simba -------------------------------------------------------------------------------- /Walking.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Walking.simba -------------------------------------------------------------------------------- /Worlds.simba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brandon-T/Reflection/HEAD/Worlds.simba --------------------------------------------------------------------------------