
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A JavaScript library for creating and managing Highrise bots.
The Highrise SDK provides a comprehensive set of tools and functions to interact with the Highrise game platform. It allows developers to create bots that can perform various actions within the Highrise environment, such as sending messages, managing user interactions, handling in-game economy, and more.
To install the Highrise SDK, use npm:
npm install hr-sdk
Here's a basic example of how to use the Highrise SDK:
import { HR, Event } from 'hr-sdk';
const bot = new HR();
bot.on(Event.Ready, (data) => {
console.log("bot is connected to the server", data)
})
bot.on(Event.Chat, ({user, message, whisper}) => {
console.log('Received chat create event: @' + user.username + ": " + message);
});
bot.connect('YOUR_BOT_TOKEN', 'YOUR_ROOM_ID');
The Highrise SDK supports the following functions:
Chat and Communication
message: Send a chat messagewhisper: Send a private message to a useremote: Perform an emote actionreaction: Send a reactionUser Management
getRoomUsers: Get a list of users in the current roomgetRoomUserByUsername: Find a user in the room by usernamegetRoomUserByUserId: Find a user in the room by user IDmoveUserToRoom: Move a user to another roomRoom Interactions
sit: Make the bot sit on a specific anchorwalk: Make the bot walk to a specific positionteleport: Teleport the bot to a specific positionEconomy and Transactions
getWallet: Get the bot's wallet informationgetGold: Get the bot's gold balancegetBoostToken: Get the bot's boost token balancegetVoiceToken: Get the bot's voice token balancetipUser: Send a tip to a userbuyVoice: Purchase voice timebuyBoost: Purchase a room boostbuyItem: Purchase an item from the shopModeration and Privileges
modAction: Perform a moderation actiongetRoomPrivilege: Get a user's room privilegeschangeRoomPrivilege: Change a user's room privilegesInventory and Outfits
getBackpack: Get a user's backpack contentsgetOutfit: Get a user's current outfitsetOutfit: Set the bot's outfitgetInventory: Get the bot's inventoryVoice Chat
inviteSpeaker: Invite a user to speakremoveSpeaker: Remove a user from speakingMessaging System
getConversation: Get conversation historysendMessage: Send a message in a conversationsendBulkMessage: Send a message to multiple conversationsgetMessage: Get a specific messageleaveConversation: Leave a conversationMiscellaneous
channel: Perform channel-related actionsFor detailed documentation on each function and its parameters, please refer to our API Documentation.
We welcome contributions to the Highrise SDK! Please mail Email for more information on how to get started.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A JavaScript library for Highrise bot.
We found that hr-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.