function servercmdTest(%client)
{
%client.AreYouGayBox = 1;
commandtoclient(%client, 'messageBoxYesNo', "Testing.", "\c6Are you gay?", 'YesIAm');
}
function servercmdYesIAm(%client)
{
if(!%client.AreYouGayBox) return;
%client.AreYouGayBox = 0;
messageClient(%client,'',"What the forget");
}
function servercmdMessageBoxNo(%client)
{
if(!%client.AreYouGayBox) return;
%client.AreYouGayBox = 0;
messageClient(%client,'',"Phew");
}