Jump to content

Script help please. - moving prim upwards


winkdinkerson
 Share

You are about to reply to a thread that has been inactive for 3061 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

Hi !  I used a lil online script generator. Basically the script should send the prim i am sat upon 50 metres higher each time i say ' /9 up ' in local chat.

But it does'nt matter what I change the Z co-ord value to, the prim I am sat on will only go up in exactly ten metre increments. I cannot fathom why.

// This script was auto-generated by Ann Enigma's script autogenerator

// available at http://www.3greeneggs.com/autoscript/

 default
{

state_entry() {
llListen(9,"", NULL_KEY, "");
}

listen(integer channel, string name, key id, string message) {
if (message == "up") {

llSetPos(llGetPos()+<0,0,50>);    // 50metres up 
}
}

}

 

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 3061 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...