Ok, hello
This is my attempt at a code to do this purpose:
An Administrator can type the command: /forcemessage <PlayerName> and that player should get a message box with a predifined message (The variable).
function serverCmdForceMessage(%client,%name)
{
%target = %client.player;
if(%client.isAdmin && %name !$= "")
%target = FindClientByName(%name).player;
if(isObject(%target))
%Target
{
MessageBoxOK("Server Message",$Servermessage);
}
}
Please tell me where I have gone wrong.