Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: ForOver on Nov 11, 2017, 10:36 AM

Title: How to add that messageplayer?
Post by: ForOver on Nov 11, 2017, 10:36 AM
Guys i have added many commands on my private server
but how to show them with command /cmds?
Note: Added Commands are: /teleport(goto), /mypos, /call(bring), /fps, myid(id), /ping, /Armour
anyone can show me a example?
Title: Re: How to add that messageplayer?
Post by: SAzEe21 on Nov 11, 2017, 01:50 PM
function onPlayerCommand( player, cmd, text )
{
if ( cmd == "cmds" )
{
MessagePlayer( "Post your commands inside this", player );
}
}
Title: Re: How to add that messageplayer?
Post by: ForOver on Nov 11, 2017, 06:48 PM
Thanks u :) this is work
Solved and Locked