Add this to the top of your script:
var blooded: boolean;
Add this to the 'StartRound' function of your script, whatever it may be called:
blooded := false;
Add this to OnPlayerKill:
if killer <> victim then if not blooded then begin
blooded := true;
// PUT WHAT YOU WANT TO HAPPEN HERE
end
end