Jump to content

prince Zackerly

Resident
  • Posts

    7
  • Joined

  • Last visited

Reputation

1 Neutral

Recent Profile Visitors

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

  1. so its works this way and i guess the only possible way which i have found with help of you and my friend Chrissy
  2. that does make sens i will go through that order and thanks for your advice
  3. no worry i will test it thought i was trying to filter the collision detect only with agents and as its collapsing bridge so i use flag so its not trigger the timer twice when more then one user is crossing the bridge edits its not work how ever with old approach if i set the group on my object properties and wear same group tag its work but not match with my key in script
  4. So i was working on collapsible bridge idea aside of every thing which luckily going well, i have added a feature to use group detection so if person wearing same group tag as the group key which i have assigned in script its lets you go through other wise its collapse, but am failing on such attempt i tried several approaches but not get any success so far what i have got in to is the object properties group if its match with user group tag its lets you go through just a simplified script for test i can share, what am expecting is to detect the user group if same as the group key also if its get detected once and passed or failed and user change the group tag its update please do share your suggestion to solve this mystery key groupKey = "555212fa-dd0a-1960-e694-1da1e6c9a798"; // Define two flags: groupMode and gCollapsing integer groupMode = TRUE; integer gCollapsing = FALSE; default { collision_start(integer num_detected) { if (llDetectedType(0) & AGENT && !gCollapsing) { if (groupMode == TRUE & llDetectedGroup(llSameGroup(groupKey))) { // If in the same group llSay(0, " You are in the same group!"); } else { // If not in the same group llSay(0, "Failed! You are not in the same group."); } } } }
  5. i have no idea about scripting that why i asked for help
  6. ll it is a bean race track so people have to drag Bean to the other end so may be need to script the bean to calculate time from point a to point b
  7. so i am here with an idea i hope will some buddy here help me out so my idea was there is point A and point B i need to calculate time when person cross point A its start the time and end when person cross point b i made a track so need to know who win the race will be good if an other script show the winner name the one who finish first
×
×
  • Create New...