Guest Posted August 25, 2005 Posted August 25, 2005 Hey all, I am using GRS and MTAMA. I was wondering if there was a taxi script that works with both of those. The one on http://mtascripts.mta-euleague.com/scripts.html just doesn't seem to work. The !slap thread below has a slap command that doesn't seen to work. I am a noob at this and wondered if I was to copy the text and put that in a seperate .mrc file and load it with GRS. Or, was I supposed to modify it in any way or integrate it with something? Here's the script: if ($3 == !slap) { var %a = 1 while (%a < 6) { mta.slap $1 $4 } } Also, in the GRS, the !suspect command doesn't work. Is that a known problem? Is their a fix? Thx, OGLoc!
Niels Posted August 25, 2005 Posted August 25, 2005 if ($3 == !slap) { var %a = 1 while (%a < 6) { mta.slap $1 $4 } !inc %a } OMG!
Aeron Posted August 25, 2005 Posted August 25, 2005 if ($3 == !slap) { var %a = 1 while (%a < 6) { mta.slap $1 $4 } !inc %a } if ($3 == !slap) { var %a = 1 while (%a < 6) { mta.slap $1 $4 !inc %a } } No comments. "Never argue with an idiot. They bring you down to their level and beat you with experience." "Arguing on the internet is like the Special Olympics. Even if you win, you're still retarded."
Guest Posted August 25, 2005 Posted August 25, 2005 if ($3 == !slap) { var %a = 1 while (%a < 6) { mta.slap $1 $4 } !inc %a } if ($3 == !slap) { var %a = 1 while (%a < 6) { mta.slap $1 $4 !inc %a } } No comments. It still doesn't work. I went into mIRC and into the Script Editor. I opened a new file and copied the code you gave me into it. Then I saved it as slap.mrc and unloaded it in MTA:MA and then I loaded it in MTA:MA:GRS. When I type !slap I get nothing.
Mike Posted August 25, 2005 Posted August 25, 2005 on *:SIGNAL:mta.command:{ if ($3 == !slap) { var %a = 1 while (%a < 6) { mta.slap $1 $4 !inc %a } } } Note: that command will kill the person. If you want to slap them once, use: on *:SIGNAL:mta.command:{ if ($3 == !slap) { mta.slap $1 $4 } }
Recommended Posts