Jump to content

Cloud Aycliffe

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. I want to do something like: default { state_entry() { list MyList = ["abc", "def", "ghi", "jkl", "lmn", "opq"]; integer i; integer length = llGetListLength(MyList); do { touch_start(integer total_number) { llOwnerSay(llList2String(MyList, i)); } } while (++i < length); } However this only results in syntax error (with no explanation of what syntax is wrong) I really do feel that I am fundamentally going about this wrong but it seems i'm struggling with finding any guidance.
  2. Unfortunately everything I have tried results in the generic "Syntax Error" message during compile.
  3. hello, I'm looking for a small example of a script that would return the value of each element in a list with each mouse click until the elements are exhausted. It seems I cannot formulate a search query that brings me back such an example. any advice appreciated. example: list MyList = ["abc", "def", "ghi", "jkl", "lmn", "opq"] click the prim once output:abc click it again output:def click it again output:ghi click it again output:jkl etc...
×
×
  • Create New...