Advertisement
salahzar

ascensore opensim su edmondo

Jan 17th, 2013
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. script pulsantiera:
  2. ===================
  3. default
  4. {
  5.  state_entry()
  6.  {
  7.      llSetText("Chiama l'ascensore\nQuando arriva siediti\n e indica il piano",<1,1,1>,1);
  8.  }
  9.  touch_start(integer count)
  10.  {
  11.     llShout(45,llGetObjectName());
  12.   }
  13. }
  14.  
  15. script pedana:
  16. ==============
  17. /*/|/ From the book:
  18. /|/
  19. /|/ Scripting Recipes for Second Life
  20. /|/ by Jeff Heaton (Encog Dod in SL)
  21. /|/ ISBN: 160439000X
  22. /|/ Copyright 2007 by Heaton Research, Inc.
  23. /|/
  24. /|/ This script may be freely copied and modified so long as this header
  25. /|/ remains unmodified.
  26. /|/
  27. /|/ For more information about this book visit the following web site:
  28. /|/
  29. /|/ http:/|/www.heatonresearch.com/articles/series/22/
  30.  
  31. */
  32.  
  33. float target;
  34. float SPEED = 2;
  35. list MENU_MAIN = ["Piano 0", "Piano 1", "Piano 2", "Tetto"];
  36. list COORD = [ 26.14, 33.19, 40.78, 47.88 ];
  37. integer CHANNEL = 45;
  38. float BOTTOM = 22.260;
  39.  
  40.  
  41.  
  42. default
  43. {
  44.     state_entry()
  45.     {
  46.         llListen(CHANNEL, "", NULL_KEY, "");
  47.         llSitTarget(<-0.8,0.80,0.8>, llEuler2Rot(<0,0,90>) );
  48.         llSetText("Sit Here to Ride Elevator",<0,0,0>,1.0);
  49.         target = BOTTOM;
  50.     }
  51.    
  52.     listen(integer channel, string name, key id, string message)
  53.     {
  54.         llSay(0,"received "+message);
  55.         integer idx = llListFindList(MENU_MAIN, [message]);
  56.         if( idx!=-1 )
  57.         {
  58.             llSay(0,"Elevator heading to " + message + "." );
  59.            
  60.             target=llList2Float(COORD,idx);
  61.             state moving;
  62.         }
  63.     }
  64.    
  65.     touch_start(integer count)
  66.     {
  67.         llDialog(llDetectedKey(0), "Where to?", MENU_MAIN, CHANNEL);
  68.     }
  69.  
  70.     changed(integer Change)
  71.     {
  72.         llDialog(llAvatarOnSitTarget(), "Where to?", MENU_MAIN, CHANNEL);
  73.     }
  74.    
  75. }
  76.  
  77. state moving
  78. {
  79.    
  80.    
  81.     state_entry()
  82.     {
  83.         llSetTimerEvent(0.1);
  84.     }
  85.    
  86.     timer()
  87.     {
  88.         vector pos = llGetPos();
  89.         float myz=pos.z;
  90.        
  91.         if( myz != target )
  92.        
  93.         {
  94.             if( pos.z>target )
  95.             {
  96.                 pos.z = pos.z - SPEED;
  97.             }
  98.             else
  99.             {
  100.                 pos.z = pos.z + SPEED;
  101.             }
  102.         }
  103.        
  104.         if(  llFabs(pos.z - target) < SPEED )
  105.         {
  106.             pos.z = target;
  107.             llSetTimerEvent(0);
  108.             llSetPos(pos);
  109.             llSay(0,"Elevator has reached its target." );
  110.             state default;
  111.         }  
  112.        
  113.         llSetPos(pos);
  114.        
  115.     }
  116. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement