Jump to content

Steveo Mellow

Resident
  • Posts

    12
  • Joined

  • Last visited

Everything posted by Steveo Mellow

  1. I made the changes....didn't test it in world tho. This will use the first line of the notecard for the email address. //start_unprocessed_textstring NOTECARD_NAME = "userKeys";string MESSAGE;list glItems; string email; key kQuery;integer iLine = 0;default { state_entry() { MESSAGE = llGetRegionName() + " " + (string)llGetPos(); } changed(integer change) { email=""; kQuery = llGetNotecardLine(NOTECARD_NAME, iLine = 0); glItems = []; } dataserver(key query_id, string data) { if (query_id == kQuery) { if (data == EOF) { llEmail(email,"NOTICE",llDumpList2String(glItems, ", ")); } else { if(email=="") email=data; else { glItems += data; kQuery = llGetNotecardLine(NOTECARD_NAME, ++iLine); } } } }} 
  2. Looks like the email address it sends to is the first 54 characters in your data string...problem is that emails are all diff lengths outside of SL email address. If you want to send this info to a gmail address or something, you will have to pick out the address a different way. If the email address is on the first line of the notecard, you could add this to the beginning of the dataserver event: if(email=="") email=data; Set the email variable as a global string variable at the top of the script, and add email=""; in the changed event to clear it before it reads the notecard.
  3. Hello friends! Remember when you were a kid and loved to collect and play with your dinky cars? Well, I've scripted a pathfinding system for mini cars and mini-figs that I have named SmartWheels. I'm looking for someone who can make the road textures for me. I need several textures that all have the same features so they should be fairly easy to make. I made a demo set, but I'm sure someone who is proficient in PSP or Gimp can do better. I'm looking for someone who can do the textures so I can concentrate on what I do best... the scripting. The resolution of the images should be low since the prim size they are on is small (1 - 4 m2). 128x128 or 256x256 should be fine. I prob need about 5-10 seperate textures to start. I'm looking for someone dedicated because I would like to add to the set on a regular basis. If you are also interested in building mini buildings, mini cars or people, I would also be interested to hear from you. To see what I'm talking about, you can see a small demo city here: http://slurl.com/secondlife/chiao/159/234/47/ Cheers!
×
×
  • Create New...