I purchased a tip jar script with full perms to put in a object i am selling but the script gives an error of
: Invalid parameter in llGiveMoney().
i am not a scripter in any way that is why i buy full perm scripts for items when i need them so any help would be appreacated thank you in advance
key line1;
key keyactive;
string nameactive;
key splitwith;
integer percentage;
default
{
on_rez(integer param)
{
llResetScript();
}
state_entry()
{
line1 = llGetNotecardLine("config",0);
llSetText("Tip jar intactive", <1,1,1> ,1.0);
}
dataserver(key queryid, string data)
{
if (queryid == line1)
{
list templist = llParseString2List(data, [" "],[]);
splitwith = (key) llList2String(templist,0);
percentage = (integer) llList2String(templist,1);
llOwnerSay("Profit will be split with: "+llKey2Name(splitwith)+". Person will receive: "+(string) percentage+"%."
;llRequestPermissions(llGetOwner(), PERMISSION_DEBIT);
}
}
run_time_permissions (integer perm)
{
if (perm == PERMISSION_DEBIT)
{
state active;
} else
{
llOwnerSay("I need those permissions. Please reset me to try again."
;}
}
}
state active
{
on_rez(integer param)
{
llResetScript();
}
state_entry()
{
llSetText("Tip jar unassigned",<1,1,1>,1.0);
llSetPayPrice(PAY_HIDE, [PAY_HIDE, PAY_HIDE, PAY_HIDE, PAY_HIDE]);
}
touch_start(integer nr)
{
key toucher = llDetectedKey(0);
if (!llSameGroup(toucher))
{
return;
}
if (toucher == keyactive)
{
keyactive = NULL_KEY;
nameactive = "";
llSetText("Tip jar unassigned",<1,1,1>,1.0);
llSetPayPrice(PAY_HIDE, [PAY_HIDE, PAY_HIDE, PAY_HIDE, PAY_HIDE]);
} else
{
keyactive = toucher;
nameactive = llKey2Name(toucher);
llSetText(nameactive+"'s tip jar",<1,1,1>, 1.0);
llSetPayPrice(PAY_DEFAULT, [PAY_DEFAULT, PAY_DEFAULT, PAY_DEFAULT, PAY_DEFAULT]);
}
}
money(key id, integer amount)
{
integer split = llRound((amount * percentage) / 100);
integer tipreceiver = amount - split;
llGiveMoney(keyactive, tipreceiver);
llGiveMoney(splitwith, split);
llSay(0,"Thank you for your donation."
;}
}
and here is the note card
34353002-c0c7-4fdc-b232-a84ec3682b8f 10
# first line containts the key of the person to split profit with and the percentage in % seperated with a space
# for example:
b1c6f961-0e0c-4de1-ba69-307b9d58f742 10
# this would give me Goldorak Alonzo the creator of this script 10% of all tips. REMEMBER IT MUST BE ON THE FIRST LINE!!!
# to retreive the key of an avater use the key extractor or go to http://w-hat.com/name2key
but how do you change the default tip amounts?