02-21-2007 10:36
hi there ,

i am a very newbie in scripting - and till now i made changes in prims happens (llSetPrimPar...) yeah and it works :-)

now i want a simple rotation script (do i go to fast in learning !? *lol)
i searched the lslwiki and here is what i found (and i think i do understand what is there explaining) but when i put this in a new script ... nothing happens ... why ?

default
{
state_entry()
{
float x = 0.0;
float y = 0.0;
float z = 0.0;
float s = 1.0;
rotation rot_a = <0.0, 0.0, 0.0, 1.0>;//copies these values into the respecive values of the rotation.
rotation rot_b = <x,y,z,s>;//copies the values of the variable into the rot.
rotation rot_c = rot_b;//copies the value of rot_b into rot_c
}
}

you are welcome to laugh if this above is complete wrong *lol