-
Posts
122 -
Joined
-
Last visited
-
Days Won
2
Content Type
Profiles
Forums
Events
Everything posted by Hedge
-
What are your favorite all time top 5 Movies?
Hedge replied to Jan Kaufmann's topic in Media Entertainment (FKA Tv Shows)
1. Transformers (all of them... and yes, i cried when Optimus died) 2. The Mad Max Series 3. Charlie and the Chocolate Factory (the original is the best, but the JD version is just as good) 4. Lock, Stock and Two Smoking Barrels 5. The Fast and The Furious. (ones like transformers and mad max are to hard to split into single movie choices) go on, watch it, its a great movie. Make a weekend of it and watch marry poppins too, also a great movie -
Ive been using GoDaddy for a couple of years now, but like most, have never used there customer service. I myself have never had a problem with them, so at this stage i'll keep using them until i do. I only started with them because at the time they could give me the domain name i wanted for the cheapest price.
-
What TV Shows are you currently watching?
Hedge replied to Jan Kaufmann's topic in Media Entertainment (FKA Tv Shows)
NCIS NCIS:LA Big Bang Theory Almighty Johnsons (NZ show) Last Resort (now cancelled) -
for showing your code, just wrap it with [*CODE] & [*/CODE] , but remove the *'s
-
found this in an old thread. http://makewebgames.io/archive/index.php/t-41632.html are you using an upto date version of mccodes V2?
-
what's with the big house? is that an avatar (really strange i.m.o) or is that showing what house you currently have? If its the second one, then i think its out of place/proportion to the rest of the page. Other than that, needs a bit of oommph, like Ian said, its just to grey.
-
It just Might Happen... and it probably will :)
Hedge replied to Uridium's topic in General Discussion
Is that your way of saying your making a V3 CB? -
In realmoflegends original post
-
I have been for the last few years and for the foreseeable future at this point, a Linux fan. For me its probably ease of use that attracts me to it. It does everything i need, updates and bug fixes are regular. Currently running Ubuntu 12.10 Before this, i had a G5 iMac but that ended after an argument between the mac and the floor. I do like them, but cant afford one now days. As for windows, i havent had a computer running it in about 10 years, so i cant really comment on them now days.
-
I had to double check i was on the right site tonight lol... i like it, its a nice improvement.
-
The problems looks like its your mark-up, it seem like the design side of stuff is a bit of a mess. Everything seems to be "displaying" but just not in the right places. I think if you had a clean up of your code it would fix the problem. I can see lots of tags that open but do not close. Run your index page through http://validator.w3.org/ and hopefully that will give you a place to start.
-
so true, for me it suited the style i was going for.
-
looks good mate, mind explaining why you wish you didnt use bootstrap? im using it myself so im just wondering why...
-
this thread has a little over 2 years of inactivity...i would be extremely surprised if this was ever released. In general I would suggest looking at the last reply date of a thread before you think about commenting on them.
-
Thanks for your input Aventro, but im not really looking to use a framework or game engine. I understand the benefits of frameworks, as ive read up on all the ones i could find, but in reality its just one more thing to add to the list of s**t the confuses the hell out of me. At this stage, i think until i have a better understanding of php, im better off making it this way and learning as much as possible along the way. As for ezrpg, i want to try to make a game thats as different as it can be from all the others out there, so im staying away from free engines at this point in time. If i fail miserably at my attempt, then i will rethink my approach
-
Thank you HD, that's exactly the type of feed back i need.
-
I weighed up my options about what free engine (cannot afford a paid one) to use for my game, but decided that id learn more by trying to make my own game from scratch. So ive had a go at making a register script, im after feedback on it. I only know what ive learnt , and if something ive learnt is wrong, i probably don't relies. hence the request for feedback. at this point in time, it im pretty sure it does what i set out to achieve. It doesn't throw any errors, and the information is inputted into the database. <?php session_start(); /** * SynitiCity Copyright 2013 * Made by Hedge * Page: register.php * Version: 1.0 * Date: 28 May 2013 Updated: n/a */ require_once __DIR__ . '/header_public.php'; include_once ('../configs/conn.php'); include_once ('../includes/classes.php'); //information is retrived from public/index.php and cleaned. $username = stripslashes(strip_tags(trim($_POST["Username"]))); $password = stripslashes(strip_tags(trim($_POST["Password"]))); $password2 = stripslashes(strip_tags(trim($_POST["Password2"]))); $email = $_POST["Email"]; $ip = $_SERVER['REMOTE_ADDR']; //retrives ip address $class = $_POST["Class"]; if ($username === "") { //errors if username is empty $error = "You did not enter a username."; } if ($password === "") { //errors if password if empty $error = "You did not enter a password."; } if ($password2 === "") { //errors if password if empty $error = "You did not enter a password."; } if ($password != $password2) { //errors if passwords do not match $error = "Your passwords do not match."; } if (strlen($username) <= 4) { //errors if username is too short $error = "Your username must be atleast 5 characters long."; } if (strlen($username) >= 21) { //errors if username is too long $error = "Your username must not be longer than 20 characters."; } if (strlen($password) <= 5) { //errors if password is too short $error = "Your password must be atleast 6 characters long."; } if (strlen($password2) <= 5) { //errors if password is too short $error = "Your password must be atleast 6 characters long."; } if (strlen($password) >= 21) { //errors if password is too long $error = "Your password must not be longer than 20 characters."; } if (strlen($password2) >= 21) { //errors if password is too long $error = "Your password must not be longer than 20 characters."; } if (is_email($email) === FALSE) { //errors if the email is in an invalid format $error = "Please enter a valid email address."; } //query to check if username is already taken by another player. checks both username and loginname. $username_query = $mysqli->query("SELECT `userID` FROM `users` WHERE `username` = '$username' OR `loginname` = '$username'"); $username_rows = $username_query->num_rows; if ($username_rows > 0) { $error = "Sorry that username is already in use, please choose another."; $username_query->close(); } //query to check if the email has already been used before. $email_query = $mysqli->query("SELECT `userID` FROM `users` WHERE `email` = '$email'"); $email_rows = $email_query->num_rows; if ($email_rows > 0) { $error = "Sorry that email address has already been used to create an account."; $email_query->close(); } //query to check if the users ip address has already been used to create an account. $ip_query = $mysqli->query("SELECT `userID` FROM `users` WHERE `ip` = '$ip'"); $ip_rows = $ip_query->num_rows; if ($ip_rows > 0) { $error = "Sorry but your IP address has already been used to create an account.<br>If you havent created an account before, please email the staff and an account will be created for you.<br>[email protected]"; $ip_query->close(); } if (isset($error)) { //if an error was thrown from above, it is outputted here and the page is stopped. echo Error($error); require_once __DIR__ . '/footer_public.php'; die(); } else { $password = crypt($password, $username); //password encrypted using the chosen username as a salt. //query is run to add the user to the database. $mysqli->query("INSERT INTO `users` (`loginname`, `username`, `password`, `email`, `ip`, `class`) VALUES ('$username', '$username', '$password', '$email', '$ip', '$class')"); echo Success("Your account has been created, please wait while you are logged in."); //automaticlly log user in upon registration. $login = $mysqli->query("SELECT `userID` FROM `users` WHERE `loginname` = '$username'"); $id = $login->fetch_array(MYSQLI_ASSOC); $_SESSION['loggedin'] = $id['userID']; $login->close(); echo "<meta http-equiv='refresh' content='5;URL=index.php'>"; } require_once __DIR__ . '/footer_public.php'; ?>
-
With no styling done to a majority of the game, my interest was lost instantly.
-
Just had another look, everything you've done seems to be rather simple, so have you thought about coding the whole thing in css instead of using images. If your going to be changing things every time someone suggests an improvement, it would make it alot easier for you to change a couple things in a css file instead of making a new bunch of images. IMO Looking better BTW.
-
personally, i would rethink that approach, i've found it more profitable doing more small jobs with the occasional large one, rather than just focusing on large jobs. but thats just my opinion
-
my list is pretty much the same as DJKs' , but for me pink floyd is on repeat for alot of the time
-
last time i checked, anyone can go and pay for that free domain name and then you've lost it. Imagine having a free .tk domain name for months, your getting a reasonable amount of traffic through, then all of a sudden your traffic is heading to some other persons webpage because they brought the domain.
-
I like it. The logo seems a little off me for, just a bit to oval, doesnt quite seem right. And hard to tell without seeing it, but i'd recommend adding a bit of the red from the logo into the rest of the site. Not much, just a little here and there. Nice work mate
-
nice mod, been thinking of doing something like this myself, but with more in-game bonuses for the different classes