OsRegionNotice
From OpenSimulator
(Difference between revisions)
Line 3: | Line 3: | ||
|permissions=ESTATE_MANAGER,ESTATE_OWNER | |permissions=ESTATE_MANAGER,ESTATE_OWNER | ||
|delay=0 | |delay=0 | ||
− | |function_syntax=void osRegionNotice(string message)<br />void osRegionNotice( | + | |function_syntax=void osRegionNotice(string message)<br />void osRegionNotice(key agentID, string message) |
|ossl_example=<source lang = "lsl"> | |ossl_example=<source lang = "lsl"> | ||
− | / | + | /default |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | default | + | |
{ | { | ||
state_entry() | state_entry() |
Revision as of 12:43, 14 November 2018
void osRegionNotice(string message)
void osRegionNotice(key agentID, string message) | |
Sends a region notice to the entire current region. | |
Threat Level | VeryHigh |
Permissions | ESTATE_MANAGER,ESTATE_OWNER |
Extra Delay | 0 seconds |
Example(s) | |
/default { state_entry() { llSay(0,"Touch to send a Notice to the region"); } touch_start(integer total_num) { string message = "This is a test Notice to this region using osRegionNotice"; osRegionNotice(message); } } | |
Notes | |
The version of osRegionNotice that takes a second argument was added in the 0.9.0.1 version of OpenSimulator. |