User:Alca Magic

From Second Life Wiki
Revision as of 20:39, 11 September 2008 by Alca Magic (talk | contribs)
Jump to navigation Jump to search

A little about me

Who am I?

I am a scripter, I make scripts so you don't have to, but be ready to help me too if I need it. I ask/answer questions on 12 different groups. Alca is short for Alcanias or Alcaneous. Since I dislie both of those, I went with Alca. Ask me a question about script or builds. I can be very helpful. I made up my own smiley, and here it is (*_*) (*-*) . If you want to make one, or have one, IM me it!

How can i help?

I can make scripts, or even build the more simple stuff for you. Ask me anything, and I'll try to make it, if i can! "I'm always [wiling] to help, just ask!"

I HEART SCRIPTING

I use a little program called LSLEditor sometimes. I highly recommend it. You can download it here. Or click here for the current version.

Why I hate my computer

I have a HP Pavilion dv8000, my graphics card: RADEON XPRESS 200M Series SW TCL x86/MMX/3DNow!/SSE2 from ATI Technologies Inc. I am using a laptop and my graphics card SUCKS! This means that my computer is just slow as Hell. I want to get a new one, but....

I DON'T HAVE A JOB!!

So I am basically stuck with this laptop (read Why I hate my computer).

I have a group for scripting and building

The group is called Builder's and Friends Group, as you can see, I messed up the name.

Feel free to join

It is free to join... IM me and I'll send you an invite to be either a BFG Scripter, or BFG Builder. If you are both, tell me to send the invite to be a BFG Builder/Scripter. Or if you are neither, tell me to invite you as a Fan Club Role. You will be an Everyone member role whatever you do!

IM me to add scripts to this page!

If you want me to add your scripts to the thing below, IM me and tell me to add it, and give it to me in any form but chat.

Here are some scripts that came from you and me!

Camp Dance Pad

<lsl>key avataronsittarget; default { state_entry() { llSetTextureAnim(ANIM_ON | ROTATE | LOOP | SMOOTH, ALL_SIDES, 0, 0, 0, 100, 1); llSitTarget(<0,0,1>,<0,0,0,1>); llSetSitText("Camp"); llSetTimerEvent(3); }

changed(integer change) { if(change & CHANGED_LINK) { avataronsittarget = llAvatarOnSitTarget(); if( avataronsittarget != NULL_KEY ) { if ((llGetPermissions() & PERMISSION_TRIGGER_ANIMATION) && llGetPermissionsKey() == avataronsittarget) { llStopAnimation("sit"); llStartAnimation("dance1"); } else { llRequestPermissions(avataronsittarget, PERMISSION_TRIGGER_ANIMATION); } } } }

timer() { if ((llGetPermissions() & PERMISSION_TRIGGER_ANIMATION) && llGetPermissionsKey() == avataronsittarget) { llStartAnimation("dance1"); } }

run_time_permissions(integer perm) { if(perm) { llStopAnimation("sit"); llStartAnimation("stand"); } } </lsl>