View Single Post
  #10  
Old 07-19-2011, 11:11 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by water95 View Post
Ok, so I set the light preferences and dragged the little outlined man. And I also used light2.png and the light came out and turned red and all, but now how do I get rid of the ugly blackness around it?
Unless it's absolutely necessary for it to be in GS1, use this instead:

Quote:
Originally Posted by cbk1994 View Post
Something like this is generally preferable to the above as it's not using old Gscript. Note that it will only work online.

PHP Code:
function onCreated() {
  
this.dontBlock();
  
this.drawOverPlayer();
}

//#CLIENTSIDE
function onCreated() {
  if (
lighteffectsenabled) {
    
this.setColorEffect(0100.8); // red, green, blue, alpha
  
} else {
    
this.hide();
  }

Give it an image (usually light2.png or light3.png).
If you prefer to stick with GS1, the issue sounds like your alpha is set to 1. Try setting it to 0.9. If that doesn't fix it, post the script.
__________________
Reply With Quote