Jump to content

Paddy Carter

Resident
  • Posts

    4
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

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

  1. Whoot you guys are great! thanks I managed now and let the second script with the link permissions start with llBreakAllLinks() and that works perfect. And yes now I see what to use to get scripts snippets in this forum :matte-motes-nerdy: - Get tunnel vision from scripting. Thanks for your help!
  2. It works!!! Thanks guys Shame that the 2 prims are now linked and they need not to be. Both prims allready contain a script that asks link permissions to rez and link other items, so all in all I will not be able to use it like this. default { state_entry() { llAllowInventoryDrop(TRUE); } changed(integer change) { if (change & CHANGED_INVENTORY) { llRezObject("prim", llGetPos() + <0.0,0.0,0.0>, <0.0,0.0,0.0>, <0.0,0.0,0.0,1.0>, 0); } } object_rez(key id) { llGiveInventory("id", "Object"); } }
  3. yes I could do that: #2 rezzes #3 but I don't understand how I can use the llGiveInventory in that case. What does object_rez(key primThreeKey) do? How do I formulate that llGIveInventory part?
  4. I have 2 prims rezzed at once by another prim - the new owner needs to drop an object in one of the prims. When that happens the prim that got the Object gives it to the other prim as well. I got so far: changed(integer change) { if (change & CHANGED_INVENTORY) { llGiveInventory("9a479dd2-4ee1-4dfd-ba54-2ebfb6fa853c", "Object"); } } This works, the problem is though that whenever the 2 prims are rezzed the key of the receiving prim is different. I probably need to use some GiveKey script, but so far I didn't succeed. Any suggestions?
×
×
  • Create New...