Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

mtasa-sdk

jr1037MIT1.0.0

Node.js SDK for Multi Theft Auto: San Andreas

mta, sa, mtasa, san, andreas, multi, theft, auto, sdk, gta, gtasa

readme

mtasa-sdk v1.0.0

A module to facilitate calling http exported functions from MTA:SA servers.

Installation

var MTA = require('mtasa-sdk');

Usage

MTA Class

The module exports a class, the MTA class. Instantiating the class requires you to specify a host and port to the MTA:SA server.

Syntax:

MTA(host='localhost', port=22005, username='', password='') // Contrustor
MTA.prototype.call(resource_name, function_name, arguments={})

Example

var MTA = require('mtasa-sdk');

var myserver = new MTA(); // Connect to http://localhost:22005
myserver.call('resource', 'exportedFunction', ['arg1', 'arg2', 5, ['table']]);