A WINDOWSKIN I MADE A WHILE AGO.

Posts

Pages: 1
BizarreMonkey
I'll never change. "Me" is better than your opinion, dummy!
1625
Quite a time ago I started development on a Neopets fangame, and while I never plan to release it to the public(who would want to play a Neopets fangame?), I thought I could possibly share a windowskin I made for it, I'm not sure if this will earn me any Maker Points, but I still want to contribute it nontheless, I couldn't see a submit graphics button on the site, so I went to this board (the closest I could find to a graphics section)

Well, here you go.


Some screenshots of it in action.
With 255 Opacity

With 200 Opacity

And here's a small script I made in less than 5 minutes to change the opacity without editing windows base, simple but effective.
#--------------------------------------------------------------------------

# Window Opacity, by Bizarre Monkey.
#==========================================================================
# A simple script I put together from a few lines in window_base.
#
# Have fun.
#--------------------------------------------------------------------------
class Window_Base < Window
def initialize(x, y, width, height)
super()
self.windowskin = Cache.system("Window")
self.x = x
self.y = y
self.width = width
self.height = height
self.z = 100
self.back_opacity = 200
self.openness = 255
create_contents
@opening = false
@closing = false
end
end
I bet that would work well in a Mario fangame or just anything about as lighthearted.
BizarreMonkey
I'll never change. "Me" is better than your opinion, dummy!
1625
Daww, thanks. :)

I should probably have realised it isn't just neopets, I simply grabbed a chunk of the site's wallpaper with snagit and turned it into this.
Pages: 1