Login failed. Please try again.

IMVU.JS

IMVU.JS

v0.1.0 Ready for Deployment

IMVU INTERACTIVE ROOMS

IMVU INTERACTIVE ROOMS

Power your IMVU rooms with AI-driven bots and 20+ features.

Documentation

Join our Discord Community and participate for free credits & exclusive rewards.

psychology

Artificial Intelligence

Intelligent bots that converse, learn, and have their own personality.

room_ai room_characterai room_npc
vpn_key

Custom Permissions

Total control over who can use which commands in your room.

room_commands room_permissions
handshake

Welcome Messages

Automatically greet your visitors with personalized messages.

room_welcome
security

Auto Moderation

Maintain order with chat filters and automatic kicks.

room_automod
bar_chart

Levels & XP

Leveling system, experience, and ranks for your community.

room_levels
pets

Virtual Pets

Loyal companions that your visitors can have in the room.

room_virtualpets
poll

Polls

Create polls and let the room decide in real-time.

room_polls
place

Spot Messages

Send specific messages based on the avatar's location spot.

room_spotsmsj
checkroom

Outfit Manager

Change and manage outfits quickly and easily.

room_outfits
group

Who's Here

Quickly visualize all avatars currently in the room.

room_here
history

History

See who has visited your room recently.

room_lastvisitors
terminal

Base Commands

Essential functions for interacting with the bot.

room_basiccommands
person_remove

Auto Kick

Automatically kick unwanted or misbehaving users.

room_autokick
timer_off

Anti-Park

Prevent inactive users from taking up room space.

room_antipark
how_to_reg

Vote Kick

Let the community decide if someone should be kicked.

room_votekick
code

Developer Lib

Crea tus propios bots personalizados con nuestra potente librería de JavaScript.

package: imvu.js
ESTABLISHING_LINK

Built for
Developers,
by Developers.

check_circle
Easy to Use

Simple TypeScript/JavaScript interface designed for beginners and pros.

check_circle
Event-Driven Architecture

Real-time reactive hooks for avatar movement, chat, and room state.

check_circle
Secure & Safe

Built-in token encryption and session management for autonomous bots.

source://bot-example.js
const IMVU = require('imvu.js');

// INITIALIZE_BOT
const imvu = new IMVU({ 
    outfit: [80, 191], 
    seat: "-1 2" 
});

// EVENT: READY
imvu.on('ready', () => {
    console.log(`Bot ${imvu.display_name} connected!`);
});

// EVENT: ON_USER_JOIN
imvu.on('join', async (user) => {
  imvu.say(`Welcome ${user.display_name} to my room!`);
});

// EXECUTE_LOGIN
imvu.login('YOUR_TOKEN');