Jump to content

FluffyEscapes

Resident
  • Posts

    3
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

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

  1. alright figured it out thank you all so much
  2. THis is what I have so far integer type; list MessageList; default { state_entry() { llVolumeDetect(TRUE); llSetTimerEvent(86400); } collision(integer detected) { type = llDetectedType(0); if(type == 3){ if(~llListFindList(MessageList, [llDetectedKey(0)])) { llRegionSayTo(llDetectedKey(0),0,"HEYYOU!"); MessageList+=[llDetectedKey(0)]; } } } timer() { llOwnerSay("RESET!"); } }
  3. Hello everyone I realize I'm really really really new to SL but ther eis something I'm trying to do and not having much luck.. I understand collision_start etc but I cannot for the life of me figure out how to do this I am trying to make a script so that when someone steps on an object it sends a message.. however I only want this to happen once a day per person ... I'm totally lost heh :(
×
×
  • Create New...