function pest (sourcePlayer, command, who)
local targetPlayer = getPlayerFromName ( who )
if ( targetPlayer ) then
local x,y,z = getElementPosition (targetPlayer)
local xp,yp,zp = getElementRotation ( targetPlayer )
createObject ( 970, x+3, y+3, z, xp, yp, 0 )
end
end
addCommandHandler ( "pest", pest )