i have a code and its for my own server build trust mod and here is the problem:
function serverCmdPlantBrick(%client)
{
if($ServerBuildTrust::Enabled)
{
%host = %client.bl_id != getNumKeyID();
if(getTrustLevel(%host,%client) < 2)
{
centerPrint(%client,"<color:FFC800> " @ %host.name @ " <color:FFFFFF>does not trust you enough to build on their server",2,2);
return;
}
}
Parent::serverCmdPlantBrick(%client);
}
the darn %host thing doesnt want to work can some one help me?