User:Aamic Zhong

From Second Life Wiki
Jump to navigation Jump to search

About Me

I'm from SL with no RL. I’m know as a builder I sale things, buy land and over just have fun. I like to work on new things. Scripting is a learning thing, and one day I hope to really understand it.

Wiki spaces have so much information and most is by the users that pass information on to others users. I have done work on manuals for years. I spent thousand of hours on one book, just to burn it at the end. Its all fun and have learned something each and every time I do something new.


Wiki for the future? As the information pipeline builds up I think will be over taken by that wiki crave.

My Links

My YouTube space



Ez Scripts to learn by


   //To set the message /99 Hello World
   
   default{
   state_entry()
   {
       llListen(99, "", llGetOwner(), "");
   }
   
   listen(integer channel, string name, key id, string message)
   {
       llSetText(message, <0,1,0>, 1);
   }
   }