Jump to content
MakeWebGames

03laceys

Members
  • Posts

    863
  • Joined

  • Last visited

Everything posted by 03laceys

  1. Re: [V2]My own v2 Explore page [V2]   :lol: I only see his post count at 20 though.
  2. Re: [V2]My own v2 Explore page [V2]   I will not show respect for someone doing so as casey has i have had enough after a year of watching it day in day out, and many others of us have aswell.
  3. Re: McCode v2 center Haha we don't spoon-feed toooooo much here mate. How you doing? Long time no speak.
  4. Re: [V2]My own v2 Explore page [V2]   So why would people want your respect if you don't give any in the first place. If everyone didn't give respect when we first me we would all be swearing and fighting with each other on the street with anyone we meet.. Similar to CE :evil:
  5. Re: [V2]My own v2 Explore page [V2]   Correct to you as of yet i am a nobody, I have earnt more respect on these forums than you, If i was to walk down the street should i just say hi retard to people i don't know because i don't know them NO. You shouldn't be doing the same on here, i may not have earnt your respect no reason to or had a chance to. Also lastly whatever to your no, you are rather childish.
  6. Re: [V2]My own v2 Explore page [V2]   In reply to that, 1) I'm not your mate 2) Earn respect 3) Retract your statement about me Thank you it will be greatly appreciated.
  7. Re: McCode v2 center PLease post header, or if it is a heavily edited and you don't want people to get their hands on it PM me i have fixed this problem a few times.
  8. Re: [V2]My own v2 Explore page [V2]   Silent your knew so i will go easy, you don't know me i don't know you so don't state somthing about me please when i have stated no wrongs agasint you. Please open your eyes and see that casey is not posting mods in a good way he/she is posting exact mods with either no edits or so ting it's not worth the hassle, on top off that he/she isn't giving any credit to the original maker.
  9. Re: [V2]My own v2 Explore page [V2] Casey your pathetic.
  10. Re: Cronus - Titan Gaming Media   He now sells his scripts at his forums, http://www.cronwerks.com/forum
  11. Re: [V2]Register page with 1 account per ip [V2]   ??   This is possible i have just done it in the space of 30 seconds.
  12. Re: [V2]Register page with 1 account per ip [V2] Just to point out if you want to add this to your design this is the code taken out of the script...   $checkIp = $db->query("SELECT * FROM `users` WHERE `lastip`='".$_SERVER['REMOTE_ADDR']."'"); if($db->num_rows($checkIp) > 0) { die("<h3>ONE ACOUNT PER IP! >[url='login.php']Back[/url]"); }
  13. Re: IRC Guide UPDATE: CE Server info - Servers: EU.iPocalypse.net , AU.iPocalypse.net , US.iPocalypse.net - Default Channel: #php-games - Port: 6667 (Default) Trivia, Scramble, Hi/low - Servers: EU.iPocalypse.net , AU.iPocalypse.net , US.iPocalypse.net - Default Channel: #gameroom - Port: 6667 (Default) Uno - Servers: EU.iPocalypse.net , AU.iPocalypse.net , US.iPocalypse.net - Default Channel: #uno - Port: 6667 (Default)
  14. Re: The last person to posts wins I think nyna or someone should reply saying then win and lock it HAHA
  15. Re: 2009 Legal Rules for your website   The copyright would stand with the site/author you bought it from, and you would be holding a licence to use it. So i belive if you want to state it is copright your copright would be similer to this... Copyright ? 2008-09 original author. All rights reserved worldwide.
  16. 03laceys

    War on Gaza

    Re: War on Gaza Sorry i am not racist but it's thier coutry leave them at it as long as ours is alright.... (UK), Although all the innocent deaths are tragic and rather upsetting thier is not alot we can do as a nation apart from go into world war 3, which would not be able to happen as a nuke would end it all. As i say though it's not our country keep our people out and save our own. I mainly say this due to the many soldiers dying and i think it is not right our soldiers are being killed in anothers fight, maybe send them aid and other things to help but do not put our soldiers life's at jepordy.
  17. Re: Time to Guess Nynas Age ;) Nyna's age mmm.... 17, 37, 47 or 57 one of those four!
  18. Re: C.E FORUM COLORS! I have found since MD added the ad-toll advertisements the site started to run slow from there on after although when he added the adds into an iframe it did speed up slightly but not for long, i know the advertising no longer goes through ad-toll but the site still runs very slow and is unaccessible at times, ever since the addtoll ads were added. I am not fussed on the forum colors/themes although i did prefer the old theme so i do belive it would be a good idea to be able to choose which theme you would like to use.
  19. Re: [mccode v2] Gym Kix it's because it's randomized.
  20. Re: Hey! Multiple Item Use [v2] Code was sold as a paid modification by oxi in the past price $5
  21. Re: McCodes - Banners for 3 Pounds - PAYPAL ONLY It's no different.
  22. Re: [All Versions] Mailing list, for games under development. I really don't care if they do, i'm too busy refining my game. Just means the spammed email addresses will get the email aswell, i may add for it to check for the @ later but a little buy now.
  23. Re: [All Versions] Mailing list, for games under development. Because they are not registered to the game. http://www.hitmanslegacy.co.uk/mailinglist.php ^^ That is the mod there, as you can see it is for when the game has the register closed.
  24. Ok so i decided to add to my game a "mailing list" this allow members to add their email addres to your data base for you to send an email once your game opens. You will have to edit the following code to suite your games appearance. Save as mailinglist.php <?php include "config.php"; global $_CONFIG; define("MONO_ON", 1); require "class/class_db_{$_CONFIG['driver']}.php"; $db=new database; $db->configure($_CONFIG['hostname'], $_CONFIG['username'], $_CONFIG['password'], $_CONFIG['database'], $_CONFIG['persistent']); $db->connect(); $c=$db->connection_id; $set=array(); $settq=$db->query("SELECT * FROM settings"); while($r=$db->fetch_row($settq)) { $set[$r['conf_name']]=$r['conf_value']; } session_start(); if($_POST['email']) { $em = htmlspecialchars(mysql_real_escape_string($_POST['email'])); $db->query("INSERT INTO mailinglist VALUES('{$em}')") or die(mysql_error()); print("Done, Thanks for adding youself to our list You will recive an email once the game is open."); } else{ PRINT <<<OUT <form action="mailinglist.php" method="post"> <center><table border=0 width=50% class=table><tr> <td><font color=white>Your Email:</td><td><input type="text" name="email"></td><tr> <tr><td colspan=2><input type="submit" value="Submit"></td> </table> </form> OUT; } ?>   SQL: **NOTE** This is a simple modification of Killah's staff contact script.
  25. Re: McCodes - Banners for 3 Pounds - PAYPAL ONLY What i was trying to point out was this could be done with simply typing the words and clicking enter, Of course it can be made in these programmes but it takes just a tad more work not alot but a little bit of know how.
×
×
  • Create New...