Jump to content

Taxi Script and more...


Guest OGLoc

Recommended Posts

Posted

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!

Posted
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."

signature.gif

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

Posted

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

  • Recently Browsing   0 members

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