MisRCON

RCON utility for Miscreated

Download as .zip Download as .tar.gz View on GitHub

MisRCON

MisRCON

RCON utility for Miscreated a Sandbox Survival Game on CRYENGINE

Download

Download the latest version here

Features

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