Posted 11 years ago
·
Author
The following is a bot that sends out a single pulse message in reply to every pulse.
To run the following bot, follow these steps:
1) Go to the IMVU pulse page: http://www.imvu.com/catalog/web_index.php/pulse
2) Enter the following into the URL bar:
3) Make sure the word "javascript" is in the URL bar at the beginning of the URL; if you used copy / paste to enter the text then your browser may have blocked the word javascript, you may need to manually go back and add the word javascript
4) Press the enter button.
Tip: You can skip steps 2-4 by simply bookmarking the URL from step 2
Source Code:
Credit goes to Bloodlust for finding the virus that I reverse engineered to make this bot.
To run the following bot, follow these steps:
1) Go to the IMVU pulse page: http://www.imvu.com/catalog/web_index.php/pulse
2) Enter the following into the URL bar:
javascript:document.body.appendChild(document.createElement('script')).src="https://www.imvumafias.org/automation/pulsebot6.js"; void 0
3) Make sure the word "javascript" is in the URL bar at the beginning of the URL; if you used copy / paste to enter the text then your browser may have blocked the word javascript, you may need to manually go back and add the word javascript
4) Press the enter button.
Tip: You can skip steps 2-4 by simply bookmarking the URL from step 2
Source Code:
/**************************************
TITLE: IMVU Mafias' Pulse Bot
AUTHOR: Don Von Free Credits
CREATE DATE: 5/4/2013
PURPOSE: Sends a single pulse message as a reply to every message on your pulse page
LAST MODIFIED ON: 5/4/2013
LAST MODIFIED BY: Don Von Free Credits
MODIFICATION HISTORY:
5/4/2013 - original version made
Known Bugs:
**************************************/
//Confirm that the pulse bot is working
alert("Welcome to The IMVU Mafias' Pulse Bot!");
//Declare and initinalize global variables
var strMessage = "";
//Prompt user for message
strMessage = prompt("What is the message you wish to shout over IMVU pulse?");
//Start Fill in pulse message box with the message you want to send
//Find every pulse message box on the page
var len = document.getElementsByTagName("textarea").length;
//For every pulse message box (loops through a list of all of the message boxes)
for (i=0; i<len; i++)
{
//Enter the message into the current message box in the loop
document.getElementsByTagName("textarea")[i].value = strMessage;
}
//Send the message as a reply to the top 10 messages on that person's pulse list, and then refresh their pulse messages
setTimeout("document.getElementsByClassName('btn_share')[1].click()", 500);//wait half second and click the first share button on the page
setTimeout("document.getElementsByClassName('btn_share')[2].click()", 5000);//wait 5 seconds and click the second share button on the page
setTimeout("document.getElementsByClassName('btn_share')[3].click()", 10000);//wait 10 seconds and click the third share button on the page
setTimeout("document.getElementsByClassName('btn_share')[4].click()", 15000);//wait 15 seconds and click the fourth share button on the page
setTimeout("document.getElementsByClassName('btn_share')[5].click()", 80000);//wait 80 seconds and click the fifth share button on the page
setTimeout("document.getElementsByClassName('btn_share')[6].click()", 85000);//wait 85 seconds and click the sixth share button on the page
setTimeout("document.getElementsByClassName('btn_share')[7].click()", 90000);//wait 90 seconds and click the seventh share button on the page
setTimeout("document.getElementsByClassName('btn_share')[8].click()", 95000);//wait 95 seconds and click the eighth share button on the page
setTimeout("document.getElementsByClassName('btn_share')[9].click()", 155000);//wait 155 seconds and click the nineth share button on the page
setTimeout("document.getElementsByClassName('btn_share')[10].click()", 160000);//wait 160 seconds and click the tenth share button on the page
setTimeout("document.getElementsByClassName('btn_share')[0].click()", 165000);//wait 165 seconds and click the big yellow share button
setTimeout("document.getElementById('refresh').click()", 170000);//wait 170 seconds and refresh the pulse messages
Credit goes to Bloodlust for finding the virus that I reverse engineered to make this bot.