View Single Post
  #2  
Old 08-08-2008, 01:37 PM
spoon
Sarnak
 
Join Date: Aug 2007
Posts: 34
Default

you might try something like:
Code:
sub EVENT_DEATH {
  $c = $entity_list->GetCorpseByID(2700660);
  if ($c) {
    $c->Delete();
  }
or
Code:
sub EVENT_DEATH {
  $c = $entity_list->GetCorpseByID(2700660);
  if ($c) {
    $c->SetDecayTimer(1);
  }
There probably is a better way though.
Reply With Quote