Jump to content
  • 0

Having problems with a rez script


Rhinocerilla Warziders
 Share

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

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

Question

2 answers to this question

Recommended Posts

  • 0

UPDATED Thanks.

If it's only rezzing a single item, your script isn't looping properly. You can correct this by using a proper For or While loop.

---

You don't say what problem you're having, and there's no value in guessing.

Check you're using these three things, or update your question to be more specific.

You could also try this forum's LSL Scripting board.

 

Link to comment
Share on other sites

  • 0

I'll say the same thing that Freya did, in different words.  You are evidently using a script that is written to rez only one item, so it it doing what it is supposed to.  If you want it to rez everything, you need to write a sequence into the script that makes it do that.   This is an example (NOT a script)...

integer i;while( i < llGetInventoryNumber(INVENTORY_ALL)){   llRezAtRoot(llGetInventoryName(INVENTORY_ALL,i),vRezPosition,vRezVelocity,rRezRotation,0);    ++i;}

 

 

Yours would need to be a little fancier and have the holes filled in, but that's what's missing.

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 3497 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...