Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

agescx

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agescx

Age of empires 2 scenario de/compress module for node and browser

  • 1.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

AgeScxJS

Greenkeeper badge Build Status

Age of empires 2 scenario de/compress module for node and browser

BigLogo

About

Set of tools and utilities to work with .scx files.

The main reason, why was this project created, is lack of functionality, which AoE2 in-game editor offers. You can't access scenario programmatically via some API. Also, scripts (triggers) in AoE2 are pretty useless, because you have to handle a thousands of them when you're creating a big scenario with RPG element. But after some time, triggers become more-like spaghetti code. That means you're not sure, which trigger is not needed, you have to click through all of them to find out. AgeScxJS doesn't solve this problem, but you can use Javascript to create your own script language. You can also generate scenarios programmatically (mazes, convert bitmap images, random, etc...). With AgeScxJS you can build your own web application for editing/converting or viewing scenarios. There's no restrictions what you can do with those tools.

Tools

AgeScx comes with set of different tools:

  • IO read / write scenarios
  • Checker check for errors/warning in scenario
  • Diff differences between two scenarios
  • Converter convert scenario to .json, .xml or .yaml
  • Paint paint your minimap
  • Data useful data
  • Stats scenario stats in human-readable format

Examples

import { readFileSync } from 'fs';
import { readScenario } from 'agescx';

const file = readFileSync('../scenarios/1.21/aok/Castaway.scx');
const scenario = readScenario(file);

Others

Agescx has also several scenarios created in different Age of Empires 2 versions to test them. If you're curious in them or you want to test agescx functionality, go to Scenario Section

License (MIT)

See LICENSE

FAQs

Package last updated on 11 Apr 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc