Difference between revisions of "LlEjectFromLand"

From Second Life Wiki
Jump to navigation Jump to search
(spelling and style (use the talk page for questions))
Line 9: Line 9:
|return_text
|return_text
|spec
|spec
|caveats=On group owned land it seems like the prim where the script is in doesn't need to be deeded. Is it a bug?<BR>
|caveats
Anylyn Hax 03:36, 16 July 2007 (PDT)
|constants
|constants
|examples=
|examples=
<pre>
<pre>
            // Here a script done by shenanigan oh//
// Here a script done by shenanigan oh


//It's a easy script that I came up with. When I worked for a carnage I put this script in a computer that was atteched to me. The carnage it self was a pvp sims so it was alot easyer and fast to eject some this way then running after them and clicking on them. The way this work is by trying eject and half type plays name. Example ^ /1 eject shenan
//It's a easy script that I came up with. When I worked for a carnage I put this script in a computer that was
//attached to me. The carnage it self was a pvp sims so it was alot easier and fast to eject some this way
//then running after them and clicking on them. The way this work is by trying eject and half type plays name.
//Example: /1 eject shenan


//Warning if you type someone name in short be carful of other plays with same name!//
//Warning if you type someone name in short be careful of other plays with same name!
string msg;
string msg;
string name;
string name;
Line 33: Line 35:
         llListen(0,"",llGetOwner(),"");
         llListen(0,"",llGetOwner(),"");
     }
     }
     listen(integer n, string m, key k, string msg)
     listen(integer n, string m, key k, string msg)
    {
    {
       
        if (llGetSubString(msg, 0, 4) == "eject")
        if (llGetSubString(msg,0,4) == "eject")
        {
        {
             name = llToLower(llGetSubString(msg, 6, llStringLength(msg)));
              
             llSensor("", NULL_KEY, AGENT, 96, PI);
            name = llToLower(llGetSubString(msg,6,llStringLength(msg)));
             llSensor("",NULL_KEY,AGENT,96,PI);
         }
         }
       
     }
     }
      
      
     sensor(integer n)
     sensor(integer n)
     {
     {
         integer i;
         integer i = 0;
         for (i=0;i<n;i++)
         for (;i<n;++i)
         {
         {
           
             if (~llSubStringIndex(llToLower(llDetectedName(i)), name))
             if (llSubStringIndex(llToLower(llDetectedName(i)),name) != -1)
            {
              {
                llOwnerSay("ejecting " + llDetectedName(i));
           
            llOwnerSay("ejecting " + name);
                 llEjectFromLand(llDetectedKey(i));
                 llEjectFromLand(llDetectedKey(i));
            }
         }
         }
     }
     }
}
     no_sensor()
     no_sensor() {
    {
    llOwnerSay("Avatar not found.");
        llOwnerSay("Avatar not found.");
     }
     }
}  
}  
Line 72: Line 71:
|permission
|permission
|negative_index
|negative_index
|sort=EjectFromLand
|cat1=Security
|cat1=Security
|cat2
|cat2

Revision as of 18:12, 16 July 2007

Summary

Function: llEjectFromLand( key pest );

Ejects pest from land that you own.

• key pest

Examples

// Here a script done by shenanigan oh

//It's a easy script that I came up with. When I worked for a carnage I put this script in a computer that was
//attached to me. The carnage it self was a pvp sims so it was alot easier and fast to eject some this way
//then running after them and clicking on them. The way this work is by trying eject and half type plays name.
//Example: /1 eject shenan

//Warning if you type someone name in short be careful of other plays with same name!
string msg;
string name;
default
{
    on_rez(integer n)
    {
        llResetScript();
    }
    
    state_entry()
    {
        llListen(1,"",llGetOwner(),"");
        llListen(0,"",llGetOwner(),"");
    }

    listen(integer n, string m, key k, string msg)
    {
        if (llGetSubString(msg, 0, 4) == "eject")
        {
            name = llToLower(llGetSubString(msg, 6, llStringLength(msg)));
            llSensor("", NULL_KEY, AGENT, 96, PI);
        }
    }
    
    sensor(integer n)
    {
        integer i = 0;
        for (;i<n;++i)
        {
            if (~llSubStringIndex(llToLower(llDetectedName(i)), name))
            {
                llOwnerSay("ejecting " + llDetectedName(i));
                llEjectFromLand(llDetectedKey(i));
            }
        }
    }
    no_sensor()
    {
        llOwnerSay("Avatar not found.");
    }
} 

Deep Notes

Search JIRA for related Issues

Signature

function void llEjectFromLand( key pest );