Advertisement
salahzar

Pannello che si alza da solo

Jun 21st, 2012
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. vector pos;
  2. float startz=25; // partenza
  3. float endz=35; // arrivo
  4. float z;
  5. float increment=1; // incremento
  6. default
  7. {
  8.     state_entry()
  9.     {
  10.         // llOwnerSay("ciao");
  11.         pos=llGetPos(); z=startz;
  12.         list l=[];
  13.         integer i; z=startz;
  14.         llSetLinkPrimitiveParamsFast(0, [ PRIM_POSITION, <pos.x,pos.y,z>]);
  15.         llSetTimerEvent(.5);
  16.         llListen(1,"",NULL_KEY,"");
  17.     }
  18.     listen(integer ch, string name, key id, string str)
  19.     {
  20.         if(str=="RESET") llResetScript();
  21.         if(str=="STOP") llSetTimerEvent(0);
  22.     }
  23.     timer()
  24.     {
  25.         if(z>=endz)
  26.         {
  27.             llSetTimerEvent(0);
  28.             return;
  29.         }
  30.         z+=increment;
  31.          llSetLinkPrimitiveParamsFast(0, [ PRIM_POSITION, <pos.x,pos.y,z>]);
  32.            
  33.     }
  34.  
  35.     touch_start(integer total_number)
  36.     {
  37.         llResetScript();
  38.     }  
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement