Skip to content

Interface Management system for RuneScape Private Servers

License

Notifications You must be signed in to change notification settings

c-Pture/RSPS-InterfaceManager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 

Repository files navigation

STAR InterfaceManager

Java-build CSharp-build

STAR About the InterfaceManager

The InterfaceManager is a simple implementation to help you manage interface handling in RuneScape Private Servers.

The main goal is to make it easier to manage and track the interfaces of the users but also to prevent cheating using a modified client. If the client-side openes an interface and the user wants to use it (Request button presses etc.), the server can then simply double check the information by checking with the interface manager if the interface is indeed open or not.

Click here for progress

Gameframe

  • Implement the usage of the gameframe
  • Updating the gameframe interfaces based on display mode

General Interfaces

  • Implement the usage of screen interfaces + testing
  • Implement the usage of chatbox interfaces + testing
  • Implement the usage of tab interfaces + testing

Attributes

  • Add attribute system for dynamic interface attributes 🎉
  • Add basic attributes + handling and checking
  • Add advanced attributes + handling and checking

Getting started

Adjustments to the code

STAR Important: Before you start sending any interfaces make sure to initialize everything properly.

  • Adjust the code to your needs and fill in the required methods from your source such as open and close interface packets The positions are tagged within the source code and you can find them by the following tag

    // !-- IMPORTANT --!
    

Example usage

  • Sending an Interface

    player.getInterfaceManager().openInterface(new DefaultRSInterface(id)
                                .setAttribute("WALKABLE", false)
                                .setAttribute("WINDOW_ID", 548)
                                .setAttribute("CHILD_ID", 8)
                                .setAttribute("GAMEFRAME", false)
                                .finalizeOperation());
    
     
  • Getting the current Interface Id

      player.getActionSender().sendMessage("The current onscreen interface id is: " 
                                            + player.getInterfaceManager().getCurrentOnScreenInterface().getInterfaceId());
                                            
      player.getActionSender().sendMessage("The current chatbox interface id is: " 
                                            + player.getInterfaceManager().getCurrentChatBoxInterface().getInterfaceId());
    

Attributes

Attribute Type Essential Description Minimum version required
WINDOW_ID Integer X Set the window Id of the interface 1.0.0-beta.1
CHILD_ID Integer X Set the child Id of the interface 1.0.0-beta.1
WALKABLE Boolean X Set true or false to specify if this interface will be closed when walking or not 1.0.0-beta.1
GAMEFRAME Boolean X Set true or false to specify if the interface is part of the gameframe 1.0.0-beta.1
LOCKED Boolean Set true or false to specify if the interface can be overwritten by the next interface / If it needs to be closed properly before opening a new interface 1.2.0

About

Interface Management system for RuneScape Private Servers

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published