Jump to content

Djc5581

Resident
  • Posts

    2
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

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

  1. Thanks Darkie that worked perfect, I was way off...
  2. I need help with a script, I think I have it close but it's not working.. What I'm trying to do is display the profile pic of the person that rezzed the item, simple enough? Not for me. Heres what I have so far... default { on_rez(integer start_param) { state_entry() { llSensorRepeat("", "", AGENT, range, PI, time); //A sensitive sensor } sensor (integer total_num) { integer i = 0; for( i = 0; i < 1; i++ ) { string detected_name = llDetectedName( i ); agent = llDetectedKey(0); http=llHTTPRequest(URL+agent, [] ,""); } } http_response(key id,integer status, list meta, string body) { if(http==id) { profilepic = body; if (profilepic == "00000000-0000-0000-0000-000000000000") { profilepic = "d1d2edd6-225c-4d5f-99b6-3dbf6645a2e6"; } llSetTexture(profilepic, displayFace); //Set texture on prim face 2 } } }
×
×
  • Create New...