physics script

default
{
   state_entry()
   {
       llSetStatus(STATUS_PHYSICS, TRUE);      //Apply realworld physics.
   }
}
simple teleporter script

default
{
   state_entry()
   {
       llSay(0, "sit on me and I push you 3 meter up");
       llSitTarget( < 0, 0, 3 >, ZERO_ROTATION );
   }

   changed (integer change)
   {
       if (change & CHANGED_LINK)
       {
           key av = llAvatarOnSitTarget();
           if (av)
           {// somebody is sitting on me
               llUnSit(av); // unsit him        
           }
       }
   }
}
AV key finder / key detector script

string name;
string keey;

default
{
   touch_start(integer total_number)
   {
              name = llDetectedName(0);
       keey = llDetectedKey(0);
               llSay(0, name + ", your UUID is: " + keey );
   }
}
hover text script

default
{
   state_entry()
   {
       llSetText("free afk tshirt", <0.0,1.0,1.0>, 1);
   }
}
rotation script

default
{
   state_entry()
   {
      llTargetOmega(<0,0,1>,PI,1.0);
   }

}
notecard giver script

default
{
   touch_start(integer count)
   {
       integer i;
       for ( i = 0 ; i < count ; ++i )
       {
           key who = llDetectedKey(i);
           string card = llGetInventoryName(INVENTORY_NOTECARD, 0);
           llGiveInventory(who, card);
       }
   }
}
if you need to send a lot of stuff to a friend/another account send it in a single folder. currently max. 43 objects (sub-folders included). Just drop the folder on the “drop item here” button in the profile of the reciving avatar.
beware of scam and fraud in sl! if you pay a person or a object and you dont get what you thouht of or even get nothing, nobody can help you in most of the cases. always think twice before paying large values to a resident.
rezz faster

if u want to rezz special objects first or faster, simply right-click them.
copyright micronex gbr Germany. Second Life® and Linden Lab® are registered trademarks of Linden Research, Inc. No infringement is intended.