Jump to content
You are about to reply to a thread that has been inactive for 4326 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

Posted

does anyone have a script that allows me to change textures on a mesh clothing whiles wearing them, I have a script texture changer but this only works when I set the mesh to the ground and not when wearing

 

thanks

Posted

 

Have you tried this site?: http://www.3greeneggs.com/autoscript/

Place texture in item and put this script in and maybe it will help. Just chat /1234 change (or whatever word you put in the script that you want)

// This script was auto-generated by Ann Enigma's script autogenerator// available at http://www.3greeneggs.com/autoscript/// Note: You will need to copy both this script and a texture into your objectdefault{	state_entry() {		llListen(1234,"", NULL_KEY, "");	}	listen(integer channel, string name, key id, string message) {		if (message == "change") {		// set the texture		llSetTexture("YOUR-TEXTURE-NAME-HERE",ALL_SIDES);		}	}}

 

 

 

You are about to reply to a thread that has been inactive for 4326 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...