OsNpcSetProfileAbout
From OpenSimulator
(Difference between revisions)
m (Added permissions and delay information) |
m (Added note stating which version of OpenSim introduced this function) |
||
Line 41: | Line 41: | ||
See also [[OsNpcSetProfileImage]]. | See also [[OsNpcSetProfileImage]]. | ||
− | | | + | |additional_info=This function was added in 0.9.0-post-fixes |
}} | }} |
Revision as of 09:53, 15 October 2018
osNpcSetProfileAbout(LSL_Key npc, string about)
| |
Set about in created NPC's profile.
See also OsNpcSetProfileImage. | |
Threat Level | Low |
Permissions | ${XEngine|osslNPC} |
Extra Delay | 0 seconds |
Example(s) | |
// // osNpcSetProfileImageScript Example // key npc = NULL_KEY; string about = "I'm your Clone"; default { touch_start(integer number) { if (npc == NULL_KEY) { osOwnerSaveAppearance("MyClone"); llSetTimerEvent(2.0); } else { osNpcRemove(npc); npc = NULL_KEY; llRemoveInventory("MyClone"); } } timer() { llSetTimerEvent(0.0); npc = osNpcCreate("John", "Smith", llGetPos() + <0.0, 0.0, 2.0>, "MyClone"); osNpcSetProfileAbout(npc, about); } } | |
Notes | |
This function was added in 0.9.0-post-fixes |