🔥🔥 FIRE SALE – Limited-Time Offer! 🔥🔥

📢 Supercharge your Sngine platform with AI! Get our exclusive AI-powered plugin bundle designed to elevate your social network to the next level. 💰 Pricing Options: 🔹 Individual Plugin: $15 USD each 🔹 🧠 All-in-One Bundle: Only $70 USD via USDT (TRC20) — Save over 17%! ✅ Lifetime access included 🔄 1 year of updates (all current & future releases) ⚡ Instant delivery after QR payment 🚀 Ready to transform your Sngine experience? 🔐 Fast & secure QR payment 📲 Works with Trust Wallet, Binance, and most crypto wallets.
Resource icon

SELL 🧠 Smart Auto-Messenger per Fake User – Personalized AI Messaging for Sngine 1.3.1

No permission to download
This plugin allows multiple fake user profiles in a Sngine-based social network to automatically reply to private messages using AI. Below is a summary of the latest updates.


🆕 Latest Updates (Current Version)


✅ Added Features:

1. Support for multiple fake users (`fake_ids`)
The system automatically detects and handles incoming messages directed to a configurable list of fake profiles.

2. Automatic replies to recent private messages
The bot replies only to messages received in the last 10 minutes, and avoids responding more than once per conversation.

3. Compatibility with multiple AI engines
Now supports:
- `Groq` (LLaMA3)
- `Cohere` (Command-R)
- `Together.ai` (Mixtral 8x7B)
A random AI engine is selected per message to increase stylistic variety.

4. Real user name detection
The system fetches the sender’s first and last name so the bot can include it in the reply (e.g. “Hi Juan!”).

5. Bot name detection from the database
The bot no longer replies using a generic name like “Lucho”—it now retrieves its actual name from the database (`user_firstname + user_lastname`).

6. Prompt includes both user and bot names
The prompt sent to the AI now contains both participants’ names, making the conversation more realistic and context-aware.

7. Custom personalities per user_id
Each fake user can have a unique persona defined in the script, enabling tailored tone, style, and behavior.

8. Native Sngine notifications and typing support
Replies are sent using Sngine’s official message system (`post_conversation_message()`), triggering AJAX notifications, real-time typing, and proper message handling.

9. Ready for CRON or manual execution
The plugin can be run via cronjob or through a visual control panel (`index.php`).


## 📁 Included Files

- `responder.php` – Main AI responder script
- `index.php` – Optional manual execution interface
- `README.md` – This documentation


## 📌 Requirements

- PHP 7.4 or higher
- Sngine v3.5 or newer
- cURL enabled
- Valid API keys for Groq, Cohere, or Together


## ⚙️ Quick Configuration

Edit the top section of `responder.php`:

php
PHP:
$fake_ids = range(350, 360); // List of fake user IDs
$groqKey = 'YOUR_API_KEY';

PHP:
$personalities = [
  350 => "You're Ana, sweet and sensitive.",
  351 => "You're Tavo, spontaneous and playful."
];
Back
Top Bottom