Guest Posted August 25, 2005 Share 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! Link to comment
Niels Posted August 25, 2005 Share Posted August 25, 2005 if ($3 == !slap) { var %a = 1 while (%a < 6) { mta.slap $1 $4 } !inc %a } Link to comment
Aeron Posted August 25, 2005 Share 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. Link to comment
Guest Posted August 25, 2005 Share 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. Link to comment
Mike Posted August 25, 2005 Share 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 } } Link to comment
Recommended Posts