Script Me

Descobri hoje este site para criar facilmente scripts para objetos no Second Life.

Você faz apenas algumas escolhas, em função do que deseja que o seu objeto faça, e ele está pronto!

Escolhi p.ex., para o meu objeto:

Give something to an avatar
notecard (na janelinha)
When an avatar touches your object

e eis o meu script:

// This script was auto-generated by Ann Enigma’s script autogenerator
// available at http://www.3greeneggs.com/autoscript/
// Note: After you copy this script into your creation, you will also need to copy the item to give into the object

default
{

touch_start(integer total_number) {

// This line will pick out the first thing of the right type and give it to whomever triggered the event
llGiveInventory(llDetectedKey(0),llGetInventoryName(INVENTORY_NOTECARD,0));

}

}

Deixe uma resposta.