@infernus/mapandreas
v0.2.1
Published
A wrapper of the popular SA-MP MapAndreas plugin for samp-node.
Downloads
12
Maintainers
Readme
@infernus/mapandreas
A wrapper of the popular SA-MP MapAndreas plugin for samp-node.
Getting started
pnpm add @infernus/core @infernus/mapandreas
Example
import { GameMode } from "@infernus/core";
import { MapAndreas, MapAndreasMode } from "@infernus/mapandreas";
GameMode.onInit(({ next }) => {
MapAndreas.init(MapAndreasMode.Full, "scriptfiles/SAFull.hmap");
let pos = MapAndreas.findAverageZ(20.001, 25.006);
if (pos) {
// Found position - position saved in 'pos'
}
return next();
});