Jump to content
MakeWebGames

Faz`

Members
  • Posts

    652
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Faz`

  1. I think that's a bit too major, you don't want to make it unfair on the users that don't donate, then a clear contrast between the donators and non-donators is shown. Some games I could make it to top 10 HOF without donating a single penny, others you couldn't even get close without donating $100's. That's my opinion on it anyway. However the actual mod sounds very interesting indeed. Good luck and I hope the mod turns out great :)
  2. Kinda irrelevant but I think Gears of War 3 will clinch it next year (if it comes out before May) for sure. The Gears of War storyline is truly epic, and if the online is actually half decent which they say has been the focus this time, the game should be an instant hit.
  3. Haha, its treating me well thankfully, how about yourself man?
  4. Still remember me Pudda? xD
  5. Correct me if I am wrong, but wouldn't it be impossible to order gangs via the city they are in without adding/modifying the gangs? For example, President could be in Location1, Vice in Location 2, and various other members spread out across different cities?
  6. Are you willing to pay for one or looking for a freebie? I have one you could possibly buy off me.
  7. MLG Pro eh? :) Let's be fair. 300,000 people were playing it the day the BETA came out and it crashed. It must be good. Let's hope its not another MW2: All hype, horrible return.
  8. My bad. Haven't really worked with Mccodes in a while. Slowly getting back into programming, getting better slowly but surely :)
  9. He wouldn't. Even if he is not in physical form the legend of the might Spud will live on forever! What if prawns suddenly took over the world?
  10. I might attempt this later, but I think this is what your trying to say. Run this query in your database: [mysql]ALTER TABLE `users` ADD `traveltime` INT(11) NOT NULL[/mysql] Then add a query in monorail.php, (where the location changing query is, don't have the file open so I can't say) that updates the `traveltime` row when they travel to another place. : $updateTravelTime = "UPDATE `users` SET `traveltime` = `traveltime`+ 10 WHERE `userid` = $userid"; mysql_query($updateTravelTime);   Then add this in the appropriate place: $selectTravelTime = "SELECT `traveltime` FROM `users` WHERE `userid` = $userid"; $do_selectTravelTime = mysql_query($selectTravelTime); $traveltime = mysql_fetch_assoc($do_selectTravelTime);   Now underneath all that, the IF statement: if($ir['traveltime'] > 0) { echo 'Sorry, you have to wait $traveltime minutes before you can travel again!'; $h->endpage(); exit; }   Now, in cron_minute.php add: $minusTravelTime = "UPDATE `users` SET `traveltime` = `traveltime` - 1 WHERE `userid` = $userid"; mysql_query($minusTravelTime);   This is untested, I simply wrote it in this reply box. I didn't have the file open so I dunno if it will work. Let me know if you decide to try it, I'll be glad to help if it doesn't.
  11. There'd be a huge public uprising and people would make sure it was back again. What if Facebook shuts down and never returns? xD
  12. They would flood the major cities of America with milk and then think on taking over the world! What is Spud was actually a potato?
  13. Erm, USA would invade them and take it back? (I have no idea what a twinkey is :S) What if that complex life form came and took over Earth, and they were so developed we had no chance of defending ourselves? :S
  14. You'll have an incredible case of misfortune and you'll crash your car. So make sure you insure your car. What if a more complex/developed life form lands on earth tomorrow?
  15. We all know you wouldn't be lying. What if Japan win the world cup?
  16. Sorry I couldn't resist. Bladewolf, I have seen more posts of you asking for mods than any other post in this forum. How you can tell KDawg to go learn himself I don't know. If you are so keen on telling other people to go learn themselves, how about you look on some PHP Tuts and decide to make those mods you request for free? How does that sound? </rant>
  17. Then everyone would have the urge to learn new languages. What if this topic didn't exist?
  18. Haha Spudinski. Point proven eh?
  19. I have a layout that you might be able to buy. However it isn't in HTML/CSS yet, only .psd. Contact me for a preview ;)
  20. Hatred would be spread throughout the world, and war's would be going on for totally stupid reasons (remind anyone of a certain time?) What if Cheryl Cole said she'd give you her hand in marriage?
  21. //you hijacked my reply! nvm :P Mr Jeeves would personally bury Google owners. What if Paris Hilton wasn't such a goof?
  22. Then I'd be the first to propose to him! What if the world was ran by power-whoring maniacs who thrive off money and power and don't care for the people they are affecting? (Oh wait, did I say "what if"?)
  23. Reading the posts before. This guy made a mod, maybe his first so why complain? Yes he maybe only have changed "crystals" to "honour" but at least he tried. Now, stop flaming and give him credit for taking time to make the mod, however big/small it may be.
  24. Come on, advanced profiles? You could just write that in yourself, and simply add a few fields in the Preferences section for the user to edit it. Even the newest of programmers should be able to attempt that? I'm not flaming, I'm just saying. If you actually tried it yourself, in the long run you will become a much better programmer and will understand the language for what it is.
×
×
  • Create New...