• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Wa Gateway | Multi device BETA | MPWA MD

Wa Gateway | Multi device BETA | MPWA MD v6.5.0 Nulled

No permission to download
Hey guys, new to WA GAteway...

Could someone please guide me on how to install on Aapanel?
 
Anyone has contact form 7 addone or something else? I try Contact Form 7 Send to WhatsApp by solusipress that not working properly, payload is working but there are no renspond
 
i have finised my CF7 Plugin, i have another question as we already know whatsapp has a new feature there is themporary message which the message will disappered after 24 hours, anyone know how to make it on gateway?
 
i have finised my CF7 Plugin, i have another question as we already know whatsapp has a new feature there is themporary message which the message will disappered after 24 hours, anyone know how to make it on gateway?
this default baileys
JavaScript:
const WA_DEFAULT_EPHEMERAL = 86400; // 24 hours in seconds
// Assuming sock is your WhatsApp connection instance
await sock.sendMessage(jid, { text: 'hello' }, { ephemeralExpiration: WA_DEFAULT_EPHEMERAL });
 
  • Like
Reactions: bendfrozien
How to implement QR API to appear in HTML ?
there are 2 ways to make it, if you use
JavaScript:
const qrimg = require('qr-image');
you just load it into an image.src

if you use this, you have to convert it to base64 then load it into image.src
JavaScript:
const QRcode = require('qrcode');
 
this default baileys
JavaScript:
const WA_DEFAULT_EPHEMERAL = 86400; // 24 hours in seconds
// Assuming sock is your WhatsApp connection instance
await sock.sendMessage(jid, { text: 'hello' }, { ephemeralExpiration: WA_DEFAULT_EPHEMERAL });

hi bro, where to put this code? which file?
 
hi bro, where to put this code? which file?
This is a script snippet for sending messages using the method message will disappear after 24 hours.
You can use this function to send certain messages. I'll give you the complete script..
JavaScript:
const sendMessageDisappear = async (token, number, message) => {
const WA_DEFAULT_EPHEMERAL = 86400; // for 24 hours in seconds
    try {
        const sendingMessage = sock[token].sendMessage(number, message, { ephemeralExpiration: WA_DEFAULT_EPHEMERAL });
        console.log(sendingMessage);
        return sendingMessage;
    } catch (error) {
        console.log(error);
        return false;
    }
};
this is just an example..
 
  • Like
Reactions: ashr1
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock