Page 1 of 1

[Team Looking]Myths Of Stronghold

Posted: Sun Feb 19, 2012 1:16 pm
by overras
Hello everyone, my name is "Cosmin" i'm from Romania, and i post here because i really want to work with a team , you know .. when you work alone at a project is very very tiring and boring. :) . This project its started from a Notepad ... this project isn't a continuation of another project.


-The game is based on realtime strategy+rpg.
-Little like Forsaken , congruatilations, is very nice game, with some design tricks can be a very played
-Map system is one, absolutely easy to work on him, that use matrices , and is very "Clean" at look :) .
- ... for more details, just show interest.

Check this link for images: http://imageshack.us/g/857/97276342.jpg/ (6 images)

Unfortunately I don't know Ajax, so ... if you know ajax and want to help ...thanks .
Following this collaboration, all members will have license on this game, full rights, credits etc.
I make this project to make a portfolio , but if you guys want to set game online, I will help with pleasure.

Minimum Requirements: HTML,PHP .

Re: [Team Looking]Myths Of Stronghold

Posted: Mon Feb 20, 2012 3:26 pm
by hallsofvallhalla
the images are great! Nice artwork!

Re: [Team Looking]Myths Of Stronghold

Posted: Mon Feb 20, 2012 4:09 pm
by overras
Thanks hall :) . Momentarily i work at inventory, and I really search a team ...even coordinators. I have some people who can sponsor us if we want set this game online, all nobody will not waste time in vain.

Update: Inventory scripted:

Image
Image

Re: [Team Looking]Myths Of Stronghold

Posted: Mon Feb 20, 2012 10:19 pm
by hallsofvallhalla
is all this art made by you and your team?

Re: [Team Looking]Myths Of Stronghold

Posted: Mon Feb 20, 2012 10:55 pm
by OoZI
Hey, I would be willing to help! I know PHP and HTML, along with SQL, and CSS. Shoot me an email at cuckle13 [at] live [dot] com!

EDIT: Reply Sent!

Re: [Team Looking]Myths Of Stronghold

Posted: Mon Feb 20, 2012 11:14 pm
by overras
Oh, no no. The map and items are from two different games (Very old games over ten years) , we just used them . But, the team is not so .. big (2 members) , reason of this topic :) . But, if that game will be liked , we ready to pay for original graphics. We work with coordonation and we try to make the last "fashion" in this project... :) how much interaction we can do. But, how I sayd, we are very motivated to finish this project, we want to make a portofolio, we aleardy obtained ~Certificate of the Romanian Academy.~ for a scripting competition and we dont want to stop here. We didn't take a decision about this game, but if somebody from here want to set this online, I am ready to bring sponsoring . My friend is a best coordinator , he thinks the logistics , I just write the code. I notice nobody does not want anyone to take part in this project from this community. At least it seems . We will wait. If those who participate are found to be good at what they do, we will remain a team if they wish .. the old team was disbanded so we are ready to make a new team, with a website where we can announce our projects and many things ..

EDIT: Oh, someone seems to have got courage, congratulations. I will send send you the email very soon .

EDIT2: Email sent!

EDIT3: +1 member of this project, we still recruiting , just post :) .

Re: [Team Looking]Myths Of Stronghold

Posted: Sun Feb 26, 2012 3:13 pm
by Bhhuh
Hi everyone, I'm Alex and I'm also a member of this team, my main purpose here is to guide Overras(and any other programmer that will join the team) regarding the logistics of the game, like overall Gameplay/Players/Maps/etc.. For now we are a small team but we're looking forward for anyone who want to join us and help us raise this project. Also if you are talented/competent and have some experience we're gladly to keep you in team and work together to some further projects.

For recruitment send a email to Overras.

Re: [Team Looking]Myths Of Stronghold

Posted: Mon Jun 11, 2012 8:17 am
by KimChunChu
Hello overras!
I and I need code for inventory ... Where can I get around like yours? :cry: :cry: :cry:

I want the script to inventory .. :| :| :roll: :(

Re: [Team Looking]Myths Of Stronghold

Posted: Thu Jun 21, 2012 12:37 am
by overras
Hmm.. look , an example:

Code: Select all

<?php
echo '<table border="1" width="100%">';
		echo '<tr height="200" align="center"><td>';
			for($x=1;$x<=60;$x++) {
				echo ' <img src="images/item.jpg"> ';
			}
echo '</td></tr></table>';
?>
you can replace for with a while ..let's see..

Code: Select all

<?php
echo '<table border="1" width="100%">';
		echo '<tr height="200" align="center"><td>';
			$sql = "select * from inventory where id_player = {$_SESSION['id']} limit 60"; // why 60? because the height is 200 and that prevent the visual bug (enlarge table) in my case.
                        $exe = mysql_query($sql);
                        while($data=mysql_fetch_array($exe)) {
				echo ' <img src="path/'.$data['img'].'" width="35" height="35"> ';
			}
echo '</td></tr></table>';
?>
About that hover effect, it's called "Text Fading" , google it.