// Give objects when poses are selected
{
link_message(integer sender_num, integer num, string str, key id){
string ms=llList2String(llCSV2List(str),0);
if (ms == "start" || ms == "startf") {
// CHANGE BELOW
if (num== 1) { // 1st pose on notecard
llGiveInventory(id, "object Name 1" ); // Give object by name
}
else if (num== 3) { // 3rd pose on notecard
llGiveInventory(id, llGetInventoryName(INVENTORY_OBJECT, 0 )); // The last zero means the 1st object in inventory
}
}
//else if (ms == "stop" || ms == "stopf") {
//}
}
}