Jump to content
MakeWebGames

Razor42

Members
  • Posts

    863
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by Razor42

  1. Bronze medal for us :)
  2. We won our first medal in the womans road race cycling, silver :) and yes swimmings on now rebecca addlington coming up soon so hopefully she'll perform well.
  3. Yes i'm also watching the swimming at the moment :)
  4. Team GB won our first medal today? Anyone see it? Hopefully they'll start rolling in now :)
  5. And I feel we can exceed what we won that year so I dont really think you can say we never really win anything.
  6. Try learning.
  7. Ceremony still going, amazing seeing the vast amount of countries, many iv never heared of, got to say personally iv enjoyed the opening ceremony.
  8. I'll be watching the opening ceromony and also ill be watching the boxing and also the 100 & 200m sprints, want to see usain bolt in action and also other events when iv got nothing else to watch but as for all i'm not "excited" for it and thats due to the fact its been spokem about way too much.
  9. Bit simple, nothing that makes it stand out above the crowd really but its still nice :) Seen many many successful games with standered templates and simple features, there not everything in a game, building a good community and running your game properly is enough to have a successful profitable site.
  10. nice tutorial, got some useful information :)
  11. Nice work.
  12. Check pms illusions
  13. CavellA is now part of the team, looking for one more coder to join the team!
  14. Has been edited to fix the things you pointed out
  15. Plus that $5,000 will only be a starting budget as I myself will be adding over $2k in the next 2/3 month
  16. I'd say $5k isn't that much when you take into consideration for a truley brilliant game you'll need one of the best coders out there thats around $100 per hour, then you've got advertising to take into consideration? I really don't think its that much
  17. If you all actually read properly, the money doesn't matter, if someone who could code wanted to partner with me then the money would not matter
  18. After looking around many websites and collecting different types of information I have created my own basics of PHP tutorial. The first thing to know in PHP is obviously the open & close tags. <?php this is the open tag for a php code, this lets the server know that a php code is about to begin. ?> this is the close tag for a php code, this lets the server know that the php code has now ended. Everything in between the open tag and the close tag will be read as PHP code. The <?php tag can also be phrased as <? if desired. The next thing to learn about is how to place comments within your code which will be ignored by the server and not displayed on your webpage. Comments are used for various reasons, they can be used as a refferance to what the code is doing so that when you go back later to edit the code you will know what everything is doing and what to edit. They can also be used if you are wanting to share the code with other people and want them to know whats going on at each part of the code and also if you want to include your name and terms of services within a code, there are two types of comments: //This is a comment to be used one a single line. /* Using the method you can create much larger comments which can go other mutiple lines and will still all be commented out */   Now that we know what the open & close tags are and also how to place comments into our codes now its time to move onto the echo & print statment. What this does it it outputs whatever you tell it to do and displays it as text on your webpage. There is a lot of debate about which is better to use or if there is any difference at all. Apparently in very large programs that are simply outputting text the ECHO statement will run slightly faster, but for the purposes of a beginner they are interchangeable so use which one you will find most comfortable to remember.   <?php print "hello"; //this will display the text hello onto your website, notice that the hello is in quotation marks, when using the print or echo statment you must place the text you want to be displayed in quotation marks. echo "hello";//this will display the text hello on your website just like the print statment. ?> notice that each line ends with a semicolon, whenm your PHP code is longer than one line then you must seperate each line with a semicolon. The next thing we are going to move onto are variables, variables are used to hold expressions or values. There are a couple of things that we must remember abiut variables, the first thing is that they must start with a $ sign which is then followed by the name of the variable. The second thing is that the name must begin with a letter the underscore character. The thrid thing is that the variable name should not contain spaces and only contain letters, numbers and the underscore charatcer. The final thing is that variable names are case sensative ( $My and $my would be too different variables).   $MyCar = "Audi"; //This creates a variable. The variable MyCar will now hold the value "Audi". Notice the quotation marks again. $Age=7; //This also creates a variable. notice that there are no quotation marks as they must only be used on a text value.   Now we can use this variable to tell people what car we drive and learn to use variables with the print/echo statment: $MyCar = "Audi"; print "Hello, I drive a $MyCar; //This will display Hello, I drive a Audi onto your webpage   Now we have the basics of Variables covered we can move onto Arrays. While Variables can hold one single piece of data, an array can hold a string of related data. An array can hold all your variable values under a single name and you can access the values by referring to the array name. Each element in an array has its own index so it can be found easily. $friend[0] = "Justin" $friend[1] = "Paul" $friend[2] = "John" $friend[3] = "Garry" //this creates an array print "My friends names are " . $friend[0] . ", " . $friend[1] . ", " . $friend[2] . ", ". $friend[3]; //this will print all the names of your friends from the array. That array is arranged using integers as the key ( the key is the information between the [ ] brackets). Arrays can also be arranged using text as the key: $age["Justin"] = 45; $age["Paul"] = 20; $age["John"] = 50; $age["Garry"] = 30; //this states another array using text as the key. print "Paul is " . $age["Paul"] . " years old"; //this will display Paul is 20 years old.   Now we have the basics of Arrays its the time to move onto IF ELSE statements. Very often when you write code, you want to perform different actions for different decisions, you can use the IF ELSE statements to do this. Below is an example of an IF statement that would apply a senior's discount. If $over65 is false, everything within the {brackets} is simply ignored: $over65 = true; $price = 1.00; if ( $over65 ) //this is the start of an IF statment. if over65 is false then everything in the brackets below is ignored. { $price = .90; //this states what the price will be if over65 is true. } print "your price is $" . $price; //this will print your price. If over65 is true it will output your price as .90 but if false then it will output as 1.00. The if statment is used to execute some code if only the specified condition is true. Notice that there is no ..else.. in this syntax. The code is executed only if the specified condition is true. However, sometimes just the IF statement isn't enough, you need the ELSE statement as well. When using just the IF statement the code within the brackets either will (true) or will not (false) be executed before carrying on with the rest of the program. When we add in the ELSE statement, if the statement is true it will execute the first set of code and if it is false it will execute the second (ELSE) set of code. Here is an example: $over70 = true; $cost = 3.00; if ( $over70 ) //this states another IF statment. If false then everything in these brackets will be ignored. { $discount =.90; //This will be discounted from your price if over70 is true. print "you have recieved our seniors discount. Your price is $" . //this will tell you your price if over 70 is true. $price*$discount; //this will multiply your price by your discount if the over70 is true. } else // This states an else statement. If over70 is true then everything within these brackets will be ignored. { print "sorry you dont not qualify for our senior discount. Your price is $" . //this will display your price and tell you that over70 is false. $price; }   This is my basics of PHP tutorial, I hope you like it and I hope you like it and also that it helps people learn :)
  19. He stole it does not have full rights to it. Ask Peter I bought it from him.
  20. Title: Soldier Warfare Game abstract: Soldier warfare is an text based army styled game . The game is set in 2012 and the storyline is the whole world has broken into war and its your task as a trained soldier to become worlds leader and take over the world. Unique features: Many of the ideas on the game are still being developed on but we do have some very good ideas which I wouldn't say are unique but have been developed much further than I have seen in any other game. The main aim for the game is for amazing graphics work to be incorporated into every part of the game. Some unique features include an unique interactive attack system, a unique base/camp builder and many more. Current development status: Template has been designed and fully coded. http://www.w3theory.com/Clients/mw/login.html http://www.w3theory.com/Clients/mw/index.html (that is what the game will look like). No coding of the actual script is done yet. My own skills and tasks within the game: I cannot code and I am not a graphics designer, my tasks within the game are content writer, Project manager, advertisement manager and also the idea creator. What we are looking for: We are looking for an investor of around $5000 or a coder who is able to code everything that the game needs. Current team: The current team includes Me, myself and I. Share/Gain of the partnership: You will receive 50% ownership of the site. If you are interested then PM me for more details.
  21. favorite fighters in ufc definatly got to be Jon Jones, Jose Aldo and Anderson Silva
  22. No, I bought it from Peter
  23. Will now take $100 for the template and domain.
  24. Hello, I am selling an army styled game template and the domain to go with it. Take a look at the template here: http://www.w3theory.com/Clients/mw/login.png http://www.w3theory.com/Clients/mw/index.png And the domain is http://www.soldiers-warfare.com Looking for something in the region of around $125 so if your interested PM me or post here :)
  25. W3schools is terrible and so are most of the other tutorials on the internet, the only good one is codecadamy
×
×
  • Create New...