Jump to content

Lunar Tripsa

Resident
  • Posts

    22
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. oh yes, that would help. The 1st game is a single player puzzle game. It's all one linked set, no huds. The second partially done game is a connect 4 style game for 2 players with some additional features. Also a link set with no HUD.
  2. Hello, I was working with a scripter who due to RL is no longer in SL. She did the scripting of one game and started a second. There is an issue with the first game and I have no idea how to fix it. The second game is somewhere around half done I think. I know how difficult it can be to work on someone else's scripts. I do most of my own scripting but two player games are beyond my current skill level. The first game has an issue that might be due to change of ownership, but I can't duplicate it with alts. I've seen it in world but it's over my scripting knowledge level. I figured I'd pay you for your time for fixing the 1st game, but if you're interested in working on the 2nd game I'd consider a 50/50 split or paying for your time. If you're interested please let me know. I really want to get the game fixed! My email is lunartripsa@gmail.com or message me in world at Lunar Tripsa. I'll send you the games so you can see if it's something you would enjoy working on and we can take it from there. Thanks!
  3. ohhhhhh, thats much simpler then I thought it was gonna have to be! thanks!
  4. Hello, I'm trying to decide what direction to take with a project. Ideally I'd like the user to type something into a text box, then have the script ignore everything but the first word. I have no idea how to do that though since I won't know how many letters the first word will have. Any help would be great, Thanks!
  5. Hi Everyone, I'm tring to figure out a script for a game and I need a little help in what direction to go with it. If only one person was going to be playing I;d have no problem with this, but I;d like to be able to have several people play at once. Player A clicks a piece then clicks where he wants the piece to go. Player B is doing the same thing. It will not be turned based so there may be two or more active pieces waiting for locations at the same time. I can record the uuid of the touchers and what was touched but when they touch the location for the piece to go, whats the best way for that spot to get the info? Any help would be great! This is new tterritory for me.
  6. Oh thats perfect!!! Thank you so much!!!
  7. Thanks so much for your replies! Those examples aren't exactly what I'm trying to do though. I want one of the steps to fire, then the next time the timer goes, do a diffrent step. It could be random or in order. I'm just not sure how to set it up to make the timer do something diffrent each time.
  8. Hello, I think and hope this is a simple thing... I'm working on a timer script that will change several different variables each time the timer fires and I'm blanking at how to take what I have a feed it into the timer. Any help would be greatly appricated! integer min = 30; integer max = 180; Step1() { //do stuff } Step2() { //do stuff } Step3() { //do stuff } default { state_entry() { // llSetTimerEvent( max - llFrand(min) ); } timer() { //? }}
  9. I'm making a table setting and want each avatar to be able to pick what they want on their plate from dishes on the table. I don't know how many place settings there will be and don't want to link everything becuase of other scripting things happening as well as letting the next owner easily adjust things to fit their needs. Other scripting will clear the table when the meal is finished so all objects with Listen will be removed.
  10. Hello! I'm trying to either figure out how to go about doing this, or if it be better to go in a different direction. I'd like to have an avatar click on an object which will then say something to anouther specific object. I could have the avatar sitting on the specific object if that helps. I was thinking if I passed the avatar key back and forth, The touched object would remeber the avatars key then say it back. If one of the other abjects nearby was being sat on by that avatar it would do whatever it's supposed to do. I was wondering if there was a better way though. Ideally I'd rather not have the avatar sitting on it. Thanks for any possible help!
  11. Oh thanks those look great! I can't wait to get home and try them! (at work right now shhh!) My diallog script has a bunch of submenus and the menu in question will have at most 12 buttons (Currently 9), 2 or 3 of which will always be there. The context is a playhouse that rezzes decor through the menu. The decor comes in packs which will be sold sepperetly so thats why I only want it to show the correct buttons only for the sets they want. The sets have several items in them so I want the menu to look for a specific item then put a button up to lead to the submenu with the individual items. I have all that working perfectly except for the button showing or not showing so I can't wait to try the suggests and get it all done! It's goint to be a long day at work though since I want to get home and script! Thanks everyone!!!
  12. Actually I;m not sure if that would work because I have items that are in the onventory that don't need to be counted. I do use lists, but literal ones that you can see. The ones you can't see as a visual list are what get me. But I like the challenge of it all and learning a new part is so much fun! Thanks!
  13. okay I think I get that. Going to work on it when I'm fresh tomorrow. Thanks so much! I really do want to make this work because when it does it's gving me so many other ideas. On a similar matter: I tried using llGetInventoryType to check if a specific item was in the inventory and if not say so but it keeps bringing up the Mmenu and not the Jmenu. I'm hoping this is something simple I'm just missing? if(message == "Yard") { if (llGetInventoryType("Front Yard")){ displayDialog(id,"Front Yard Items...", Mmenu, 0); }else { displayDialog(id, "This item is not in the prims inventory", Jmenu, 0); } }
  14. Thanks for your reply! I've seen that utility before and found it to be over my head currently in terms of practical application. I have a mental block when it comes to lists lol. But I do see what you mean. I also haven't worked much with changed events. So I could give it a list of all the possiblities and check to see whats on that list. and only those items would be put on buttons. Hmmm thats going to take a it of trail and error I think. I agree it be good to sense when something is removed, however that shouldn't be an issue in this case.
×
×
  • Create New...