Left out. Btw... i did just write some stuff, tell me how i failed?
package EventedBricks1
{
function fxDtsBrick::onPlant(%brick)
{
Parent::onPlant(%brick);
if(%brick.getDatablock() != SMALLBASELAND)
return;
%oldWrenchBrick = %brick.client.wrenchBrick;
%brick.client.wrenchBrick = %brick;
%onPlayerTouchIndex = inputEvent_GetInputEventIdx("onPlayerTouch");
%centerPrintIndex = outputEvent_GetOutputEventIdx("Client","centerPrint");
%ClientIndex = inputEvent_GetTargetIndex("fxDTSBrick",%onPlayerTouchIndex,"Client");
serverCmdAddEvent(%brick.client,1,%onPlayerTouchIndex,0,%ClientIndex,-1,%centerPrintIndex,-%<color:eeeeee>You are on <color:ffff00><var:brick:landlord><color:eeeeee>'s Land.);
%brick.client.wrenchBrick = %oldWrenchBrick;
}
};
activatePackage(EventedBricks1);