Scripting/Library/WakaScriptingLibrary

De DigiWiki.

(Différences entre les versions)
(Waka Script Library)
(Waka Script Library)
Ligne 77 : Ligne 77 :
||AmaOmega
||AmaOmega
||Simple conversation tree (Eliza-like).
||Simple conversation tree (Eliza-like).
 +
|-
 +
||[[Camera Follower]]
 +
||ArkLehane
 +
||Follows just above your camera.
 +
|-
 +
||[[Chat Extension Module]]
 +
||ChristopherOmega
 +
||Allows transfer of >255 character strings over chat, via Packet Chat Protocol.
 +
|-
 +
||[[Create a flying pet]]
 +
||CatFart
 +
||(Incomplete/Not being worked on) A worked example on how to create a small flying object using physics-based movement.
 +
|-
 +
||[[Case Insensitive Listen rezzer]]
 +
||hasingred3Ixtab
 +
||Case insensitive listen rezzer.
 +
|-
 +
||[[DanceBall]]
 +
||AsiraSakai
 +
||This script plus dance animations in a prim create a clickable danceball.
 +
|-
 +
||[[Dance Machine]]
 +
||EvilFool
 +
||Single prim dance machine with synchronized dancers.
 +
|-
 +
||[[Day of the week]]
 +
||RichardSolvang
 +
||Figure out what day of the week a given date is.
 +
|-
 +
||[[Deluxe Door]]
 +
||EzharFairlight
 +
||A door with some extras. See also: the new Timeless Linked Door.
 +
|-
 +
||[[Dialog Module]]
 +
||StrifeOnizuka
 +
||Create and handle dialog boxes through linked messages.
 +
|-
 +
||[[Dump Prim Parameters]]
 +
||PierreJosephProudhon
 +
||Dump prim parameters to a LSL code string that can be fed to llSetPrimitiveParams.
 +
|-
 +
||[[Eliza Chatbot]]
 +
||DedricMauriac
 +
||Parady of a Rogerian therapist.
 +
|-
 +
||[[Email Extension Module]]
 +
||ChristopherOmega
 +
||Allows scripts to send emails without delay and receive emails without a timer.
 +
|-
 +
||[[Simple Email Parser]]
 +
||PlowboyLifestyle
 +
||Breaks an email header into local variables with some error checking.
 +
|-
 +
||[[Enhanced SLURL]]
 +
||HarleenGretzky
 +
||Ouputs a SLURL using the new teleport app URL, allows you to click the link to teleport without going to the map first.
 +
|-
 +
||[[Event Lottery]]
 +
||AmaOmega
 +
||Randomly choose a winner from a list of people without duplicates.
 +
|-
 +
||[[Experimental Rotation Math Library]]
 +
||StrifeOnizuka
 +
||Collection of functions for working with rotations.
 +
|-
 +
||[[Fade Texture]]
 +
||NashBaldwin
 +
||Smoothly drop texture alpha using exponential fall-off.
 +
|-
 +
||[[Fast Find]]
 +
||AmaOmega
 +
||Fast find number of lines in a notecard (binary search).
 +
|-
 +
||[[Fix Repeats Per Meter]]
 +
||NashBaldwin
 +
||Make a building by roughly positioning walls, then drop this script on each prim. It rescales to grid, positions to grid, and fixes repeats per meter, then deletes self.
 +
|-
 +
||[[Flight Assist]]
 +
||MorphWollongong
 +
||Flight assist HUD controller script.
|-
|-
|}
|}

Version du 11 mars 2012 à 02:43

Script Library

Rules for posting:

  1. Your script must be tested and working. If it's not, stick it in your user-space until it is. This is a list of working, usable scripts.
  2. Add a link to your script's page here. Link back to this page from your script's page. Start your page with {{LSL Header}}.
  3. Do not add scripts that duplicate the same functionality as an existing script or built in function. If yours does, explain why.
  4. Do not list simple scripts here. Include those among the LSL Examples instead.

Waka Script Library

Name Creator Description
Hello Avatar Linden Lab SL's default script.
ASCII ChadStatosky ASCII <-> int
AirSeaAltimeter OoPsGalatea A pretty decent air/sea altimeter.
AltPickPocket MitzpatrickFitzsimmons Transfer Money from your Alt's account without logging them in.
AvatarKeyScript KingHenrikLundquist Basic key-detecting script.
Barometer CidJacobs Check Barometric Pressure.
Bezier Curve Demo LionelForager Draws a bezier curve in 3D given by 3 control points.
Builders' Buddy NewfiePendragon Large building positioning/movement utility.
Builders' Tabs TimelessPrototype Advanced precision builder's tool.
Camera Sync MeyermagicSalome Camera Synchronization utility.
Color Scripts KagePixel Convert from HSB to RGB and back.
Common String Functions GarrMeDagger Common String Functions.
Channel Number Generator PetreLamar Given a text string, generate a (relatively) unique channel number.
PublicBillboard Chasingred3Ixtab A Public Cycling Texture Billboard.
Conversation AI AmaOmega Simple conversation tree (Eliza-like).
Camera Follower ArkLehane Follows just above your camera.
Chat Extension Module ChristopherOmega Allows transfer of >255 character strings over chat, via Packet Chat Protocol.
Create a flying pet CatFart (Incomplete/Not being worked on) A worked example on how to create a small flying object using physics-based movement.
Case Insensitive Listen rezzer hasingred3Ixtab Case insensitive listen rezzer.
DanceBall AsiraSakai This script plus dance animations in a prim create a clickable danceball.
Dance Machine EvilFool Single prim dance machine with synchronized dancers.
Day of the week RichardSolvang Figure out what day of the week a given date is.
Deluxe Door EzharFairlight A door with some extras. See also: the new Timeless Linked Door.
Dialog Module StrifeOnizuka Create and handle dialog boxes through linked messages.
Dump Prim Parameters PierreJosephProudhon Dump prim parameters to a LSL code string that can be fed to llSetPrimitiveParams.
Eliza Chatbot DedricMauriac Parady of a Rogerian therapist.
Email Extension Module ChristopherOmega Allows scripts to send emails without delay and receive emails without a timer.
Simple Email Parser PlowboyLifestyle Breaks an email header into local variables with some error checking.
Enhanced SLURL HarleenGretzky Ouputs a SLURL using the new teleport app URL, allows you to click the link to teleport without going to the map first.
Event Lottery AmaOmega Randomly choose a winner from a list of people without duplicates.
Experimental Rotation Math Library StrifeOnizuka Collection of functions for working with rotations.
Fade Texture NashBaldwin Smoothly drop texture alpha using exponential fall-off.
Fast Find AmaOmega Fast find number of lines in a notecard (binary search).
Fix Repeats Per Meter NashBaldwin Make a building by roughly positioning walls, then drop this script on each prim. It rescales to grid, positions to grid, and fixes repeats per meter, then deletes self.
Flight Assist MorphWollongong Flight assist HUD controller script.

Voir aussi

Outils personnels
donate
Google Ads