Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- vector pos;
- float startz=25; // partenza
- float endz=35; // arrivo
- float z;
- float increment=1; // incremento
- default
- {
- state_entry()
- {
- // llOwnerSay("ciao");
- pos=llGetPos(); z=startz;
- list l=[];
- integer i; z=startz;
- llSetLinkPrimitiveParamsFast(0, [ PRIM_POSITION, <pos.x,pos.y,z>]);
- llSetTimerEvent(.5);
- llListen(1,"",NULL_KEY,"");
- }
- listen(integer ch, string name, key id, string str)
- {
- if(str=="RESET") llResetScript();
- if(str=="STOP") llSetTimerEvent(0);
- }
- timer()
- {
- if(z>=endz)
- {
- llSetTimerEvent(0);
- return;
- }
- z+=increment;
- llSetLinkPrimitiveParamsFast(0, [ PRIM_POSITION, <pos.x,pos.y,z>]);
- }
- touch_start(integer total_number)
- {
- llResetScript();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement