Jump to content
  • 0

How do I make a donation box?


Ayana Auer
 Share

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

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

Question

1 answer to this question

Recommended Posts

  • 0

A donation box is a scripted object that Resident can right-click (CMD-click on Macintosh) and pay without receiving a service or object in return. You can make any object a donation box by adding a small script to it. To do so:

 

   1. Right-click the object inworld and choose Edit.

   2. Click on the Content tab. (Click More if you don't see it.)

   3. Click the New Script button.

   4. Delete everything in the script. Copy and paste the text in the box below.

   5. Click Save. If the compile is complete, close the script window and editing window. The Pay option should now appear in the pie menu when a Resident right-clicks on the object. Sample Donation Script:

 

 

default {

    touch_start(integer total_number) {

        llSay(0, "Please right-click me and select 'Pay...' to donate.");

    }

    money(key giver, integer amount) {

        string donor = llKey2Name(giver);

 

        llInstantMessage(giver,"Thank you for your donation, " + donor + "!");

        llInstantMessage(llGetOwner(),donor + " has donated '''L'''$" + (string)amount + " to you.");

    }

}

 

Once the script is installed, you can easily change the donation box's properties to accept left-clicks as well.

 

   1. If you've closed the editing window, right-click the object and choose Edit again.

   2. Make sure you're on the General tab in the Editor. (Click More if you don't see it.)

   3. At the bottom left, you'll see a dropdown list labeled When Left-Clicked:

   4. Set the option to Pay and close the editing window.

  • Thanks 1
Link to comment
Share on other sites

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