Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- vector startPosition;
- default
- {
- state_entry()
- {
- llSetPhysicsMaterial( GRAVITY_MULTIPLIER, 0.0001 ,0.0, 0.0, 0.0 );
- startPosition = llGetPos();
- llSetTimerEvent(5);
- }
- timer()
- {
- startPosition.z +=1;
- llMoveToTarget(startPosition, 1.0);
- llSetTimerEvent(0);
- }
- moving_end(){
- llOwnerSay("at target1");
- llStopMoveToTarget();
- }
- at_target(integer tnum, vector targetpos, vector ourpos){
- llOwnerSay("at target2");
- llStopMoveToTarget();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement