/*-- Makes some objects bounce after hit --*/ #strict 2 #appendto AXE1 #appendto EFLN #appendto SWOR protected func Hit() { if (Random(2)) return _inherited(); SetYDir(-20); Sound("Boing"); return 1; }