Jump to content

SeeAirAhh Josephina

Resident
  • Posts

    59
  • Joined

  • Last visited

Everything 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. I'm looking for a system that will allow me to kick and ban an all parcels I own. Tried a product on MP that did not work, hoping someone has a suggestion. Please IM SeeAirAhh Josephina, thanks in advance.
  3. IM SeeAirAhh Josephina if you make custom motorcycle tracks
  4. Thanks all, I'll have to use the mesh spheers and a script to move the texture
  5. Hi, not sure how this can be done but at my place I have Cinderella and the Fairy Godmother, how can I have particles come from her wand and arch over and down around Cinderella (like the movie)?? I thought about using tiny mesh orbs which could do the job but would not be as realistic as particles but I have no idea if particles can even do this?
  6. Still looking for a dependable storyteller We have storytime every Saturday at 10 AM, I need a dependable story teller who uses voice to read childrens books, pays 500L every Saturday, please IM SeeAirAhh Josephina if interested.
  7. We have storytime every Saturday at 10 AM, I need a dependable story teller who uses voice to read childrens books, pays 500L every Saturday, please IM SeeAirAhh Josephina if interested.
  8. 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.
  9. 'doh' should have tried it before posting, I answered my own question lol
  10. I'm trying to substract 2 from total inventory, the full string is items_contained = llGetInventoryNumber( INVENTORY_ALL ); so if I wanted to subtract 2 from the inventory would that be like llGetInventoryNumber( INVENTORY_ALL ) - 2 or?
  11. I've finally found the answer to my original question; it says here http://wiki.secondlife.com/wiki/Groups_and_Land - "The land tier comes out of the donor's account. The donor still pays for the donated land tier." So I am still responsible for tier on the land regardless of whether it's owned by me or my group.
  12. 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 } }
  13. 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 } }
  14. 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.
  15. Oh that made all the difference, thank you so much.
  16. 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.
  17. 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?
  18. What is the definition of liabilities in this case?
  19. 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.
  20. 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"
  21. 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.
  22. I need someone with a deep Vincent Price type voice to do, I think 8 lines for a ride. This is probably 15 minutes of work, we can come to a fair price. Contact SeeAirAhh Josephina in game if your interested.
  23. Position is still open, L500 each week for 15 - 20 minutes of copy/past from a notecard as a minister. Want to know about me, feel free to come talk to me in person.
×
×
  • Create New...