Jump to content

sgtmarkoes

Resident
  • Posts

    10
  • Joined

  • Last visited

Everything posted by sgtmarkoes

  1. Hello everyone, I'm looking for a scripter who can write a small script for me, SO let get right to it: Btw, this of for a hud. The basic idea of the script is, that I need a script that is able to push a button(s) and when you push a button a window will come up and if you push another button an other window will come up. So let me show you an example: for this example we will have 2 buttons and 2 windows(objects/page): for the buttons, one were going to call "Button 1" and the other were going to call "Button 2" for the windows: we will have "window 1" & we will have "Window 2" so on the image you see "Button 1" , "Button 2" & "Window1" now when I click on "Button 2' I want "Window1" to disappear and "Window2" to appear ( so you basically switching ) <check photo> and when you click "Button1" It will make "Windows2" disappear and "Window1" Appear that's basically it, it's like going to a different tab/page. if possible I want to leave some room in the script that I always can add more button's & windows in if necessary . I also want to mention That I want Full perms over the script(s) price is negotiable. Thank you. you can contact me here, or inworld мarcυѕ darrιυѕ (sgtmarkoes)
  2. Hello everyone, I'm looking for someone who could make me a small script, I will describe what I want to do with it, and then we can discus the price range. alright, so the thing that I want, it not that much, so prob it's not going to be a big script, but I'm also not sure if this is possible, anyways here we go: I want a script that if you click on a object an auto message will be send to a specific person in her/him IM box, The message that should be writing down is not important I can do that my self, and if possible I would also like to be able to change the key in the script so that I can set it up for multiple people, that's basically it. so the basic things I want is: - on click, auto message will be send to an IM box. - be able to change message & person key in script. Thanks you, and greetings Sgtmarkoes It's been taking care off.
  3. I see, well the reason I want that, is because I'm making a staff hud for a Adult club, and when the staff open the hud there will be a tab Called "Contact managers" so when the staff click on that tab they can contact any manager as soon as possible. well that's what I'm aiming for. that's why I wanted to know if there was a way to do that.
  4. HI mate, thanks for helping out, and that goes for everyone but have a small question, about the IM one, What is the best way to write the code? sure with a string and trigger on touch as far as I know, but not sure how, If they link a button and that button if you clicked on it, it will open or you can send a message to the person's IM (box) ?
  5. alright, so if I want to start creating a HUD in mesh, should I use a program like blender for it? or do you guys have other software recommendations ?
  6. Is the script that bad? haha, I mean for me now it's working fine, just need to rotate it I don't need much, it only needs to show what it need to show,, and that works fine. Btw Is there a way with scripting, if you click a "button" it will open the IM box of that person you want to contact?
  7. HI there I've take a look at the topic, Make sense to rotate them, But I'm not so good with LSL scripting tho, This thing is the only way that's stand in my way haha, I'm not sure where I need to put the line for it to get it to work, let me show you the script I use: there are 2 scripts, One is the "Receiver script" and the other one is the"HIde&show " script: Receiver script: // Hide Me Show Me - Transmitter Script // A full-permission Script by Der45Grayson // Please change the following two variables in this script // and in the "Hide Me Show Me Receiver" script integer myswitch; string action; integer MY_CHANNEL = 27; // Change this to a unique number string MY_Button_ID = "hideMe"; // The Button's unique ID name string MY_Object_ID = "hshud"; // The object's unique ID name // Then copy this script from your inventory (drag + drop). into your object that will act as the switch fore the object you want Hide/Show. default { state_entry() { myswitch=FALSE; action = "show"; llWhisper(MY_CHANNEL,MY_Object_ID+" "+MY_Button_ID+" "+(string)action); } touch_start(integer total_number) { if(myswitch==FALSE) { //Hide Tte Object myswitch=TRUE; action = "hide"; llWhisper(MY_CHANNEL,MY_Object_ID+" "+MY_Button_ID+" "+(string)action); } else { //Show Tte Object myswitch=FALSE; action = "show"; llWhisper(MY_CHANNEL,MY_Object_ID+" "+MY_Button_ID+" "+(string)action); } } } Show&hide script: integer MY_CHANNEL = 27; // This number must match the transmitter script string MY_Button_ID = "hideMe"; // This Button ID must also match string MY_Object_ID = "hshud"; // This Object ID must also match // Then copy this script from your inventory (drag + drop). into your object you want to Hide/Show. default { state_entry() { llListen(MY_CHANNEL,"",NULL_KEY,""); } listen(integer channel, string name, key id, string message) { if (llGetOwnerKey(id) != llGetOwner()) { // Only a Script owned by the same owner of this script will be acted upon return; } if (llSubStringIndex(message,MY_Object_ID+" "+MY_Button_ID) > -1) { string newsaction = (string)llGetSubString(message,(llSubStringIndex(message,MY_Button_ID+" ")+(llStringLength(MY_Button_ID)+1)),-1); // We have a new String commend named "newsaction". You can use this in several ways: // Change this prims alpha to 0.0: if(llToLower(llStringTrim(newsaction, STRING_TRIM))=="hide"){ llSetAlpha(0.0,ALL_SIDES); } // Change this prims alpha to 1.0: if(llToLower(llStringTrim(newsaction, STRING_TRIM))=="show"){ llSetAlpha(1.0,ALL_SIDES); } } } } so yeah these are the script(s) I use to hide & and show the rest of the hud, but not sure where to you need to add the rotation line? I also Know you got multiple ways to use the rotation function, I have no idea which one I need to use , I feel such a noob. I should learn LSL scripting to haha.
  8. Hello everyone, I'm currently working on a hud, and it goes well, but ran into a problem, I created a button and have the script to show?hide the hud, only problem is that when the hud is hided, the other buttons are still clickable,, SO I tried to change the script so when I hide it the it will also move the rest of the hud (that will be hiding) off screen, so it's not in the way anymore, and when you click the button agian to show it up again, it will go to the right position again. but it's not working for me, any idea's? would be great if you guys/gals can help me out. Thank you
  9. HI there. OK first things first to explain it what I want or if it's posible. I'm making a invitation for an event, When I'm done with that, I want to make the texture an object, and when the object is sended to the people, and the click on wear, the texture will pop up on the screen, like maybe fade in or something like that. so my question is, is that posible and also how much wil it cost for someone to make a script for me that will trigger the texture pop up on screen etc ? Best regards SgtMarkoes
  10. Hello everyone. I got a couple of questions. First off, I'm new tl Sl, I've been playing it now for a week or so, And really enjoy it. But I decided that I want to earn some money (L$) I'm pretty good with photoshop. And I've already made some profile pictures for friends, and they really liked it. and this is also the subject what I want to disscus or want to know. so here are the questions: 1. Can you sell premade profile pictures on the sl marketstore? 2. If so, can you also setup profile pictures examples, that people can use for a custom made one ( so they well see a profile picture they like ( design ) and they can order it, and then I can make it for them[when they have send a picture of there avatar] and send the finished result to them.) 3. under which should you sell profile pictures? category 4. what is the best price range for profile pictures? ( you can find an example profile picture I made on the bottom ) EXAMPLES PROFILE PICTURES I MADE: picture 1 : http://s1.postimg.org/4s2smzxhb/girlpowerd.png picture 2 : http://s1.postimg.org/ahj17b3nj/pfpic_1.png
×
×
  • Create New...