Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. message = TEXTURE,2,1,xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  2.  
  3. listen( integer channel, string name, key id, string message )
  4. {
  5. my_list = llParseString2List(message,[","],[""]);
  6.  
  7. if (llList2String(my_list,0) == "TEXTURE")
  8. {
  9. llSay(0, message);
  10. llSetLinkPrimitiveParams( llList2Integer(my_list,1), [
  11. PRIM_TEXTURE, llList2Integer(my_list,2), llList2Key(my_list,3), <1.0, 1.0, 0.0>, ZERO_VECTOR, 0.0]);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement