Advertisement
Guest User

Untitled

a guest
Mar 30th, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. var Arri = []
  2. var i = -1
  3.  
  4. function NextPage(){
  5. __doPostBack('ctl00$cphRoblox$rbxGroupRoleSetMembersPane$dlUsers_Footer$ctl02$ctl00','')
  6. }
  7.  
  8. function Check(){
  9. $('#ctl00_cphRoblox_rbxGroupRoleSetMembersPane_GroupMembersUpdatePanel > > > > > .Name >').each(function(){
  10. var g = $(this).attr('href')
  11. var f = $(this).attr('href').replace('../User.aspx?ID=','')
  12. console.log(f)
  13. Arri.push(f)
  14. })
  15. }
  16. function sendMsg()
  17. {
  18. $.post("http://www.roblox.com/messages/send",{
  19. subject : "Ghost's Cobras| Private Invitation",
  20. body : "Hello.\n\n You are summoned to fight across the world! You are summoned to the Ghost's Cobras! Ghost's Cobras is an active, science-fiction war group with multiple forts and firearms. We launch offensives into other groups and fend off their assaults. We work as one in battle, making use of efficient tactics and flanks. We are a disciplined corps and we hereby call you to arms to join our assaults and operations. \n\n Ghost's Cobras strives to always be at war. There are no boring periods of peace. When one enemy is defeated, we move on to the next as soon as we can reload. We don't believe in mindless, droning trainings. The best teacher is experience and that is best earned from battle. You will not spend an hour and a half waiting in a sword tournament. You will be invading the enemy and breaking them on our walls. For the Cobras!! \n\n If you'd like to stay updated on group events and have Google Chrome, you can search: Merely's Group Enhancer and go to the Chrome webstore and enable the extension. It's very helpful and recommended! \n\n Link to GC: http://www.roblox.com/My/Groups.aspx?gid=2545820",
  21. recipientid : Arri[i],
  22. cacheBuster : new Date().getTime()
  23. }).complete(function(){
  24. console.log('Sent message to ' + username + '.')
  25. })
  26. }
  27. var sendd = setInterval(function(){
  28. i++;
  29. sendMsg()
  30. },10000)
  31. setInterval(function(){
  32. Arri.length = 0
  33. i = 0
  34. NextPage()
  35. setTimeout(function(){
  36. Check()
  37. },2000)
  38. },103000)
  39.  
  40. Check()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement