To show the player on the radar:
elseif ($3 == show) {
if ($FBS.lin($1, $2) == $null) vcmp.privmsg $1 $2 You must either register or be logged in as Level 1.
else {
vcmp.setplayermarker $1 $2 [Team color]
}
}
To hide the player from the radar:
elseif ($3 == hide) {
if ($FBS.lin($1, $2) == $null) vcmp.privmsg $1 $2 You must either register or be logged in as Level 1.
else {
vcmp.removemarker $1 $2
}
}