Jump to content

Sentient Zaurak

Resident
  • Posts

    13
  • Joined

  • Last visited

Reputation

3 Neutral

Recent Profile Visitors

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

  1. I would like to hire a clothing designer that may be able to make a replica of the jacket and pants and boots in the attached image. If this is something you would like to take on, IM me in world and state your price for design. I have views from all sides for reference. Thank you for your time.
  2. So with this whole lock down thing going on. It can be hard to wake up and go to the same room to work or even sit home while you are cleared for work. But the main one is, being a front line responder in some way and having to deal with everything that comes with it. So I would like to invite you to a free full music session hosted by 88.3 fm in Auckland doing non stop music and requests hosted by Sencorp Ltd. If you could go for dedication and requests of music, Tune in here , http://142.4.217.133:10114/index.html?sid=1 and message me in pm for requests.
  3. I have a few things I can show you that I think may fill in the gaps for both of us really. Give me a shout next time your on. Thanks for giving it a go to find a solution. And thank you too Steph. Once this is working and working well I am posting it up so others that may be looking for the same thing, wont ever have to go through this.
  4. To clear up a couple of points, I am working on a project for a simulator project. This is need of both targeting objects as well as AVI. I have just about everything I need. In fact, I have purchased 3 full perm scripts that have claimed to do exactly what I need but it appears that something is out of date because it will not track and send where it needs to go. Spoke with one of the creators to get some help fixing what I purchased and they contacted me and said they would work on fixing it but now have gone off the radar. Not answering email nor messages or sent note cards. In the end I am purchasing full perm scripts that come close to what i want to do.. (Or what the original purchause should have done by its descritpion but $60. USD later on one script and $20 on another and then another $20 on yet another, All that do not do what they claim because of what appears to be out of date scripting maybe?) I am still having to work it out my self. What I am hoping for is someone that would be willing to give me a hand with getting my pieces to come together. I admit that I am not up to speed on all the aspects of coding in world as there is alot that has changed. If you take the latest script I have posted and drop that into a prim you will see the basics of what I am doing. The last step is to add an option to the menu to rez an object with a link set invintory item that is directed to the location of the Avi, or Object. If anyone would like to come have a closer look at what it is i have please let me know, I have my own land where I work on builds and am testing items so feel free to contact me in world. Sorry to have caused any strife over the subject.
  5. Thanks for that. I am actually very close to what I need to do but, having a bit of struggle on merging my scripts. This script below will scan for Avi's and will display them on the menu, i can then choose one from the list, and it sends a object to them, but as an inventory item. What I really want to do is rez a prim, and that prim then auto travels to that selected Avi. The two parts I am struggling with is getting the menu to see objects as well as avatars, and, getting it to rez the follow object. Menu scanner key contenido;string fcontenido;integer CHANNEL=423321;list visitor_list;list visitor_key;float rate = 30.0;float range = 50.0;integer count;key owner;integer max;list MAIN=["Scan","Load Missile","Reset","Missile Types ◄"];string M_MAIN="Choose one Avatar";list E_MENU=["<<",">>"];integer isNameOnList( string name ){ integer len = llGetListLength( visitor_list ); integer i; for( i = 0; i < len; i++ ) { if( llList2String(visitor_list, i) == name ) { return TRUE; } } return FALSE;} default{state_entry() { }touch_start(integer num) { owner=llGetOwner(); llListen(CHANNEL, "", owner, ""); llDialog(owner, "Pick an Option", MAIN, CHANNEL); } sensor( integer number) { integer i; for( i = 0; i < number; i++ ) { if( llDetectedKey( i ) != llGetOwner() ) { string detected_name = llDetectedName( i ); if( isNameOnList( detected_name ) == FALSE ) { visitor_list += detected_name; visitor_key += llDetectedKey( i ); } } } max=llGetListLength(visitor_list); }listen(integer channel, string name, key id, string message) { if (llListFindList(MAIN + visitor_list + E_MENU, [message]) != -1) { if (message == "Scan") { count=0; llSensor( "", "", AGENT, range, TWO_PI); llDialog(owner, "Pick an Option", MAIN, CHANNEL); } else if (message == "Load Missile") { list menu_temp = llList2List(visitor_list,count,count +8) + E_MENU; llDialog(owner, M_MAIN, menu_temp, CHANNEL); } else if (message == "Reset") { llResetScript(); } else if (message == "Missle types") { string regalo = llGetInventoryName( INVENTORY_OBJECT, 0); llOwnerSay("Type of Missiles ►►► " +regalo); } else if (message == "<<") { count -= 9; if (count <0) count =0; list menu_temp = llList2List(visitor_list,count,count +8) + E_MENU; llDialog(owner, M_MAIN, menu_temp, CHANNEL); } else if (message == ">>") { count += 9; if (count >max + 8) count =max - 8; list menu_temp = llList2List(visitor_list,count,count +8) + E_MENU; llDialog(owner, M_MAIN, menu_temp, CHANNEL); } else if (llListFindList(visitor_list , [message]) != -1) { string regalo = llGetInventoryName( INVENTORY_OBJECT, 0); llGiveInventory((key)llList2String(visitor_key,llListFindList(visitor_list , [message])), regalo); llOwnerSay("Sent to "+message); } } }} The next part is my
  6. I am so used to the old scripting that much the stuff I have done in the past isnt working. Im not an that up to date on scritping to be honest. Im trying to do a menu, that will pick objects at a 90m range or Avi at 90m range, then once selected from the list an object can be rezed and that object will go to that Avi or object. I am posting the code from the menu that I was using. integer schan =9877; integer oh; //integer fchan = -9787; string target; integer ammo_type; integer gmode = 0; // 0 = dead fire, 1 = normal seeker, 2 = long range key guser; string toucher; key sound = "c898da75-7319-3c2b-6daa-0ed233b8555a"; list lstMenu = ["Fire","Mode","Target Menu","Clear Target"]; list lstMode = ["Dumb Fire","Tracking", "Back..."]; list lstTargetMenu = [ "Target Player", "Target Objects", "Back..."]; integer uuid2int(key id){ return (-(integer)("0x" + llGetSubString(id, 19, 35))); } init(){ schan = uuid2int(llGetOwner()) + 753400; } integer sbDialog(key keyAgent, string strMessage, list lstButtons, integer intChannel) { integer intHandle; lstButtons = llList2List(lstButtons, -3, -1) + llList2List(lstButtons, -6, -4) + llList2List(lstButtons, -9, -7) + llList2List(lstButtons, -12, -10); intHandle = llListen(intChannel, "", keyAgent, ""); llDialog(keyAgent, strMessage, lstButtons, intChannel); return intHandle; } default { on_rez(integer start){ llResetScript(); } state_entry(){ llListenRemove(oh); llSetText("Missle Control",<1.,0.,0.>,0.5); init(); } touch_start(integer total_number){ toucher = llDetectedName(0); guser = llDetectedKey(0); oh = llListen(schan, "",guser,""); llSetTimerEvent(30); sbDialog(guser,"Boom Boom Menu",lstMenu,schan); } listen(integer channel, string name, key id, string message){ string m = llToLower(message); list ml = llParseString2List(m,["|"],[""]); string ml0 = llList2String(ml,0); string ml1 = llList2String(ml,1); if (ml0 == "psettarget"){ target = ml1; } else if (m == "fire"){ llMessageLinked(LINK_SET,0,"fire|"+target+"|5|0|0|"+(string)gmode,NULL_KEY); } else if(m == "clear target"){ target = NULL_KEY; } if (m == "mode"){ sbDialog(guser,"Please choose the Missles mode",lstMode,schan); oh = llListen(schan, "",guser,""); llSetTimerEvent(30); } if(m == "target menu"){ sbDialog(guser,"Please choose the targeting mode",lstTargetMenu,schan); } if(m == "target player"){ llMessageLinked(LINK_SET, 999, "mtarget_menu", guser); } if (m == "target objects"){ llMessageLinked(LINK_SET, 999, "mtarget_objects", guser); } if (m == "dumb fire"){ gmode = 0; llWhisper(0,"Dumb Fire mode set, no tracking"); } if(m == "tracking"){ gmode =1; llWhisper(0,"Standard Tracking mode."); } } timer() { llListenRemove(oh); } }This is for a bit of refrence but I am hoping that there is a cleaner and much less complicated way of doing this. Thinking ill also need to rework a target script as well as do something with the missile script as well. Open to suggestions but also open to hire someone to clean this up for me as well! Let me know.
  7. I am currently working on several builds and am looking to hire an experienced scriptor for some missile type weapons. I do have at time line I am working agasnt and because of my current work load am looking for the right person to become my backup in coding some specialized products. All projects will be on a L$ paid basis but will concider a direct $ payment for the right person. If you are interested please contact me in world either by IM or notecard. There are times my AVI is logged in but I am not at the SL screen, but coding or 3D building on another area of my office. This would be a possible long term contract for the right person as well. You must have a good understanding of low lag scripting. Be up to date on all changes in Linden lab scripting protocol And be willing to have quick turn around on all needed scripts to complete projects in a project milestone capasity. Look forward to speaking with you. 
  8. Are you someone that likes to RP a good story line? Are you someone that enjoys a Military style structure that borderlines a covert govt orginization and most of all do you like getting free stuff to support that rp? Cars, guns, gadgets and even a free place to live? If this is you, and you are over 18 I would like to talk to you more. I offer great pay and lots of challange in RP. I own a RP sim but have something on the side that surrounds the RP. I am a builder and have no problem giving away my new products or building somehting for you to help with your RP. And most of all I am willing to pay the right people to become part of this RP. You can contact me in world and drop me a note card if you would like to find out more.
  9. Thats the theme tonight in Sen City. At 6pm SLT come down to the War Room bar for the live DJ, and the hot steamy sexy bodies moving on the dance floor with almost nothing on. We are giving away L$ with contests tonight. It's Friday night in the sultry tropics! Get your sexy wear on and bring your ass to the War Room 6pm SLT! The smallest teeniest outfit the better! And get your drink on since it's Rum Appreiciaion Day! Rum, Sex and Lindens will be flowing freely! 6pm SLT War Room! Tonight! Get your free airline ticket to Sen City by clicking here. http://snipr.com/24ovui6
  10. Tonight at 6pm SLT we will be having the Best Super Hero contest! Come on over to Sen city and make your way to the War Room for a night of music , fun, and the chance to win L$ !! Dress up as a superhero and hop on over. http://snipr.com/24mwild
  11. The G-Men will be raiding the War Room bar tonight! Get to the War Room before the G-Men and win some L$!!! Huge giveaway and FBI Information you have never heard before live on mic! Search in world for Sen City, make your way through the airport and take the chopper down to the city, then hi-tail it to the War Room for drinks, dancing and waiting for the FBI RAID! IM Tempest Turbo or Laurelin Juran for a TP!
  12. There are alot of Do's and Dont's to RP . Sims have their own rules and themes so it is hard to know what to do and how to do it. Many make mistakes and cause seasoned RPers to turn away and stop interacting with the person that made the mistake. Today Tempest Turbo holds a RP class.. This is ADULT THEMED class and she will be picking people out of the class for example training. If you would like to attend the class that is going on right now, please search in world for Sen City and then follow the arrows to the class.. You will have to go through the airport and take the chopper to the Sim, if you need help IM Tempest Turbo. Class starts in 30 min. 12:30p slt
  13. A band of monkeys have rushed out of the jungle and into the city! They have taken to the streets going high and low. You job is to hunt them down, click a monkey and answer a question to win! Each monkey has a price on its head so hurry! Search in world for Sen city then go through the airport, to the chopper, click the chopper and be taken to the city where your hunt will start! GOODLUCK!
  14. If you search in world for Sen city, and can make your way through the airport and take the chopper over to the city, once there find your way to the party at the WAR ROOM Bar. DJ laur is on mic now and we are giving away L$!!!! Hurry it wont last long!
  15. Your mission is to locate a laptop, located somewhere on the sim. When you locate the Laptop, it will ask you a simple question that connects to the sim. Answer the question correctly and you will be given a disarm code. You will need to unpack the box and read the Notecard inside for the code. Once you have the code, start searching the sim for the small robotic Sorpions! For every one you find and disarm you will be given a L$ cash reward. But you must get to the scorpions before anyone else! How fast are you? How good of a recovery agent can you be for Sen Corp? Search in world for Sen City, go through the airport and take the chopper to the island to start your mission! Good luck!
×
×
  • Create New...