Jump to content

xfire scripts?


Recommended Posts

Is there anyway to make or if someone already has.....

a xfire spammer? i know this sounds stupid and gay..... but im curious on how this person did this....

i was minding my own when someone spams me on xifre with stupid messages..... one of my friends... just playing with me

but he sent them at such a rapid rate it actually lagged my computer........ so i asked him and he said he wouldnt tell me the script but he said he did it with autoit...

so does this exist publicly or what?

Link to comment
Share on other sites

HotKeySet("+z", "_say")
HotKeySet("+^x", "_exit")
$i = 1
While 1
    sleep(10)
WEnd
Func _exit()
    Exit
EndFunc
Func _say()
    Do
    Send("SPAM!")
    $i = $i + 1
    Until $i = 100
EndFunc

Press SHIFT+Z to send the spam, press SHIFT+CTRL+X to exit

Well, something like that....

Edited by Firestorm

[left][sub]We're trapped in the belly of this horrible machine.[/sub][sup]And the machine is bleeding to death...[/sup][sup][/sup][/left]

Link to comment
Share on other sites

HotKeySet("+z", "_say")
HotKeySet("+^x", "_exit")
$i = 1
While 1
    sleep(10)
WEnd
Func _exit()
    Exit
EndFunc
Func _say()
    Do
    Send("SPAM!")
    $i = $i + 1
    Until $i = 100
EndFunc

Press SHIFT+Z to send the spam, press SHIFT+CTRL+X to exit

Well, something like that....

close.. but if it could just say spam one time then enter

then say spam then enter it

and rapidly do that

Link to comment
Share on other sites

I made this days ago, here:

CODE
#include <misc.au3>

$SpamToggle = 0

$sMessage = Inputbox("Message Input", "Input the message to be spammed here.")

$delay = Inputbox("Delay Input", "Input delay between messages(in ms).")

While 1

If _IsPressed("73") Then Quit(); f4 is pressed

If _IsPressed("74") Then Toggle(); f5 is pressed

If _IsPressed("75") Then _Send(); f6 is pressed

If _IsPressed("13") Then _Traytip(); PAUSE is pressed

If $SpamToggle = 1 Then

Do

Send($sMessage)

Send("{ENTER}")

Sleep($delay)

Until $SpamToggle = 0

EndIf

WEnd

Func _TrayTip()

TrayTip("Uber gay spammer v1.1",'Hotkeys:' & @LF & 'F4 - Kill spammer' & @LF & 'F5 - Toggle spammer on/off' & @LF & 'F6 - Hold to spam' & @LF & ' ' & @LF & 'Steps of Use:' & @LF & '1)Enter phrase to spam' & @LF & '2)Enter delay between messages' & @LF & '3)Press F5 to begin spamming' & @LF & '4)Press F5 again to cease' & @LF & '5)Press F4 to kill the program' & @LF & '~gamepin126', 30, 0)

Sleep(200)

EndFunc

Func _Send()

Send($sMessage)

Send("{ENTER}")

Sleep($delay)

EndFunc

Func Toggle()

If $SpamToggle = 0 Then

$SpamToggle = 1

ToolTip("Spammer - ON",0,0)

Sleep(150)

Elseif $SpamToggle = 1 Then

$SpamToggle = 0

ToolTip("Spammer - OFF",0,0)

Sleep(150)

EndIf

EndFunc

Func Quit()

Exit

EndFunc

Edited by gamepin126
Link to comment
Share on other sites

I made this days ago, here:

CODE
#include <misc.au3>

$SpamToggle = 0

$sMessage = Inputbox("Message Input", "Input the message to be spammed here.")

$delay = Inputbox("Delay Input", "Input delay between messages(in ms).")

While 1

If _IsPressed("73") Then Quit(); f4 is pressed

If _IsPressed("74") Then Toggle(); f5 is pressed

If _IsPressed("75") Then _Send(); f6 is pressed

If _IsPressed("13") Then _Traytip(); PAUSE is pressed

If $SpamToggle = 1 Then

Do

Send($sMessage)

Send("{ENTER}")

Sleep($delay)

Until $SpamToggle = 0

EndIf

WEnd

Func _TrayTip()

TrayTip("Uber gay spammer v1.1",'Hotkeys:' & @LF & 'F4 - Kill spammer' & @LF & 'F5 - Toggle spammer on/off' & @LF & 'F6 - Hold to spam' & @LF & ' ' & @LF & 'Steps of Use:' & @LF & '1)Enter phrase to spam' & @LF & '2)Enter delay between messages' & @LF & '3)Press F5 to begin spamming' & @LF & '4)Press F5 again to cease' & @LF & '5)Press F4 to kill the program' & @LF & '~gamepin126', 30, 0)

Sleep(200)

EndFunc

Func _Send()

Send($sMessage)

Send("{ENTER}")

Sleep($delay)

EndFunc

Func Toggle()

If $SpamToggle = 0 Then

$SpamToggle = 1

ToolTip("Spammer - ON",0,0)

Sleep(150)

Elseif $SpamToggle = 1 Then

$SpamToggle = 0

ToolTip("Spammer - OFF",0,0)

Sleep(150)

EndIf

EndFunc

Func Quit()

Exit

EndFunc

i got a error

If_IsPressed("73") Then Quit(); f4 is pressed

If ^ERROR

Error: Unknown function name.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...