LlGetTexture
De DigiWiki.
//Tells (on chat) the texture keys / texture names on 6 sides default { state_entry() { integer i = 0; integer max = llGetNumberOfSides(); while(i < max) { llSay(0,"Side " + (string)i + " texture is: " + (string)llGetTexture(i)); ++i; } } }