Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 823 Bytes

README.md

File metadata and controls

21 lines (13 loc) · 823 Bytes

intransigentms-scripts

Scripts for the IntransigentMS Maplestory private server.

Main repo (server code) can be found here: https://github.com/NoetherEmmy/intransigentms

These scripts are evaluated by the Nashorn engine, so everything here must be compliant with the ECMAScript 6 standard, with a few exceptions for special features of Nashorn. Notably:

  • Importing classes/types

    const MapleCharacter = Java.type("net.sf.odinms.client.MapleCharacter");
  • Printing to the console for debugging purposes

    print("test");

For coding style, see the guidelines.