• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Spammer Macro

Moonspell

Member
Joined
May 14, 2005
RedCents
This is a simple macro I wrote halfway out of necessity and halfway out of boredom. On that same note, this can be used for either good or evil. I use it to spam out people who go LD so they can get in faster (or at least let me know when they will be able to log back in) and also I use it to spam the everliving piss out of friends just to get a rise out of them. Have fun.

The macro will end automatically when the server realizes that the character you are trying to spam out is offline.

Code:
| spammer.mac
| Made by Moonspell for RedGuides.com
| It's really not worth stealing, but don't
| steal it anyway or we'll punch you in the face!

#turbo
#event AllDone "#*#is not online at this time#*#"
#event TheyAreOut "#*#Could not find player#*#"
#event StartSpamming "#*#[MQ2] Start spamming #1#"

sub Main
/declare spamee string outer
/echo <<< Spammer Ready >>>
/echo Who shall I spam?  Syntax: /echo Start spamming "name"
:waithere
/doevents
/doevents
/goto :waithere
/return

Sub event_StartSpamming(String, spamy)
/varset spamee ${spamy.Arg[1]}
/echo <<< Let the spam being >>>
:spamloop
/squelch ;tell ${spamy} SPAM, BITCH, SPAM
/doevents
/goto :spamloop
/return

Sub event_AllDone
/echo <<< ${spamee} is no longer online >>>
/echo <<< Ending Macro >>>
/end
/return

Sub event_TheyAreOut
/echo <<< ${spamee} is no longer online >>>
/echo <<< Ending Macro >>>
/end
/return
 
Last edited:
I made something simular to this...

Rich (BB code):
|--------------------------
| Msg.mac by Ccomp5950
| Last updated 10-Oct-05
|--------------------------
| Usage '/mac Msg "/pet leader"' 10
|       '/mac Msg "/keypress 7" 1000
|
| First portion in "" is the "message" it can be any command.  The number 
| afterwards is how many times this command will be ran.


#turbo 20
Sub Main(string message,int x)
/declare y int outer
/for y 1 to ${x}
/docommand ${message}
/if (${message.Left[5].Equal[/tell]}) /delay 2s
/if (${message.Left[9].Equal[/Keypress]}) /delay 5
/if (${message.Left[6].Equal[/Shout]}) /delay 3
/next y
/return

I mainly used this to fuck with people, I had a clicky bracer of see invis (I can't remember the toys name" that was insta cast, it drops in LOIO (Kunark), and I would place it in my 7th hotkey, target someone and run this they would get "Your eyes tingle" spam like woah.

You can also do stuff such as

/join OMG_SO_AND_SO_SUCKS
/mac msg ";invite Ccomp5950 OMG_SO_AND_SO_SUCKS" 100

and they would be instantly spammed with 100 invites to that chat channel, no spam filter on invites.

Other things like multiple toons sending tells at the same time to a designated character.

But by far my favorite use for it was targeting pets that werent' supposed to be on raids and typing:
/mac msg "/pet leader" 25

and having their pet /say "My leader is ______" 25 times, no spam filter, as fast as you can send the command and there is no evidence of who sent the command.

Fun stuff.
 
Last edited:
Ccomp5950 said:
But by far my favorite use for it was targeting pets that werent' supposed to be on raids and typing:
/mac msg "/pet leader" 25

and having their pet /say "My leader is ______" 25 times, no spam filter, as fast as you can send the command and there is no evidence of who sent the command.

Fun stuff.
I remember when people would do this in PoK. Annoyed the hell outta me lol.
 
If you were on the Nameless it was (more then likely) me, I used to do it to Jesters all the time. Those fuggers pissed me the fuck off. I used to do it right in front of the bank, and when I did it in PoK it was usually 100, not 25.
 
Spammer Macro

Users who are viewing this thread

Back
Top
Cart