OsReplaceAgentEnvironment
From OpenSimulator
(Difference between revisions)
m (Add See Also) |
(Small changes in the script) |
||
Line 10: | Line 10: | ||
* transition should be the viewer transition time to the new one. May not work on most viewers. | * transition should be the viewer transition time to the new one. May not work on most viewers. | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
− | |||
// | // | ||
// osReplaceAgentEnvironment Script Example | // osReplaceAgentEnvironment Script Example | ||
// Author: djphil | // Author: djphil | ||
// | // | ||
− | + | ||
// Can be asset's name in object's inventory or the asset uuid | // Can be asset's name in object's inventory or the asset uuid | ||
− | string | + | string daycycle_a = "Daycycle_A"; |
− | string | + | string daycycle_b = NULL_KEY; |
integer transition = 3; | integer transition = 3; | ||
integer switch; | integer switch; | ||
Line 26: | Line 25: | ||
state_entry() | state_entry() | ||
{ | { | ||
− | llSay(PUBLIC_CHANNEL, "Touch to see osReplaceAgentEnvironment usage | + | llSay(PUBLIC_CHANNEL, "Touch to see osReplaceAgentEnvironment usage."); |
+ | llSay(PUBLIC_CHANNEL, "Transition: " + (string)transition + " second(s)."); | ||
} | } | ||
− | + | ||
touch_start(integer number) | touch_start(integer number) | ||
{ | { | ||
key agentKey = llDetectedKey(0); | key agentKey = llDetectedKey(0); | ||
− | + | ||
if (llGetAgentSize(agentKey) != ZERO_VECTOR) | if (llGetAgentSize(agentKey) != ZERO_VECTOR) | ||
{ | { | ||
integer result; | integer result; | ||
− | + | ||
llRegionSayTo(agentKey, PUBLIC_CHANNEL, "agentKey: " + (string)agentKey); | llRegionSayTo(agentKey, PUBLIC_CHANNEL, "agentKey: " + (string)agentKey); | ||
− | + | ||
if (switch = !switch) | if (switch = !switch) | ||
{ | { | ||
− | result = osReplaceAgentEnvironment(agentKey, transition, | + | result = osReplaceAgentEnvironment(agentKey, transition, daycycle_a); |
− | llRegionSayTo(agentKey, PUBLIC_CHANNEL, " | + | llRegionSayTo(agentKey, PUBLIC_CHANNEL, "daycycle_a: " + daycycle_a); |
} | } | ||
− | + | ||
else | else | ||
{ | { | ||
− | result = osReplaceAgentEnvironment(agentKey, transition, | + | result = osReplaceAgentEnvironment(agentKey, transition, daycycle_b); |
− | llRegionSayTo(agentKey, PUBLIC_CHANNEL, " | + | llRegionSayTo(agentKey, PUBLIC_CHANNEL, "daycycle_b: " + daycycle_b); |
} | } | ||
− | + | ||
− | if ( | + | if (daycycle_a == "" || daycycle_a == NULL_KEY || daycycle_b == "" || daycycle_b == NULL_KEY) |
+ | { | ||
+ | llRegionSayTo(agentKey, PUBLIC_CHANNEL, "The normal environment for the parcel or region has been selected."); | ||
+ | } | ||
+ | |||
+ | if (result > 0) | ||
{ | { | ||
llRegionSayTo(agentKey, PUBLIC_CHANNEL, "Agent environment replaced with success!"); | llRegionSayTo(agentKey, PUBLIC_CHANNEL, "Agent environment replaced with success!"); | ||
} | } | ||
− | + | ||
− | else | + | else if (result < 0) |
{ | { | ||
llRegionSayTo(agentKey, PUBLIC_CHANNEL, "Agent environment replaced without success!"); | llRegionSayTo(agentKey, PUBLIC_CHANNEL, "Agent environment replaced without success!"); | ||
} | } | ||
} | } | ||
− | + | ||
else | else | ||
{ | { |
Revision as of 03:17, 16 December 2020
integer osReplaceAgentEnvironment(key agentKey, integer transition, string daycycle)
| |
Forces a dayclycle on a agent. Will do nothing if the agent is using a viewer local environment
| |
Threat Level | Moderate |
Permissions | ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER |
Extra Delay | 0 seconds |
Example(s) | |
// // osReplaceAgentEnvironment Script Example // Author: djphil // // Can be asset's name in object's inventory or the asset uuid string daycycle_a = "Daycycle_A"; string daycycle_b = NULL_KEY; integer transition = 3; integer switch; default { state_entry() { llSay(PUBLIC_CHANNEL, "Touch to see osReplaceAgentEnvironment usage."); llSay(PUBLIC_CHANNEL, "Transition: " + (string)transition + " second(s)."); } touch_start(integer number) { key agentKey = llDetectedKey(0); if (llGetAgentSize(agentKey) != ZERO_VECTOR) { integer result; llRegionSayTo(agentKey, PUBLIC_CHANNEL, "agentKey: " + (string)agentKey); if (switch = !switch) { result = osReplaceAgentEnvironment(agentKey, transition, daycycle_a); llRegionSayTo(agentKey, PUBLIC_CHANNEL, "daycycle_a: " + daycycle_a); } else { result = osReplaceAgentEnvironment(agentKey, transition, daycycle_b); llRegionSayTo(agentKey, PUBLIC_CHANNEL, "daycycle_b: " + daycycle_b); } if (daycycle_a == "" || daycycle_a == NULL_KEY || daycycle_b == "" || daycycle_b == NULL_KEY) { llRegionSayTo(agentKey, PUBLIC_CHANNEL, "The normal environment for the parcel or region has been selected."); } if (result > 0) { llRegionSayTo(agentKey, PUBLIC_CHANNEL, "Agent environment replaced with success!"); } else if (result < 0) { llRegionSayTo(agentKey, PUBLIC_CHANNEL, "Agent environment replaced without success!"); } } else { llInstantMessage(agentKey, "You need to be in the same region to use this function ..."); } } } | |
Notes | |
This function was added in 0.9.2 |
See Also
- osReplaceAgentEnvironment
- osReplaceParcelEnvironment
- osReplaceRegionEnvironment
- osResetEnvironment