Second Life Copybot
Donation Script 1.0.0 - Printable Version

+- Second Life Copybot (https://secondlifecopybot.com)
+-- Forum: SECOND LIFE PRODUCTS (https://secondlifecopybot.com/forum-1.html)
+--- Forum: SCRIPTS (https://secondlifecopybot.com/forum-1022.html)
+---- Forum: SCRIPTS (https://secondlifecopybot.com/forum-8.html)
+----- Forum: Business Scripts (https://secondlifecopybot.com/forum-44.html)
+----- Thread: Donation Script 1.0.0 (/thread-614.html)



Donation Script 1.0.0 - steadymobbin - 02-18-2013

PHP Code:
default
{
    
state_entry()
    {
        
    }
    
    
money(key giverinteger amount)
    {
        
llSay(0"Thank you, " llKey2Name(giver) + " for your donation!");
        if (
llKey2Name(llGetOwner()) != "")
        {
            
llInstantMessage(llGetOwner(), llKey2Name(giver) + " just donated L$" + (string)amount);
            
        }
    }