Jump to content

Taxi Script and more...


Guest OGLoc

Recommended Posts

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
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

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
  • Recently Browsing   0 members

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