Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- integer CHANNEL;
- default
- {
- state_entry()
- {
- CHANNEL=(integer)llFrand(100000)+100000;
- llListen(CHANNEL,"",NULL_KEY,"");
- llSetScale(<1,1,1>);
- llSetColor(<1,1,1>,ALL_SIDES);
- }
- touch_start(integer cnt)
- {
- llDialog(llDetectedKey(0),"generale",["COLORE","DIMENSIONE","RESET" ],CHANNEL);
- }
- listen(integer channel,string name,key id,string str)
- {
- if(str=="COLORE") {
- llDialog(id,"colore",["ROSSO","BLU","VERDE","BACK","RESET" ],CHANNEL);
- return;
- }
- if(str=="DIMENSIONE") {
- llDialog(id,"dimensione",["2","4","6","BACK" ],CHANNEL);
- return;
- }
- if(str=="ROSSO") llSetColor(<1,0,0>,ALL_SIDES);
- if(str=="BLU") llSetColor(<0,0,1>,ALL_SIDES);
- if(str=="VERDE") llSetColor(<0,1,0>,ALL_SIDES);
- if(str=="2") llSetScale(<2,2,2>);
- if(str=="4") llSetScale(<4,4,4>);
- if(str=="6") llSetScale(<6,6,6>);
- if(str=="BACK") llDialog(id,"generale",["COLORE","DIMENSIONE" ],CHANNEL);
- if(str=="RESET") llResetScript();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement