generic image
Processing...
  • Games
  • Catalog
  • Develop
  • Robux
  • Search in Players
  • Search in Games
  • Search in Catalog
  • Search in Groups
  • Search in Library
  • Log In
  • Sign Up
  • Games
  • Catalog
  • Develop
  • Robux
   
ROBLOX Forum » Club Houses » Clans & Guilds
Home Search
 

Re: Message Bot

Previous Thread :: Next Thread 
killerChelseaDude912 is not online. killerChelseaDude912
Joined: 18 Dec 2009
Total Posts: 573
21 Apr 2015 11:30 AM
So PM bots,
How do I go about getting one?
Report Abuse
StratusNinja is not online. StratusNinja
Joined: 04 Nov 2012
Total Posts: 6144
21 Apr 2015 11:30 AM
Do it manually like a slave
Report Abuse
killerChelseaDude912 is not online. killerChelseaDude912
Joined: 18 Dec 2009
Total Posts: 573
21 Apr 2015 11:32 AM
Sounds like a lot of effort and time.
Report Abuse
killerChelseaDude912 is not online. killerChelseaDude912
Joined: 18 Dec 2009
Total Posts: 573
21 Apr 2015 11:43 AM
So some idiot just asked for 5k, don't be that idiot.
Report Abuse
sbk29 is not online. sbk29
Joined: 24 Oct 2011
Total Posts: 7998
21 Apr 2015 11:46 AM
Can you code one your self killer? No? That means you will pay whatever the coder wants for one, or at least pay whoever has one what they want. You are at the will of the market.
Report Abuse
killerChelseaDude912 is not online. killerChelseaDude912
Joined: 18 Dec 2009
Total Posts: 573
21 Apr 2015 12:09 PM
I am at the will of the market, but when you have an offer of 300 and an offer of 0 5,000 is a ridiculous price.
Report Abuse
lionbaita is not online. lionbaita
Joined: 15 Sep 2012
Total Posts: 23091
21 Apr 2015 12:11 PM
I could give you a free one but I think its broken, never worked for me.....

Report Abuse
Stressout is not online. Stressout
Joined: 14 Jan 2015
Total Posts: 4211
21 Apr 2015 12:17 PM
If you can wait an hour I'll give you one that pm's a certain rank in a certain group
Report Abuse
yelm is not online. yelm
Joined: 08 Aug 2014
Total Posts: 4898
21 Apr 2015 12:18 PM
what kind
one which sends when you make go the website
or one which you can run and sends pms to loads of people


