New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@infernus/colandreas

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@infernus/colandreas

A wrapper of the popular SA-MP ColAndreas plugin for samp-node.

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
1
Created
Source

@infernus/colandreas

npm npm npm bundle size

A wrapper of the popular SA-MP ColAndreas plugin for samp-node.

Getting started

pnpm add @infernus/core @infernus/colandreas

Example

import { GameMode, PlayerEvent } from "@infernus/core";
import { init, isPlayerInWater } from "@infernus/colandreas";

GameMode.onInit(({ next }) => {
  init();
  return next();
});

PlayerEvent.onCommandText("water", ({ player, next }) => {
  const info = isPlayerInWater(player);
  if (info)
    player.sendClientMessage(
      "#f00",
      `you are in water, ${JSON.stringify(info)}`
    );
  else {
    player.sendClientMessage("#0f0", "you are not in water");
  }
  return next();
});

Keywords

samp

FAQs

Package last updated on 28 Jan 2026

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