Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: DontKnowScripting:( on May 06, 2015, 08:12 AM

Title: Messageplayer help?
Post by: DontKnowScripting:( on May 06, 2015, 08:12 AM
I'm getting error at message player actually this script is taken from adm then I changed Emessage to messageplayer


else if ( cmd == "kick" )
{
   if ( pstats[ player.ID ].Level < 3 ) MessagePlayer( "Error - You don't have access to it.", player);
   else if ( !text ) MessagePlayer( "Error - Syntax: /kick <player> <reason>", player);
   else
   {
     local plr = GetPlayer( GetTok( text, " ", 1 ) );
     if ( !plr ) MessagePlayer( "Error - Unknown player.", player);
     else
     {
       local reason = GetTok( text, " ", 2 );
   if ( !reason ) reason = "None";
   MessagePlayer( "" + plr.Name + " have been kicked. Reason: " + reason + "" );
   plr.Kick();
     }
   }
}




Title: Re: Messageplayer help?
Post by: Thijn on May 06, 2015, 08:16 AM
......

What is the error?
Title: Re: Messageplayer help?
Post by: DontKnowScripting:( on May 06, 2015, 08:24 AM
(https://forum.vc-mp.org/proxy.php?request=http%3A%2F%2Fs21.postimg.org%2Fd95y2qhc7%2FScreenshot_3.png&hash=fb7e47417eb02ce1cb6dee378b37cd3696924775) (http://postimg.org/image/90180ke2r/full/)
image ru (http://postimage.org/)
Title: Re: Messageplayer help?
Post by: . on May 06, 2015, 08:41 AM
You're missing the player instance. Without it the function doesn't know to which player to send the message. Currently you're using it like this:
function onPlayerCommand(some_player, command, arguments)
{
    MessagePlayer("This is my message!") // But who receives this message?
}

Correct usage would be like this:
function onPlayerCommand(some_player, command, arguments)
{
    MessagePlayer(some_player, "This is my message!") // some_player receives this message.
}

The error message even warns you that you have an incorrect number of arguments. Which means that you're either not passing sufficient arguments or you simply give it more it's expecting. In your case it's the first one.
Title: Re: Messageplayer help?
Post by: DontKnowScripting:( on May 06, 2015, 11:21 AM
Thanks :)
Title: Re: Messageplayer help?
Post by: SAzEe21 on Jun 24, 2015, 12:18 PM
MessagePlayer( "" + plr.Name + " have been kicked. Reason: " + reason + "" );

Change this MessagePlayer to eMessage or rMessage.
Title: Re: Messageplayer help?
Post by: KingOfVC on Jun 24, 2015, 01:28 PM
Quote from: Zeeshan.Bhatti on Jun 24, 2015, 12:18 PMMessagePlayer( "" + plr.Name + " have been kicked. Reason: " + reason + "" );

You forgot 'player', it should be
MessagePlayer( "" + plr.Name + " have been kicked. Reason: " + reason + "" ,player);
Title: Re: Messageplayer help?
Post by: [VSS]Shawn on Jun 24, 2015, 02:11 PM
U Forget Player Use This
MessagePlayer( "" + plr.Name + " have been kicked. Reason: " + reason + ".", player  );
Title: Re: Messageplayer help?
Post by: . on Jun 24, 2015, 02:41 PM
Didn't anyone notice that the last reply to this topic was "49 days ago" and that the topic was solved ? WTF is wrong with you people?