OsKickAvatar
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
|||
Line 1: | Line 1: | ||
− | {{osslfunc | + | {{osslfunc |
− | threat_level = Severe | + | |threat_level=Severe |
− | | | + | |function_syntax=osKickAvatar(string FirstName,string SurName,string alert) |
− | function_syntax = | + | |ossl_example=<source lang="lsl"> |
− | osKickAvatar(string FirstName,string SurName,string alert) | + | |
− | + | ||
− | | | + | |
− | ossl_example = <source lang="lsl"> | + | |
default | default | ||
{ | { | ||
Line 15: | Line 11: | ||
} | } | ||
</source> | </source> | ||
− | | | + | |description=This is the same thing as the [[Server_Commands|console command]]. |
− | + | ||
Implemented December 30,2009 by Revolution in GIT# 87959464c9db8948bed89909913400bc2eb7524d - Rev 11850 | Implemented December 30,2009 by Revolution in GIT# 87959464c9db8948bed89909913400bc2eb7524d - Rev 11850 | ||
| | | | ||
}} | }} |
Revision as of 20:35, 1 July 2011
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 | No permissions specified |
Extra Delay | No function delay specified |
Example(s) | |
default { state_entry() { osKickAvatar("AvatarFirst","AvatarLast","You have been kicked!"); } } |