OsKickAvatar
From OpenSimulator
(Difference between revisions)
Revolution (Talk | contribs) m (Adds example to osKickUser) |
m (Indentation) |
||
| (13 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | {{osslfunc | |
| − | + | |threat_level=Severe | |
| + | |permissions=${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
| + | |delay=0 | ||
| + | |function_syntax=void osKickAvatar(string FirstName,string SurName, string alert) <br /> | ||
| + | void osKickAvatar(key agentId, string alert) | ||
| + | |ossl_example=<source lang="lsl"> | ||
| + | // | ||
| + | // osKickAvatar Script Example | ||
| + | // | ||
| + | |||
default | default | ||
| − | |||
{ | { | ||
| − | + | state_entry() | |
| − | state_entry() | + | { |
| − | + | llSay(PUBLIC_CHANNEL, "Touch to see osKickAvatar usage."); | |
| − | { | + | } |
| − | + | ||
| − | osKickAvatar("AvatarFirst","AvatarLast","You have been kicked!"); | + | touch_start(integer number) |
| − | + | { | |
| + | osKickAvatar("AvatarFirst", "AvatarLast", "You have been kicked!"); | ||
| + | } | ||
} | } | ||
| − | < | + | </source> |
| − | + | |description = Kicks the selected avatar, closing its connection. | |
| − | + | ||
| − | + | Agent key argument version added February 20, 2019 | |
| + | | | ||
| + | }} | ||
Latest revision as of 13:13, 24 November 2020
void osKickAvatar(string FirstName,string SurName, string alert)
void osKickAvatar(key agentId, string alert) | |
| Kicks the selected avatar, closing its connection.
Agent key argument version added February 20, 2019 | |
| Threat Level | Severe |
| Permissions | ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER |
| Extra Delay | 0 seconds |
| Example(s) | |
// // osKickAvatar Script Example // default { state_entry() { llSay(PUBLIC_CHANNEL, "Touch to see osKickAvatar usage."); } touch_start(integer number) { osKickAvatar("AvatarFirst", "AvatarLast", "You have been kicked!"); } } | |