Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

sq that rotats but stops on one of the 4 box sides for about 1 min then rotats again.

AJUK Baldwin
Registered User
Join date: 23 May 2004
Posts: 11
10-30-2005 10:02
i was wondering , i am no scripter but i want a script that rotates a box and stops for 1 min on each of the 4 sides of the box can this be done, if so IM me in World AJUK Baldwin

next question
i am looking for a scripter who can do a custom elevator for me
will pay well if you can do it how i want it.
the elevator only needs to go between 2 floors when it arrives on the floor the elevator sends a msg to the slid doors on that floor to open (the doors are not attached to the elevator that goes between floors) also need to have a call button on both floors once again when you press the call button if the elevator is not there it will call it down once it arives the doors will open (doors only open when the elevator is on that floor)
in the elevator is a up down button and hold open doors (while the elevator is on the active floor that is)
if you are a good scripter and think this is a good thing for you to do IM me ok.
also i own a sim called slollywood if you can do this elevator for me and dont mind scripting custom stuff i will join you to my studio staff in my studio sim lots of fun scripting stuff to do in the studio and will be a good chalange for a good scripter.
all the best
AJUK Baldwin :o
_____________________
I Am As Old As The Hills And As Young As The Days :p
Bounder Jimenez
programmer/designer
Join date: 12 Oct 2005
Posts: 45
10-31-2005 13:53
rotate()
{
rotation rot=llGetLocalRot()*llEuler2Rot(0,0,<90*DEG_TO_RAD>;);
llSetLocalRot(rot);
}

default
{
touch_start(integer total_number)
{
rotate();
llSetTimerEvent(60.0);
}
timer()
{
rotate();
}
}