KillCmd

By: bdhtrn on Aug 22nd, 2011  |  syntax: Linden Scripting  |  size: 0.27 KB  |  hits: 137  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. default{
  2.     state_entry(){
  3.         llSetStatus(STATUS_DIE_AT_EDGE,TRUE);
  4.         llListen(-6858585,"","","");
  5.     }
  6.     listen(integer chan, string who, key id, string msg){
  7.         if(msg=="x"){
  8.             //llOwnerSay("x___x");
  9.             llDie();
  10.         }
  11.     }
  12. }