Blockland Forums > Suggestions & Requests
No vignette, ever
Plastiware:
I'm looking for a clientside add-on that would completely disable the vignette on my end, all the time, because I hate it. The vignette is client-side right? Should be possible.
hodototman:
--- Quote from: Plastiware on November 08, 2013, 05:46:50 PM ---that would completely the vignette on my end
--- End quote ---
oops try again
Zeblote:
package blah{function clientcmdsetvignette(){}};activatepackage(blah);
If that doesn't work do clientcmdsetvignette(0); every time it gets set
hodototman:
packaged the code, not working
Plastiware:
--- Quote from: Zeblote on November 08, 2013, 06:27:19 PM ---package blah{function clientcmdsetvignette(){}};activatepackage(blah);
If that doesn't work do clientcmdsetvignette(0); every time it gets set
--- End quote ---
Thanks, clientcmdsetvignette works for me. It took me a while to figure out the proper syntax though. For anyone else who wants to know, it needs to be entered like this to make it invisible:
clientcmdsetvignette(0, 0, 0, 0);
The first 3 numbers don't actually matter, just the 4th one to set the alpha value to 0.