The subject says it all
Ok heres a part of my script
function ServerCmdmessagesent(%client,%message)
{
parent::serverCmdmessagesent(%client,%message);
if(%client.isAdmin == 1)
{
messageall(Some stuff in here);
}
else;
Messageall(Some other stuff);
}
How do i fix the Else?
Never mind got it to work.