Redscript
HomeGitHubDiscord
  • Home
  • Getting Started
    • Downloads
    • Setup for VSCode
    • Setup for JetBrains IDEs
    • How to start REDscripting
      • Step 1: Mod structure
      • Step 2: Finding the right class
  • Language
    • Intro
      • REDscript in 2 minutes
      • How to create a hook
        • Things to hook
    • Language Features
      • Intrinsics
      • Loops
      • Strings
      • Modules
      • Annotations
      • Conditional compilation
      • Configurable user hints
    • Built-in Types
    • Built-in Functions
      • Math
      • Random
      • Utilities
  • References and examples
    • Common Patterns
      • Safe downcasting
      • Class constructors
      • Hash maps
      • Heterogeneous array literals
      • Scriptable systems (singletons)
      • DelaySystem and DelayCallback
      • Generic callbacks
      • Persistence
    • Logging
    • UI Scripting
      • Logging Widget Trees
      • Popups
    • Vehicle system
    • Weapons
    • Codeware callbacks
      • Scriptables comparison
    • Libraries
    • Gameplay
      • Sleeping and Skipping Time
  • Help
    • Community
    • Troubleshooting
Powered by GitBook
On this page
  1. References and examples

Libraries

This page references a list of useful Redscript libraries/plugins you can use to create mods.

PreviousScriptables comparisonNextGameplay

Last updated 1 year ago

Was this helpful?

CtrlK

Was this helpful?

Last update: 2024-04-13

Library
Author
Links
Description

Codeware

psiberx

Nexus | GitHub

A library and framework for creating Redscript and CET mods.

RedFileSystem

Rayshader

Nexus | GitHub

A library for providing access to the file system using read/write operations. It supports UTF8 text and Json formats. It can be used to create Redscript and CET mods.

RedHttpClient

Rayshader

Nexus | GitHub

A library to send HTTP requests. You can access web APIs to improve your mods with web content. It can be used to create Redscript and CET mods.

RedData

Rayshader

Nexus | GitHub

A library to parse / create / format Json data using Redscript. (CET already provides json features out-of-the-box). It is used by RedHttpClient and RedFileSystem.