View difference between Paste ID: 09V8ykyJ and 2c7pssV0
SHOW: | | - or go back to the newest paste.
1
2
var Arri = []
3
var i = -1
4
 
5
function NextPage(){
6
       __doPostBack('ctl00$cphRoblox$rbxGroupRoleSetMembersPane$dlUsers_Footer$ctl02$ctl00','')
7
}
8
 
9
function Check(){
10
   $('#ctl00_cphRoblox_rbxGroupRoleSetMembersPane_GroupMembersUpdatePanel > > > > > .Name >').each(function(){
11
 var g = $(this).attr('href')
12
 var f = $(this).attr('href').replace('../User.aspx?ID=','')
13
 console.log(f)
14
 Arri.push(f)
15
})
16
}
17
function sendMsg()
18
{
19
        $.post("http://www.roblox.com/messages/send",{
20-
                body                    :               "Hello, I will give you 2000 robux if you join Burn Legion, remain active for 2 whole weeks straight, and earn rank of Bloodseeker. Link:  http://www.roblox.com/My/Groups.aspx?gid=335075",
20+
21
                body                    :               "Hello, I am recruiting for a clan called Burn Legion. A recently dead clan being revived. We have daily activity and skilled soldiers and high ranks. I'd like to know if you are interested in joining this clan. We are a fun type of war clan where you are allowed to express your opinions and fight bravely for the clan. Why you should join us: You will be treated with respect. You will be trained to be a skilled soldier if you are not one already. You will make a lot of friends. You will have the opportunity to try something new. Why we want you: We are looking for new members to fill our ranks. We need people with potential like you. Link to group: http://www.roblox.com/My/Groups.aspx?gid=335075",
22
                recipientid             :               Arri[i],
23
                cacheBuster             :               new Date().getTime()
24
        }).complete(function(){
25
                console.log('Sent message to ' + username + '.')
26
        })
27
}
28
 var sendd = setInterval(function(){
29
       i++;
30
       sendMsg()
31
 },10000)
32
setInterval(function(){
33
        Arri.length = 0
34
        i = 0
35
        NextPage()
36
             setTimeout(function(){
37
         Check()
38
         },2000)
39
},103000)
40
 
41
Check()