Jump to content

drop box question


Xander Lopez
 Share

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

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

Recommended Posts

So I can see that there are plenty of notecard dropbox scripts available in sl.  People use these drop boxes so they can collect notecards from people for feedback or application purpose.

So here is the real question...  Is there a way for my friends to access to the dropbox contents tab without me giving them my modify right? i would like my friends to pick up some notecards from the suggestion drop box, and even delete some notecards from the box.

I was looking through syntax which could do this but I seem to have hard time finding one...

Link to comment
Share on other sites

2 hours ago, Xander Lopez said:

So I can see that there are plenty of notecard dropbox scripts available in sl.  People use these drop boxes so they can collect notecards from people for feedback or application purpose.

So here is the real question...  Is there a way for my friends to access to the dropbox contents tab without me giving them my modify right? i would like my friends to pick up some notecards from the suggestion drop box, and even delete some notecards from the box.

I was looking through syntax which could do this but I seem to have hard time finding one...

Yes, simple llGiveInventory will give a notecard as shown below:

    touch_start(integer total_number)
    {
        key ID = llDetectedKey(0);
        llGiveInventory(ID, llGetInventoryName(INVENTORY_NOTECARD, 0) );
    }

OK, now the more complex thing - you want them to be able to pick a notecard and delete it. One way to do it, build a list of the notecards, present this list in a dialogue-box with options for GIVE and DELETE.

Use llGetInventoryName to do the proper action either llGiveInventory or llRemoveInventory

Find inspiration in Kira Komarov's http://wiki.secondlife.com/wiki/Giver and  @Rolig Loon's excellent A Simple MultiPage Dialog Menu System

Link to comment
Share on other sites

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