Jump to content

Need a script, quick


AyaShula
 Share

You are about to reply to a thread that has been inactive for 2290 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

Hi!

I need a full perm script written tonight or tomorrow that will allow me to cycle transparency between 2 objects on touch (anyone's touch, not just the owner's)

Example: Object A is visible and Object B is invisible, and then once touched, Object B is visible/Object A is invisible, and so on. I don't mind if they are separate objects or just separate faces, whichever works.

Please send me an IM with a price but only if you can work immediately, I have a deadline and I should have messaged my regular scripter days ago :')

Link to comment
Share on other sites

7 hours ago, AyaShula said:

 tonight

tomorrow

only if you can work immediately

when tonight?

when tomorrow?

when is it tonight?

when is it tomorrow

same for "immediately" ...

 

people are here 24/7/365 ... it's always somewhere tonight, tomorrow, or immediately... what if you'r not here? how to read "immediately" than?

be a bit more clear if you have such strict unrealistic demands?

Link to comment
Share on other sites

8 hours ago, AyaShula said:

Hi!

I need a full perm script written tonight or tomorrow that will allow me to cycle transparency between 2 objects on touch (anyone's touch, not just the owner's)

Example: Object A is visible and Object B is invisible, and then once touched, Object B is visible/Object A is invisible, and so on. I don't mind if they are separate objects or just separate faces, whichever works.

Please send me an IM with a price but only if you can work immediately, I have a deadline and I should have messaged my regular scripter days ago :')

Link both objects together and then drop this script in.

integer alpha = 1;

default
{
    state_entry()
    {
        llSetLinkAlpha(1,alpha,ALL_SIDES);
        llSetLinkAlpha(2,!alpha,ALL_SIDES);
    }

    touch_start(integer total_number)
    {
        alpha = !alpha;
        llSetLinkAlpha(1,alpha,ALL_SIDES);
        llSetLinkAlpha(2,!alpha,ALL_SIDES);
    }
}

 

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 2290 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...