Skip to content

Latest commit

 

History

History
executable file
·
65 lines (49 loc) · 3.53 KB

README.md

File metadata and controls

executable file
·
65 lines (49 loc) · 3.53 KB

MisRCON

MisRCON

RCON utility for Miscreated a Sandbox Survival Game on CRYENGINE

Download

Download the latest version here

Features

  • Schedule recurring or specific tasks to occur
    • Tasks can be an RCON command or javascript code
  • Send RCON commands
  • Whitelist/De-Whitelist Players
  • Ban/Kick Players
  • Keep notes and stats on players
  • View Game map and add custom markers/areas

Screenshots

Install

Grab the latest version from the repository and install it. Depending on the system it will install into a different default installation directory

Operating System Default Install Directory
Windows Users/username/ApplicationData/Local/Programs/MisRCON
Linux /usr/local/bin/MisRCON
Mac ?

Tasks

Tasks are just some javascript that runs and has access to dispatch, getState, and the task all passed into it

const func = (dispatch: Dispatch, getState: GetStateFunc) => {
  // Do any initialization here
  console.log('Initializing');
  const date = Date.now();
  return () => {
    // Anything that should run each task
    console.log('task 1');
  };
};

Developer Install

  • Clone the repository and cd into https://github.com/csprance/misrcon.git && cd misrcon
  • Install dependencies yarn
  • To start developing run yarn run dev
  • To get the build ready for release run yarn run make - This will take a while