if someone could help me with a !command script I have a lot but none works
if ( ( Prefix == "!" ) && ( Count > 4 ) ) FCommand( Nick, Command.tolower(), Text );
else if ( ( Prefix == "!" ) && ( Count == 4 ) ) FCommand( Nick, Command.tolower(), null );
if (Nick && Command && Text)
{
FCommand( Nick, Command, Text );
}
else if (Nick && Command)
{
FCommand( Nick, Command, null );
}