function lightTankVehicle::onMount(%client,%obj,%player)
{
if(%client.isAdmin || %client.isSuperadmin)
{
messageClient(%obj.client,"","Well you are admin so have fun.");
Parent::onMount(%client,%obj,%player);
}
else
{
messageClient(%obj.client,"","Hey you aren't admin What are you trying to do?");
%obj.player.unmount();
}
}
I just want to make sure that the bold letters are correct.