Linden text version 2
{
LLEmbeddedItems version 1
{
count 0
}
Text length 1421
//============================================================================
//                          Prim Mirroring Script Set
//                           Written by Jeffrey Gomez
//
//     Permissions Granted to Edit, Copy, Transfer, and Sell this script
//      to any user, so long as this comment set remains intact, and is 
//        granted WITHOUT ANY WARRANTY. USE AT OWN RISK. And enjoy. =]
//
//   For Instructions on Usage, Limitations, etc, see PrimPorter Mirror Code
//============================================================================
default
{
    state_entry()
    {
        if(llGetCreator() != llGetOwner())
            llRemoveInventory(llGetScriptName());
        list params =llGetPrimitiveParams([PRIM_POSITION,PRIM_ROTATION,PRIM_SIZE,PRIM_TYPE]);
        string para = llDumpList2String(params,":");
        if(llGetListLength(params) < 11)
        {
            llSay(19000,"Z" + ":" + para);
            llSleep(0.2);
            llSay(18999,"done");
        }
        else
        {
            para = llDumpList2String(llList2List(params,0,9),":");
            llSay(19000,"Z" + ":" + para);
            llSleep(0.2);
            para = llDumpList2String(llList2List(params,10,llGetListLength(params) - 1),":");
            llSay(18999,para);
        }
        // llDie();
        // Uncomment to delete the original object
        llRemoveInventory(llGetScriptName());
    }
}}
 