Jump to content

Ninjadanana525

Resident
  • Posts

    7
  • Joined

  • Last visited

Everything posted by Ninjadanana525

  1. Hello! I subscribe to premium last year but its expired. If I renew it then I will only get a home and 300L$ weekly? I will receive $ 1000L$ bonus when I subscribe or 45 days later? Thanks for the help!
  2. Hi! I already subscribe to premium last year. If I subscribe again, then I will get 300L$ weekly and, I will have an 1000L$ signup bonus too? I know there is an 1000L$ bonus after 45 days but after that, if I renew I will have that, what this guy said in that post? https://community.secondlife.com/t5/Linden-Dollars-L/I-subscribed-when-do-I-get-my-bonus-linden-dollars/qaq-p/685939 Somebody wrote that: "the way it states it on the subscribe page, it sounds like you get 1000 to start and 1000 later *L$1,000 sign up bonus will be deposited 45 days after premium membership sign up. **L$1,000 deposited directly into your Second Life account. ***L$300 deposited to your account weekly to shop. "
  3. This is the script: list listOptions = [ "picpocket", "confuse" ]; list listAvatarsSensor; integer channelDialog ; integer handleListener; string choicedOption ; string avatarNameHavingMenu; key avatarKeyHavingMenu; float timerDialog = 15.0; float range = 5.0; default { touch_end(integer total_number) { avatarNameHavingMenu = llDetectedName(0); avatarKeyHavingMenu =llDetectedKey(0); state firstDialog; } } state firstDialog { state_entry() { channelDialog= (integer)(llFrand(-1000000000.0) - 1000000000.0); handleListener = llListen(channelDialog, avatarNameHavingMenu , avatarKeyHavingMenu , ""); llDialog(avatarKeyHavingMenu, "Choose an option:" , listOptions, channelDialog ); llSetTimerEvent(timerDialog); } listen( integer i, string n , key k, string m) { choicedOption = m; llSensor("",NULL_KEY,AGENT,range,PI); } sensor(integer n) { integer i ; listAvatarsSensor = []; do { listAvatarsSensor += llGetSubString(llDetectedName(i), 0, 23) ; i++; } while ( i < n); state secondDialog; } timer() { state default; } state_exit() { llListenRemove(handleListener); llSetTimerEvent(0.0); } } state secondDialog { state_entry() { channelDialog= (integer)(llFrand(-1000000000.0) - 1000000000.0); handleListener = llListen(channelDialog, avatarNameHavingMenu, avatarKeyHavingMenu , ""); llDialog( avatarKeyHavingMenu, "Choose an avatar:" , listAvatarsSensor, channelDialog ); llSetTimerEvent(timerDialog); } listen( integer i, string n , key k, string m) { string avName; string origName = llGetObjectName(); avName = llDetectedName(i); avName = llList2String( llParseString2List( avName, [" "], [] ), 0 ); llSetObjectName( avName ); string detectedName = llDetectedName(0); llSay(0, avName + " " + choicedOption + "ed " + m + " "); llSetObjectName( origName ); state default; } timer() { state default; } state_exit() { llListenRemove(handleListener); llSetTimerEvent(0.0); } } The problem whit the results. Its said in the chat this: 0000000000000-0000-0000-0000-000000000000 03:13 000-0000-0000-0000-000000000000 picpocketed BunnyBoyHun Resident The problem with the 0. Thanks for the answers and sry my english is bad >.<
  4. This is only an example. I have a very good idea and I dont want to show it to the other people Just need an example script and I can update it and make it perfect.
  5. Hi everybody! LSL Scripting is hard for me and my english is bad too. Php language is much easier for me >,< How I can make a chat command? Because I want to make chat command like this. /pipo (NAME) The function in the chat: /me pipoed (NAME) Or in a menu. /pipo and a menu pop up. In the menu you can choose the nearest Player. When you choosed in the chat: /me pipoed (Player what you choose) Thanks <3
×
×
  • Create New...