|
Must the password of a second life be entered into TATARA?
The serial box which you purchased tells you the password for which TATARA asks.
It is not a password of a second life.
I entered my name and password. But its still saying I'm not registered.
A user name distinguishes a capital letter and a small letter, and First Name and Last Name are separated by one space. Please check it. I recommend to use copy & paste of a keyboard shortcut for a registration of your name and password.
There seems to be a lack of place to get the serial box of TATARA in Second Life.
I bought TATARA serial box. But, I can't see my serial number.
Please Rez and touch a serial box. Then, a serial box displays Password only on you.
I registered TATARA. But I cannot save the texture of a sculpted prim.
Level of detail is not Near. Please set View - Level of detail to Near and check the global image of a sculpted Prim saved.
I made the sculpted prim of Torus. I uploaded it and applied it to the object. But it didn't become the expected form.
Please insert the following script in an object.
default
{
state_entry()
{
list src = llGetPrimitiveParams([PRIM_TYPE]);
list dst = llListReplaceList(src, [PRIM_SCULPT_TYPE_TORUS],2,2);
llSetPrimitiveParams([PRIM_TYPE] + dst);
llSay(0, "PRIM_TYPE_SCULPT is changed to PRIM_TYPE_TORUS");
llRemoveInventory(llGetScriptName());
}
}
Once it puts in, a form will change. This script is automatically deleted.
After you delete a script, a form doesn't change if it is copied.
I made the sculpted prim of Plane. I uploaded it and applied it to the object. But it didn't become the expected form.
Please insert the following script in an object.
default
{
state_entry()
{
list src = llGetPrimitiveParams([PRIM_TYPE]);
list dst = llListReplaceList(src, [PRIM_SCULPT_TYPE_PLANE],2,2);
llSetPrimitiveParams([PRIM_TYPE] + dst);
llSay(0, "PRIM_TYPE_SCULPT is changed to PRIM_TYPE_PLANE");
llRemoveInventory(llGetScriptName());
}
}
Once it puts in, a form will change. This script is automatically deleted.
After you delete a script, a form doesn't change if it is copied.
I made the sculpted prim of Cylinder. I uploaded it and applied it to the object. But it didn't become the expected form.
Please insert the following script in an object.
default
{
state_entry()
{
list src = llGetPrimitiveParams([PRIM_TYPE]);
list dst = llListReplaceList(src, [PRIM_SCULPT_TYPE_CYLINDER],2,2);
llSetPrimitiveParams([PRIM_TYPE] + dst);
llSay(0, "PRIM_TYPE_SCULPT is changed to PRIM_TYPE_CYLINDER");
llRemoveInventory(llGetScriptName());
}
}
Once it puts in, a form will change. This script is automatically deleted.
After you delete a script, a form doesn't change if it is copied.
Why I need "Copy Protection by transparent"? I don't understand why I need it.
When you edit a sculpted prim, the sculpt map is visible in the editor window. Someone can easily steal it with a screen capture. But if you make sculpt map transparent, you can prevent others from seeing your sculpt map when they have full permissions to the prim.
|