Advertisement
salahzar

Untitled

Oct 10th, 2012
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. integer CHANNEL;
  2.  
  3.  
  4. default
  5. {
  6.     state_entry()
  7.     {
  8.         CHANNEL=(integer)llFrand(100000)+100000;
  9.         llListen(CHANNEL,"",NULL_KEY,"");
  10.         llSetScale(<1,1,1>);
  11.         llSetColor(<1,1,1>,ALL_SIDES);
  12.     }
  13.     touch_start(integer cnt)
  14.     {
  15.        
  16.         llDialog(llDetectedKey(0),"generale",["COLORE","DIMENSIONE","RESET" ],CHANNEL);
  17.     }
  18.     listen(integer channel,string name,key id,string str)
  19.     {
  20.         if(str=="COLORE") {
  21.             llDialog(id,"colore",["ROSSO","BLU","VERDE","BACK","RESET" ],CHANNEL);
  22.             return;
  23.         }
  24.         if(str=="DIMENSIONE") {
  25.             llDialog(id,"dimensione",["2","4","6","BACK" ],CHANNEL);  
  26.             return;
  27.         }
  28.  
  29.         if(str=="ROSSO") llSetColor(<1,0,0>,ALL_SIDES);
  30.         if(str=="BLU") llSetColor(<0,0,1>,ALL_SIDES);
  31.         if(str=="VERDE") llSetColor(<0,1,0>,ALL_SIDES);
  32.  
  33.        
  34.         if(str=="2") llSetScale(<2,2,2>);
  35.         if(str=="4") llSetScale(<4,4,4>);
  36.         if(str=="6") llSetScale(<6,6,6>);
  37.         if(str=="BACK")  llDialog(id,"generale",["COLORE","DIMENSIONE" ],CHANNEL);
  38.         if(str=="RESET") llResetScript();
  39.     }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement