Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: Shovon^ on Aug 28, 2016, 11:37 AM

Title: Error cmd Function
Post by: Shovon^ on Aug 28, 2016, 11:37 AM
I want a error function ....like its a cmds error or invalid cmds so there is written ([ERROR]Invalid Command). . . .. . .. . .i know u guyz will tell "ITS ezy who can do it?"but i am not getting idea of how to do this? :P
Title: Re: Error cmd Function
Post by: Xmair on Aug 28, 2016, 11:44 AM
An example:
function onPlayerCommand( iPlayer, szCmd, szArguments ) {

switch( szCmd.tolower( ) ) {

case "mycommand":

/* ... */

break;

case "mycommand2":

/* ... */

break;

default:

MessagePlayer( "Invalid command.", iPlayer );

break;

}

}

function onPlayerCommand( iPlayer, szCmd, szArguments ) {

if ( szCmd.tolower( ) == "mycommand" ) {

/* ... */

}

else if ( szCmd.tolower( ) == "mycommand" ) {

/* ... */

}

else MessagePlayer( "Invalid command.", iPlayer );

}
Title: Re: Error cmd Function
Post by: Shovon^ on Aug 28, 2016, 03:45 PM
I will try it thnx but plz send more good and tested one plz :)
Title: Re: Error cmd Function
Post by: Anik on Aug 29, 2016, 07:09 AM
Quote from: Shovon^ on Aug 28, 2016, 03:45 PMI will try it thnx but plz send more good and tested one plz :)
more good?? This is a perfect example and solution for your problem.
Title: Re: Error cmd Function
Post by: Shovon^ on Aug 29, 2016, 08:17 AM
OK lemme try ;) :)
Title: Re: Error cmd Function
Post by: Shovon^ on Aug 29, 2016, 08:19 AM
Why there is two time the Function onplayercommand.....????
Should I add as it is ???
Title: Re: Error cmd Function
Post by: KAKAN on Aug 29, 2016, 08:39 AM
lol, 2 times = won't work. Any 1 of 'em will work. Usually, teh one which appears after the first one will work.
Title: Re: Error cmd Function
Post by: Shovon^ on Aug 29, 2016, 09:38 AM
XDD now not even a single cmds are working...i type any cmd its just written (Invalid Cmds).... :o
Title: Re: Error cmd Function
Post by: Xmair on Aug 29, 2016, 10:35 AM
The code I posted was just an example. Copy pasting won't work.
Title: Re: Error cmd Function
Post by: Mötley on Aug 29, 2016, 03:46 PM
This is from another script help, You can see that every command is returned true. This was your issue, EVERY Command needs to be returned true...

function onPremisionCommand(player) {
  MessagePlayer( "Invalid command! Type /cmds", player);
}

function onPlayerCommand(player, cmd, text) {

  if (cmd == "kick") {
   
    if ( IsAdmin( player, cmd ) ) {
     
      onPremisionCommand(player);
     
      return true;
   
    }
   
    if (!text) {
       
       MessagePlayer("[Syntax] /" + cmd + " <Nick/ID> <Reason>", player );

       return true;
   
    }
   
    local plr = FindPlayer(text.tointeger()), reason = GetTok( text, " ", 2, NumTok( text, " " ) );
   
    if (!plr) {
       
       MessagePlayer("[Error] - Invalid Nick/ID Specified !!", player );
       
       return true;   
   
    }
         
    Kick( plr, player, reason );

    return true;
  }
 
  onPremisionCommand(player);
 
  return false;
}