Jump to content

SeeAirAhh Josephina

Resident
  • Posts

    59
  • Joined

  • Last visited

Posts posted by SeeAirAhh Josephina

  1. I use the following timer to start an event, I'd like to be able to have timers in other places on the parcel that also countdown in sequence.  IM me in world if your interested in the job SeeAirAhh Josephina

    state wait
    {
        state_entry()
        {
            count=0;
            llSetTimerEvent(1.0);
        }
    
        on_rez(integer num)
        {
            llResetScript();
        }
        
        timer()
        {
            llSetText("Next parade in: "+(string)(600-count)+"s\n \n \n ",<1,1,1>,1.0);
            count++;
            if (count>600)
                 state startparade;
            }
        }

     

  2. Performances:

    9 A.M. till 10 A.M.
    Shannon Oherlihy
    Shannon McMahon, a singer/songwriter, creates contemporary folk music with rich vocals and songs that resonate with a strong sense of the human experience.  

    10 A.M. till 11 A.M.
    Britt Trafalgar
    Live and direct from her ironing board in Cumbria, UK, Britt is fairly new to the SL entertainment scene. She sings an eclectic range of popular music. Her first love though is the songs of the 60's. Britt hopes to sing a song you've long forgotten but remember you loved. With a lively sense of humour, she aims to bring a smile to your face. 

    11 A.M. till 12 P..M.
    Rock Doghouse
    Songwriter., Singer, Piano, Guitar, Bass, 11 years in SL performing. 3 years performing on stages in first life.

    12 P.M. till 1 P.M.
    Ichie Kamachi
    With a voice reminiscent of such Jazz greats as Nina Simone and Billy Holiday, this songstress has made a name for herself in SL with her repertoire of jazz and blues.  That is not all she does however, an Ichie show may also include country, pop, light rock, Hawaiian and her trademark "Naughty Song".  Ichie may be one of the most versatile performers in Second Life. If you are looking for a voice that is sultry, sensuous, and as smooth as butter, who can both chill out a room and heat it to a frenzy, look no further. With a heart as big as her voice, I guarantee you will not be disappointed

    1 P.M. till 2 P.M.
    Beccca Baxton
    Beccca Baxton has a wide variety of music that includes thousands of songs. Genres range from Jazz and Blues, Country, Ballads, R&B, Oldies, Pop Current , the ones mama didn't teach us lol songs.  She loves to sing romantic songs.  Especially the ones that reach into your heart and speak to you.  She sings with great passion for music. You hear it and you will feel it.  Beccca loves singing for others and doing dedications.  She considers herself a very romantic person.  Music is her heart and she mixes in her love for humor ,witt, and life-stories  into her performances. She loves to change up lyrics & add audience members name's into her songs & as dedications  She has been singing in RL for  many years since she was a young age.(smiles) Always live never recorded

    2 P.M. till 4 P.M.
    St. Columba School to perform
    The St. Columba Catholic Children's Choir is proud to present their hit show, "SCCBS Gold - The best of the St. C Choir". This hour long show covers a wide range of hits from Broadway to Disney to Spiritual and will leave you with a feeling of joy and happiness. This traveling performance group from St. Columba Catholic Boarding School has performed over 150 shows across the SL grid with its tribute choir bringing the message of love and hope to audiences everywhere. Please join us for a fun "sing-a-long" and toe tapping experience.

  3. Like this?  It's still giving me an error

    integer count;
    
    default
    {
        state_entry()
        {
            count=0;
            llSetTimerEvent(1.0);
        }
    
        on_rez(integer num)
        {
            llResetScript();
        }
        
        timer()
        {
            llSetText("Countdown in: "+(string)(120-count)+"s\n \n \n ",<1,1,1>,1.0);
            count++;
            if (count>120)
    //do something
    }
    }

     

  4. I bet this is going to be something simple but I can't figure out what I'm doing wrong, thanks in advance for any help.

    default
    {
        state_entry()
        {
            count=0;
            llSetTimerEvent(1.0);
        }
    
        on_rez(integer num)
        {
            llResetScript();
        }
        
        timer()
        {
            llSetText("Countdown in: "+(string)(120-count)+"s\n \n \n ",<1,1,1>,1.0);
            count++;
            if (count>120)
    //do something
    }
    }

     

  5. In the end whoever initially bought the land pays the tier correct?   Even if they deed their land to a group they are still responsible for paying the tier until the land is sold?  Maybe you guys keep answering this question and for some reason it's not sinking in (kind of like when someone tried to teach me greedy), I'm sorry if thats the case.  In my group the only role which has the  "Pay group liabilities and receive group dividends" role are the owners.  I have thought of having all the owners take an Officer role and leave a "accountant alt" as the owner just so I can control who has to pay for Search fees.

  6. 12 minutes ago, MoondustMaia said:

    The group itself doesn't pay the monthly land tier - it is the account(s) that donate tier to the group which are charged monthly tier, and their monthly charge is the total of the individual account's land holdings, including tier they have donated to groups.   An account may parcel(s) that they own individually, and the account may also have tier donated to one for more land groups - their monthly charge is the tier level for the total of tier they use and/or donate.  

    Ahh so tier has nothing to do with group in my case if I'm the only one who has donated the land then I'll be the only one charged.  

  7. I was trying to make a hud that would give the owner a choice of URL's to load using a dialog menu, unfortunately it's not working;

    string button1 = "Google";
    string button2 = "MSN";
    string button3 = "Yahoo";
    
    list MENU = [button1,button2,button3];
    
    string menu_message = "Multi URL Hud";
    
    integer DIALOG_CHAN;
    integer listen_handle; 
    
    default
    {
        touch_start(integer total_number)
        {
            if (listen_handle != 0)
            {
                llListenRemove(listen_handle);
                listen_handle = 0;
            }
            listen_handle = llListen(DIALOG_CHAN,"","","");
            
            llDialog(llDetectedKey(0),menu_message,MENU,DIALOG_CHAN);
        }
        
        listen(integer channel, string name, key id, string message)
        {
            if( channel == DIALOG_CHAN)
            {
                if(message == button1)
                {  
        key     id              = llDetectedKey(0);
        integer avatarInSameSim = (llGetAgentSize(id) != ZERO_VECTOR);
            if (avatarInSameSim)
            {
                string info = "Google";
                string url = "http://www.google.com/";
                llLoadURL(id, info, url);
            }
            else
            {
                llInstantMessage(id, "I can only open a URL dialog on your screen if you're in my sim!");
            }
                }
                if(message == button2)
                {  
                    llSay(0,llKey2Name(id)+" now you clicked button 2"); 
                }
                if(message == button3)
                {  
                    llSay(0,llKey2Name(id)+" now you clicked button 3"); 
                }            
                llListenRemove(listen_handle);
                listen_handle = 0;    
            }
        }
    }

    Should the detect avatar key be at the top?

  8. 28 minutes ago, Rowan Amore said:

    Group dividends are distributed equally among all group members who have the Pay group liabilities and receive group dividends ability associated with their role. Likewise, all group liabilities are also spread evenly among group members with this ability.

    If no one else in the group has this ability, then group liabilities and dividends are paid to the group's owner.  If there are no enabled accounts in the group that have the Pay group liabilities and receive group dividends ability, then liabilities and dividends are spread evenly between group members.

    What is the definition of liabilities in this case?

  9. I put in a support ticket because the definition for that ability is, "Members in a Role with this Ability will automatically pay group liabilities and receive group dividends. This means they will receive a portion of group-owned land sales which are distributed daily, as well as contribute towards things like parcel listing fees. " Parcel listing fees are a lot different from paying land tier.

  10. Thank you for the replies but  I feel more confused now, I think I'll look through the roles and try to make sure no one else is paying for land.  

    Edit: So whoever has this tag pays for Mainland tier correct? "Pay group liabilities and receive group dividends"

     

  11. I have 1/8 sim mainland which is $35/month, today I deeded the land to my group.  I'm unsure about a msg I received saying something like my group needs to have enough (credits?) for the land.  Do I somehow pay for my mainland through the group or?  I understand that if the land is sold while belonging to the group all group members get an equal share I just don't understand now how the $35 is paid monthly.

    Thanks in advance for your help.

×
×
  • Create New...