OsKickAvatar
From OpenSimulator
(Difference between revisions)
m (Robot: Cosmetic changes) |
m (Added permissions and delay information) |
||
Line 1: | Line 1: | ||
{{osslfunc | {{osslfunc | ||
|threat_level=Severe | |threat_level=Severe | ||
+ | |permissions=${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
+ | |delay=0 | ||
|function_syntax=void osKickAvatar(string FirstName,string SurName,string alert) | |function_syntax=void osKickAvatar(string FirstName,string SurName,string alert) | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> |
Revision as of 08:05, 25 October 2017
void osKickAvatar(string FirstName,string SurName,string alert)
| |
This is the same thing as the console command.
Implemented December 30,2009 by Revolution in GIT# 87959464c9db8948bed89909913400bc2eb7524d - Rev 11850 | |
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!"); } } |