Quote:
Originally Posted by water95
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
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(0, 1, 0, 0.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.