Jump to content

winkdinkerson

Resident
  • Posts

    2
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. great help and info thankyou both ! Soooo ... llSetRegionPos (llGetPos()+<0,0,50>); look feasible ? Will try it in a bit
  2. 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...