Jump to content

Gusik Prasetyo

Members
  • Last visited

  • Posts

    435
  • Reputation

    73

Everything posted by Gusik Prasetyo

  1. I can. No problem when i make phonebook
  2. Mas, idcloudhost mpwa 709 sering iddle ato lancar2 aja? Hello sir @Magd Almuntaser I test on same hosting: V.7.0.9: use cronjob every 5 minutes but often iddle and i have to restart nodejs. When iddle, i can't run autoreply, aibot, api. V7.0.0 my whatsapp always connect even i don't use cronjob.
  3. How about at shared hosting mas? Can we apply it too?
  4. Goodbye aren. Thanks for giving me a chance to feel wonderful feeling πŸ˜‚πŸ€£πŸ˜‚πŸ€£ I try move on cepat cloud based on @Unicode recommend.
  5. How many hosting or vps do you have? I think you have a lot of to try MPWA πŸ˜†
  6. Yes sir, we are waiting for this. Thanks in advance. Its ok mas. Yang penting selalu connect πŸ˜‹
  7. After 12 hours still connected 😍 I use cronjob 4 and 5 minutes in both of my number 😁 Nodejs 16. I will terminate cronjob and see, still connected or back to iddle πŸ₯± Biarkan aja om. Mau jualan produk bajakan sebuah pilihan HALAL dan HARAM dalam mencari rejeki.
  8. Why he banned sir? He only tell us that someone sell this script (without permission.) after he make a post, there's permission from @Magd Almuntaser I think its not a mistake.
  9. I think its better using wasender method, developer killed user that used nulled version or unregistered version sir @Magd Almuntaser or is it ok to sell it?
  10. Selama ada keyword yg sama, maka semua akan tereksekusi. Cmiiw.
  11. Apakah sudah d pasang triggernya? Tidak terkirim? Pesan log nya apa mas?
  12. how do make it? possible for shared hosting? or only for vps? which nodejs and server.j2 that you use it?
  13. yes, so do i. my whatsapp number doesn't have notification if connect to MPWA
  14. vote number 2 sir, whatsapp gateway magd version 😊 awesome, thanks mas.. it works! thanks for your info sir, let me check ttmhost we are waiting for good news sir, and in my opinion you can rebrand this apps with your own.
  15. Yes mas but i think idcloudhost too expensive for me right now 🀫 May be next time i will try it.
  16. That a part of my .htaccess that always go to https:// mpwa.website / public I try remove the word: public, its make message not send πŸ˜‚ Sir @Magd Almuntaser mas @Unicode
  17. My mpwa always go to: https://mpwa.website/public How to solve to make https://mpwa.website ? @Magd Almuntaser
  18. this tutorial to make MPWA autoreply using google sheet plus apps script. 1. make new sheet file using this format (1st row) Keyword, Type, Message, File you can visit: https://docs.google.com/spreadsheets/d/1svHPPF3hFyaPfkRxzN1wscR5A5bS21MzcjrH3NO51us/edit?usp=sharing 2. then go to Extensions - Apps Script 3. delete all data on there. copy and paste code bellow. and edit with your own data. function doPost(e) { var data = e.postData.contents; var json = JSON.parse(data); var number = json['from']; var senderMessage = json['message']; var file = json['bufferImage']; var pesan = senderMessage.toLowerCase(); var newMessage = pesan.split(" "); var searchreply = autoreply(newMessage[0]); var type = searchreply[1]; var messagetosend = searchreply[2]; var file = searchreply[3]; if(type == "file"){ sendWaFile(number, messagetosend, file); } else if(type == "button") { sendWaButton(number, messagetosend, file); } else if(type == "list") { sendWaList(number, messagetosend, file); } else { sendWaText(number, messagetosend); } } function autoreply(message){ var sheetUrl = "https://docs.google.com/spreadsheets/d/1svHPPF3hFyaPfkRxzN1wscR5A5bS2jsdhjsdhuheheh/edit?usp=sharing"; //ganti dengan URL sheet kamu var sheetfile = SpreadsheetApp.openByUrl(sheetUrl); var sheet = sheetfile.getSheetByName("autoreply"); //sesuaikan dengan nama sheet yg d buat var data = sheet.getDataRange().getValues() var filterData = data.filter(function(keyword){ if(keyword[0] == message){ return keyword } }) if(filterData.length>0){ return filterData[0] } } function sendWaText(number, messagetosend) { var APIKey = "Hcu8aDaGnxI6Utf9kWjQsjlpX5taFy" //ganti dengan API var sender = "628xxxxxxxxxx" // ganti nomer HP var url = "https://websitekamu/send-message"; //ganti website var msgtext = { 'api_key': APIKey, 'sender': sender, "number": number, 'message': messagetosend, }; var response = UrlFetchApp.fetch(url, { "method": "POST", "contentType": "application/json", "payload" : JSON.stringify(msgtext), }); Logger.log(response.getContentText()); } //untuk kirim file function sendWaFile(number, messagetosend, file){ var APIKey = "Hcu8aDaGnxI6Utf9kWjQsjlpX5taFy" //ganti api var sender = "628000000000" // ganti nomer HP var url = "https://websitekamu/send-media"; //ganti website var msggmbr = { "api_key": APIKey, "sender": sender, "number": number, "media_type" : "image", "caption": messagetosend, "url": file } var response = UrlFetchApp.fetch(url, { "method": "POST", "contentType": "application/json", "payload" : JSON.stringify(msggmbr), }); Logger.log(response.getContentText()); } //fungsi button tidak bisa //http://yourhost.com/send-button?sender=nomersender&api_key=yourapikey&number=nomertujuan&url=&footer=optional&message=Halo,ini pesan button&button=button 1,button 2,button 3 function sendWaButton(number, messagetosend, file){ //var APIKey = "blablabla" //var sender = "blablabla" var url = "https://alamatwebsite/send-button"; var msgbut = { "sender" : sender, "api_key" : APIKey, "number" : number, "url" : null, "footer" : "optional", "message" : messagetosend, "button" : file } var response = UrlFetchApp.fetch(url, { "method": "POST", "contentType": "application/json", "payload" : JSON.stringify(msgbut), }); Logger.log(response.getContentText()); } 4. in left menus, choose Triggers 5. Click Add Trigger button in right bottom corner. 6. make setting like picture bellow. click SAVE. 7. Click DEPLOY in right top corner. 8. Select type: WEB APP. and make setting like picture. Click DEPLOY to finish it. 9. copy url and paste in your MPWA webhook. @Enno The Explorer @JangE thanks to @bloserda who teach me about this script.
  19. yes sir, i moved my server to US. and its very fast. i will try using cloudflare. thanks for your suggestion sir. in 7.0.0.9: my WA bisnis still iddle after around 5 minute without activity. so i use cronjob every 4 minutes πŸ₯² My WA (ordinary) always on even not using cronjob. btw, Now you can relax and remove the Cronjob because there is no longer a need to send a message every hour.. I solved this problem by sending your personal status every 25 seconds.. what is it mean sir?
  20. awesome with new theme... 😍 🀩 sir @Magd Almuntaser many many thanks sir after tested: to add device, it very fast to generate qrcode and show conncted. @Unicode thanks mas for you advice, finally after i moved server to US, i can install mpwa.
  21. updateeeee 7.0.0.9 😍 thanks sir @Magd Almuntaser
  22. Siap mas. Nanti sepulang dr bandara mas. Malam insyaallah saya kirim.
  23. Pake webhook bisa mas. Kemarin ada juga yg minta scriptnya. Lupa belum saya upload. Nanti sore saya uploadkan mas. Pagi-siang mau k bandara antar sodara pulang ke medan. Kenapa g pake fitur autoreply dari MPWA mas? Malah lebih mudah. Dan bisa d edit jg.