Scripts LSL - boîte aux lettres

De OSWiki
Révision datée du 4 octobre 2017 à 18:47 par Acryline (discussion | contributions) (Page créée avec « {| |<gallery> Fichier:Atelier llAllowInventoryDrop 001.png </gallery> |<source lang="ada"> default { state_entry() { llSetText("<Informations>",<1.0,1.0,1.... »)
(diff) ← Version précédente | Voir la version actuelle (diff) | Version suivante → (diff)
Aller à la navigation Aller à la recherche
<source lang="ada">

default {

   state_entry()
   {
       llSetText("<Informations>",<1.0,1.0,1.0>,1.0);
       llAllowInventoryDrop(TRUE );
   }
   changed(integer change)
   {
   if (change & CHANGED_ALLOWED_DROP)
       {llSay(0, "\n<Texte>");}
   }

} </source>