Jump to content

winkdinkerson

Resident
  • Posts

    2
  • Joined

  • Last visited

Posts posted by winkdinkerson

  1. 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 
    }
    }

    }

     

×
×
  • Create New...