hey is that in 1.1.5. cuz its kool how you did the menu for it, looks great btw. awsome
yes its 1.1.5 i use an image in the background of a table to get the menu like that.
hope it helps
You are not logged in. Please login or register.
PunBB Forums → Posts by vin99
Pages 1
hey is that in 1.1.5. cuz its kool how you did the menu for it, looks great btw. awsome
yes its 1.1.5 i use an image in the background of a table to get the menu like that.
hope it helps
Thanks for all the nice reply's
yes i know.. but you must make a choice want stuff to look like you want to or want it to make it flex
i choose the first option but thanks for your input
http://82.217.74.5/ravens/forum/index.php
i hope you like it
only a little problem in IE tho... dont know why look at a cat youll see what i mean
any help?
nice is it in the pre launch code? or do i have to wait for it
You mean really resising the image like making a thumbnail or somethnig?
this can be done with GD2 or GD1 allthough im not a great fan of that. also you have the problem that images are remote (not on your server) so that would mean you have to grab the image and place it on your server...
but again im not sure about this
and you could always just check the size and scale it % wise if it is bigger than a certain size.
so you need:
<script type="text/javascript">
var maxWidth = 580;
function scaleImage(im) {
if (typeof im.naturalWidth == 'undefined') im.naturalWidth = im.width;
if (im.naturalWidth > maxWidth) {
im.width = maxWidth;
im.style.maxWidth = im.naturalWidth + 'px';
im.className = 'resized';
im.title = 'Klik voor originele grootte';
im.onclick = unscaleImage;
}
}
function unscaleImage() {
if (this.width == maxWidth) {
this.width = this.naturalWidth;
this.style.borderWidth = '0px';
this.title = 'Klik om te verkleinen';
} else {
this.width = maxWidth;
this.style.borderWidth = '2px';
this.title = 'Klik voor originele grootte';
}
}
</script>
in your head section and the image code looks like this:
<img src=" URL " border="0" onload="scaleImage(this);" alt=""/>
see this link:
the 4th foto is resized.
http://www.vin99.net/forum/viewtopic.php?t=649 (contains partial nudity.. just to say so)
look into the code and change the [img] tags of your forum and your done. it only works in browsers that resize images when viewing them like IE6 firefox Netscape etc..
yes you can do that using style sheets.. wait ill look it up for you
ow ok
well i always check the code with compare in ultraedit. And i only changed some parts of the forum code. like header and templates and such.
For the game i created all new files only including the header and functions so i dont need to write that.
if the functions change a lot. i can alter my code no problem
Hmz.. so it will be a problem
Ah np ill just check what was edited. and most of the gamefiles are not in the forum part.
they just use the functions the board uses. so if the function gets altered the game files "mostly" do not have to change.
The game is getting shape when you register you will see that the game is totally in the forum source and visa versa
Well im just using the forum as the basics so for user registration and stuff like that i add tables to the database and create the game around that.
so the forum is part of the game actually i add things to the forum and i use the forum source for the game
the best way to explain it is i used the engine of the forum
btw the style editing is not done yet it should difrent more from the standard layout. it will come all in time.
hehe nice comment thnx
BTW if you want to be a beta tester:
just register at the forum you can create 2 game accounts at the character selection section
if you can be more than just a tester send me a pm on the forums (user: vin99)
Hiya
i would like to show of my beta site for A new Dawn v4 wich is a game currently in development
it is in beta at the moment and we used a big part of the source of PunBB
thanks for this great peace of work (btw dont go complaining there is no credits to punbb this site is in beta. when it goes life there will be credits to punbb in the credits section)
the url is:
http://82.217.74.207/anewdawnv4/forum/index.php
i hope you like it drop some comments
Pages 1
PunBB Forums → Posts by vin99
Powered by PunBB, supported by Informer Technologies, Inc.