Jump to content

Console Say Script Problems


Greg0rz

Recommended Posts

Posted

on *:SIGNAL:mta.command: { 
 if ($3 == !consolesay) { 
    if ($gus.level($1,$2) >= 5) {
		mta.text $1  $4-
	}
    else{ 
	mta.pm $1 $2 Error - You must be level 5 to use this command	
}
}

Im pretty sure the actual scripting is correct, but I just have no idea where the } and { 's go...... can anybody help out?[/code]

Posted
on *:SIGNAL:mta.command: {
 if ($3 == !consolesay) {
   if ($gus.level($1,$2) >= 5) mta.text $1 $4-
   else mta.pm $1 $2 Error - You must be level 5 to use this command
 } 
}

  • 7 months later...
Posted
 elseif ($3 == !adminsay) || ($3 == !say) {
   if ($gus.level($1,$2) >= 5) {
     if ($4 == $null) {
       mta.pm $1 $2 Error - Syntax: $3 
     }
     else {
       mta.text $1 $4-
     }
   }
   else {
     mta.pm $1 $2 Error - You need to be level 5 to use this command.
   }
 }

  • Recently Browsing   0 members

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