Ce script permet de changer la couleur d'un objet par menu ou par le chat. Je l'ai realise pour vanessa donc je l'ai appelle comme ca :)
mettre dans l'objet a cliquer le script :
- vanessa_color_chooser_btn
- notecard colors
script vanessa_color_chooser_btn :
// ssm2017 Binder : Vanessa color chooser
// @copyright Copyright (C) 2007 ssm2017 Binder (S.Massiaux). All rights reserved.
// @license GNU/GPL, http://www.gnu.org/licenses/gpl-2.0.html
// ssm2017_authdoor_diaph is free software. This version may have been modified pursuant to the
// GNU General Public License, and as distributed it includes or is derivative
// of works licensed under the GNU General Public License or other free or open
// source software licenses.
key colorsNoteCard;
list colorNames = [];
list colorValues = [];
integer iLine = 0;
integer menuChannel = -987654;
integer chatChannel = 999;
string questionString = "Choose a color :";
default
{
state_entry()
{
colorsNoteCard = llGetNotecardLine("colors",iLine);
llListen(chatChannel, "", llGetOwner(), "");
llListen(menuChannel, "", llGetOwner(), "");
}
touch_start(integer total_number)
{
llDialog(llGetOwner(),questionString, colorNames, menuChannel);
}
dataserver(key queryId, string data)
{
if ( queryId == colorsNoteCard )
{
if(data != EOF || iLine < 12)
{
if ( llGetSubString( data, 0, 1) != "//" )
{
list parsed = llParseString2List( data, [ "=" ], [] );
colorNames += [llList2String( parsed, 0 )];
colorValues += [llList2String( parsed, 1 )];
}
colorsNoteCard = llGetNotecardLine("colors",++iLine);
}
else
{
llOwnerSay("Colors Notecard Read.");
}
}
}
listen(integer channel, string name, key id, string msg)
{
if ( channel == chatChannel || channel == menuChannel )
{
integer colorId = llListFindList( colorNames, [msg] );
llSay( -999, llList2String( colorValues, colorId ) );
}
}
changed(integer change)
{
if (change & CHANGED_INVENTORY) //note that it's & and not &&... it's bitwise!
{
llResetScript();
}
}
}
exemple de notecard colors :
red=1,0,0
green=0,1,0
blue=0,0,1
cyan=0,1,1
magenta=1,0,1
yellow=1,1,0
white=1,1,1
black=0,0,0
grey=0.5,0.5,0.5
script vanessa_color_chooser ( a mettre dans l'objet devant changer de couleur ) :
// ssm2017 Binder : Vanessa color chooser
// @copyright Copyright (C) 2007 ssm2017 Binder (S.Massiaux). All rights reserved.
// @license GNU/GPL, http://www.gnu.org/licenses/gpl-2.0.html
// ssm2017_authdoor_diaph is free software. This version may have been modified pursuant to the
// GNU General Public License, and as distributed it includes or is derivative
// of works licensed under the GNU General Public License or other free or open
// source software licenses.
default
{
state_entry()
{
llListen(-999, "", "", "");
}
listen(integer channel, string name, key id, string msg)
{
if ( channel == -999 )
{
llSetColor( (vector)( "<" + msg + ">" ), ALL_SIDES );
}
}
}
|