OsSetRegionWaterHeight
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
|||
Line 1: | Line 1: | ||
− | {{osslfunc| | + | {{osslfunc |
− | threat_level = High | + | |threat_level=High |
− | | | + | |function_syntax=osSetRegionWaterHeight(float height) |
− | function_syntax = | + | |ossl_example=<source lang="lsl"> |
− | osSetRegionWaterHeight(float height) | + | |
− | + | ||
− | | | + | |
− | ossl_example = <source lang="lsl"> | + | |
// Region Water Height utility | // Region Water Height utility | ||
Line 35: | Line 31: | ||
} | } | ||
</source> | </source> | ||
− | | | + | |description= |
− | + | ||
| | | | ||
}} | }} |
Revision as of 20:40, 1 July 2011
osSetRegionWaterHeight(float height)
| |
No descriptions provided | |
Threat Level | High |
Permissions | No permissions specified |
Extra Delay | No function delay specified |
Example(s) | |
// Region Water Height utility // I know, it's probably horribly inefficient and confusing, but it works. // Arkaniad Exonar, '10 float g_WaterHeight; // <---- Storage Var integer g_ListenChan = 0; list g_ltmp; // <--------Temporary buffer default { state_entry() { llListen(g_ListenChan, "", llGetOwner(), ""); //Prepare listener llSay(0, "Ready for commands"); } listen(integer channel, string name, key id, string message) { g_ltmp = llParseString2List(message, [" "], []); // Split the message into chunks if(llList2String(g_ltmp, 0) == "/waterheight") // Self explanatory { osSetRegionWaterHeight(llList2Float(g_ltmp, 1)); // Set the region water height to the specified value llSay(0, "Setting region water height to "+llList2String(g_ltmp, 1)+"m (In case anyone was wondering)"); g_ltmp = []; // Flush buffers } } } |