- Enflare, terminated 2nd December 2014. (+18522 posts)
Report Abuse
sbk29 is not online. sbk29
Joined: 24 Oct 2011
Total Posts: 7998
21 Apr 2015 12:18 PM
But are they the same bot? How do they work? Which is more efficient and reliable. Which one won't break in 2 weeks? Which one is faster?
Report Abuse
masterjack0151 is not online. masterjack0151
Joined: 06 Dec 2012
Total Posts: 4766
21 Apr 2015 12:20 PM
var PlaceId = '70501379'; //ID of game to get players from
/* In your message, you can include the following hashtags
#USERNAME -> Will be replaced by the username of the player you are sending a message to.
#TRADELINK -> Will be replaced by the link to the trade page of the current user you are logged in as.
#NEWLINE -> Will start a new line (aka pressing enter)

Will PM 5 users in the game every 2.4 minutes for a total of 25 PMs per hour (max possible with ROBLOX's floodcheck)
NOTE: This will follow all users PMs are being sent to, as a majority of users only allow PMs from followers/friends.

By Widths[iJava]
*/
var Subject = 'Hello #USERNAME!'; /*Subject of PM to send. Make sure to keep it one line, use #NEWLINE to extend it.*/
var Message = 'Hey #USERNAME, please send me a trade at #TRADELINK!#NEWLINEThanks!'; /*Message body of PM to send. Make sure to keep it one line, use #NEWLINE to extend it.*/
function sendMessage(subject, message, recipient, username, myId, callback) {
$.ajax({
url:'http://www.roblox.com/user/follow',
data:{
targetUserId:recipient
},
type:'POST'
}).done(function() {
$.ajax({
url:'http://www.roblox.com/messages/send',
type:'POST',
data:{
'subject':subject.replace(/#USERNAME/g, username).replace(/#NEWLINE/g, '\n').replace(/#TRADELINK/g, ' http://www.roblox.com/Trade/TradeWindow.aspx?TradePartnerID='+myId+' '),
'body':message.replace(/#USERNAME/g, username).replace(/#NEWLINE/g, '\n').replace(/#TRADELINK/g, ' http://www.roblox.com/Trade/TradeWindow.aspx?TradePartnerID='+myId+' '),
'recipientid':recipient,
'cacheBuster':$.now,
}
}).done(function(q) {
callback(q.success)
});
});
}
var PlayerArray = [];
var PlayerNames = [];
var IgnoreArray = ['Widths'];
function SendLatest(myId, callback) {
if (PlayerArray.length > 0) {
sendMessage(Subject, Message, PlayerArray[0], PlayerNames[0], myId, function(sent) {
console.log(sent?'Successfully sent message to '+PlayerNames[0]:'Failed to send message to '+PlayerNames[0]);
PlayerArray.splice(0, 1);
PlayerNames.splice(0, 1);
callback();
});
} else {
callback();
}
}
function getPlayers(Index, callback) {
$.get('http://www.roblox.com/games/getgameinstancesjson?placeId='+PlaceId+'&startindex='+Index).done(function(r) {
for (var server in r['Collection']) {
var plyrs = r['Collection'][server]['CurrentPlayers'];
for (var p in plyrs) {
if ($.inArray(plyrs[p]['Username'], IgnoreArray) == -1) {
PlayerArray.push(plyrs[p]['Id']);
PlayerNames.push(plyrs[p]['Username']);
}
}
}
callback();
});
}
function first() {
$.get('http://www.roblox.com/mobileapi/userinfo').done(function(x) {
IgnoreArray.push(x.UserName);
loop(x.UserID);
});
}
function loop(Id) {
getPlayers(0, function() {
var sent = 0;
function go() {
SendLatest(Id, function() {
sent++;
if (sent < 5) go()
else setTimeout(function() { loop(Id) },144000/*run every 2.4 minutes, so 25 pms an hour (floodcheck) */)
});
}
go();
});
}
first();
//-Widths
Report Abuse
Rokill15 is online. Rokill15
Joined: 21 Oct 2013
Total Posts: 1036
21 Apr 2015 12:21 PM
HAIIII KILLER :D
Report Abuse
lionbaita is not online. lionbaita
Joined: 15 Sep 2012
Total Posts: 23091
21 Apr 2015 12:29 PM
It says failed to send message .-.
Report Abuse
killerChelseaDude912 is not online. killerChelseaDude912
Joined: 18 Dec 2009
Total Posts: 573
21 Apr 2015 12:48 PM
@yelm
The latter.
Report Abuse
killerChelseaDude912 is not online. killerChelseaDude912
Joined: 18 Dec 2009
Total Posts: 573
21 Apr 2015 12:48 PM
@rokill

Hai
Report Abuse
killerChelseaDude912 is not online. killerChelseaDude912
Joined: 18 Dec 2009
Total Posts: 573
21 Apr 2015 12:49 PM
@stressout
I'm willing to wait
Report Abuse
Rokill15 is online. Rokill15
Joined: 21 Oct 2013
Total Posts: 1036
23 Apr 2015 01:15 AM
:D

Leave RAID it's a bad group :( they use copied meadows QQ
Report Abuse
Previous Thread :: Next Thread 
Page 1 of 1
 
 
ROBLOX Forum » Club Houses » Clans & Guilds
   
 
   
  • About Us
  • Jobs
  • Blog
  • Parents
  • Help
  • Terms
  • Privacy

©2017 Roblox Corporation. Roblox, the Roblox logo, Robux, Bloxy, and Powering Imagination are among our registered and unregistered trademarks in the U.S. and other countries.



Progress
Starting Roblox...
Connecting to Players...
R R

Roblox is now loading. Get ready to play!

R R

You're moments away from getting into the game!

Click here for help

Check Remember my choice and click Launch Application in the dialog box above to join games faster in the future!

Gameplay sponsored by:
Loading 0% - Starting game...
Get more with Builders Club! Join Builders Club
Choose Your Avatar
I have an account
generic image