Jump to content

contyyy

Resident
  • Posts

    11
  • 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 make a hud This style https://marketplace.secondlife.com/p/LoL-HUD/3860014 but simple, apprentice, ofcourse I have avatars menu Now I need to know: methods to send action what ways are there? to make a basic idea
  2. I write in this way because I think that I understand better but it is better in my language, I try Yo tengo hecho un hud con menu de los avatares de la region Quiero aprender como lanzar las acciones sobre los avatares; ¿Cuales son los metodos? Por ejemplo: trampas ,seguidores,cluster Mi proposito es hacer un pequeño hud propio de ataques , bromas ,etc saludos
  3. I have a menu buttons with the avatar of the region Someone may say, What functions to use to send an action For example a trap I do not speak English Simple explanation to better understand regards
  4. thank you very much to all to help understand regards
  5. Hi The structure of a list is this: list Mylist = [1,2,3] How is it possible this one? list order_buttons ( list buttons ) I do not understand this structure, one can say about
  6. Estoy trabajando en ello, este es mi script //Displays up to 100 avatar key: namee pairs detected in the entire region default { touch_start(integer total_number) { list avatarsInRegion = llGetAgentList(AGENT_LIST_REGION, []); integer numOfAvatars = llGetListLength(avatarsInRegion); // if no avatars, abort avatar listing process and give a short notice if (!numOfAvatars) { llOwnerSay("No avatars found within the region!"); return; } integer index; while (index < numOfAvatars) { key id = llList2Key(avatarsInRegion, index); string name = llKey2Name(id); llOwnerSay(name + " [ " + (string)id + " ]"); ++index; key user = llDetectedKey(0); list lista= avatarsInRegion; llDialog(user,"target ",lista,-99); } I need to get avatars list dialog box with next and back buttons But my knowledge is little, lol I do not speak English, it is also more difficult regards
  7. ok I am new to the world of script thank you very much
  8. Hi I can I have a script that shows a multipage dialog with all avatars in the region, so you can modify it to add the actions when a certain avatar is clicked regards
  9. Hi I can I have a script that shows a multipage dialog with all avatars in the region, so you can modify it to add the actions when a certain avatar is clicked regards
×
×
  • Create New...