OsKickAvatar
From OpenSimulator
(Difference between revisions)
Line 14: | Line 14: | ||
} | } | ||
</source> | </source> | ||
− | |description= | + | |description = Kicks the selected avatar, closing its connection. |
− | + | Agent key argument version added February 20, 2019 | |
− | + | ||
− | + | ||
| | | | ||
}} | }} |
Revision as of 18:38, 19 February 2019
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 | ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER |
Extra Delay | 0 seconds |
Example(s) | |
default { state_entry() { osKickAvatar("AvatarFirst","AvatarLast","You have been kicked!"); } } |