Page 1 of 1

Byond

Posted: Thu Feb 17, 2011 6:38 pm
by greasontim
anyone know if there are any tutorials on how to use byond?
Just asking so I can try to figure out how to make a Final Fantasy like battle system in it. Cause alot of people in the byond forums want to be paid for their work like right than and there.

Cause I'm wanting to make a base for a game with a team system where you can join a person's team and you join in on their battles when they get into a fight.

Either going to use byond to make a game or have to learn Java to make a 2d broswer game. Idk which to go with yet.

Re: Byond

Posted: Thu Feb 17, 2011 10:26 pm
by hallsofvallhalla

Re: Byond

Posted: Fri Feb 18, 2011 12:44 am
by Jackolantern
Honestly, I would have to say that an engine like Eclipse Origins is much better than Byond. Maybe check it out as well and see if you like it better. There are tons of tutorials in their forums.

Re: Byond

Posted: Fri Feb 18, 2011 9:33 am
by greasontim
Till I figure out what I'm going to use to make a game I'll keep trying to work with php to make a browser based game. And work with RPG maker VX with a online script, server and cilent that I found.

Re: Byond

Posted: Fri Feb 18, 2011 7:08 pm
by hallsofvallhalla
wise choice.

Re: Byond

Posted: Fri Feb 18, 2011 7:19 pm
by greasontim
I'm enjoying learning php by by working on the browser based game.

Re: Byond

Posted: Fri Feb 18, 2011 9:23 pm
by Jackolantern
Its very rewarding, and it can reach a lot bigger audience because it doesn't require a client download, a plugin or anything. Plus most PHP games don't have the huge art requirements that a 2D or 3D game have.

Re: Byond

Posted: Fri Feb 18, 2011 9:56 pm
by greasontim
Need to center my whole game with css but idk how, I HATE CSS! I know some HTML but never figured out to center a whole section like how gamefaqs.com has all the info in the middle of the screen

Re: Byond

Posted: Fri Feb 18, 2011 10:23 pm
by SpiritWebb
greasontim wrote:Need to center my whole game with css but idk how, I HATE CSS! I know some HTML but never figured out to center a whole section like how gamefaqs.com has all the info in the middle of the screen
You could create a center tag

Code: Select all

#center {
  margin: 0 auto;
  width: 80%;
}
Then place that div tag on the outside wall

Code: Select all

<div id="center">
All other divs inside this area
</div>
Then your css sheet will have:

Code: Select all

#login {
  position:relative;  <-- must be relative
  left:
  top:
  width:
  height:
}

Re: Byond

Posted: Fri Feb 18, 2011 10:38 pm
by Jackolantern
Honestly, I just download a free HTML template, cut it up and put it into PHP include files. Then I just include those files in my PHP files to "surround" my application in a design which I can go back and change later if I can get a web designer to work on it. That way I have a dummy design while developing, but if I finish the application/game I can work on getting a better custom design, and only have to change it out in one place.