widget_meabeab.php 309 B

1234567891011121314151617
  1. <?php
  2. class widget_meabeab extends TaskbarWidget {
  3. public function render() {
  4. $result = '';
  5. $chance = rand(0, 10);
  6. if ($chance == 10) {
  7. //critical hit
  8. $result = wf_doSound('modules/jsc/sounds/meabeab.mp3');
  9. }
  10. return ($result);
  11. }
  12. }
  13. ?>