Vice City: Multiplayer

VC:MP Discussion => Support => Topic started by: Yankee on May 27, 2017, 10:04 AM

Title: A Command For Only A Class
Post by: Yankee on May 27, 2017, 10:04 AM
Hi guys,how can i make a command for only one class.For example only medic team can use a /heal code and /heal other players.Can anyone give me ?
Title: Re: A Command For Only A Class
Post by: EK.IceFlake on May 27, 2017, 10:10 AM
if (player.Team != medicteamid) return MessagePlayer(player, "One does not simply heal other people without equipment.");Use it if you know how to, otherwise stick to playing.
Title: Re: A Command For Only A Class
Post by: Yankee on May 27, 2017, 10:49 AM
Quote from: EK.IceFlake on May 27, 2017, 10:10 AMif (player.Team != medicteamid) return MessagePlayer(player, "One does not simply heal other people without equipment.");Use it if you know how to, otherwise stick to playing.
Thanks mate.