Jump to content
MakeWebGames

POG1

Members
  • Posts

    1,419
  • Joined

  • Last visited

Everything posted by POG1

  1. Re: Explore-Moderate Modification to original script At the top you have a number of if elses which are not exactly needed, you can optimize it 2 ways.. // SWITCH? switch(mt_rand(1,5)): case 1: $thaught="I shall miss my family."; break; case 2: $thaught="My son shall avenge me."; break; case 3: $thaught="I'm too young to die!! Can't somebody help me?!?!?!"; break; case 4: $thaught="After all the horrors I've survived, I turn into a brainless zombie...sigh."; break; case 5: $thaught="Time to visit my ex... >:]"; break; endswitch; // OR AN ARRAY, THIS WILL BE FASTEST. $t = array("I shall miss my family.","My son shall avenge me.","I'm too young to die!! Can't somebody help me?!?!?!","After all the horrors I've survived, I turn into a brainless zombie...sigh.","Time to visit my ex... >:]"); $thought = $t[mt_rand(1,count($t))];
  2. Re: [v2] New Header no offence but that sucks, its just a load of tables with borders and cellspacing..
  3. Re: CSS parent child divs and margins try setting a padding, most of the time it will cancel out child element margins going outside. or you could try.. div.inner h2 { margin:0; }
  4. Re: New forum for mccodes v2 that 100% works (beta) Why is there an inputbox with the users name when creating a topic? i managed to get YOUR MUM to post on there ;) I tried a number of XSS attacks and had no luck :)
  5. Re: Staff Contact State the obvous but wouldn't you just use the mailbox lol
  6. Re: FlameSpark - Test us now in BETA! Is this game still going? Your homepage hasn't changed for a while and the demo just looks like all you can do is login and look at 2 pages..
  7. Re: Crack the Safe @crazy-t If you were save the variable in a message then do what karlos was doing and send to the same page but with no _REQUEST variables then the message variable wouldn't exsist :)
  8. POG1

    Criminal Wars

    Re: Criminal Wars the layout looks pretty cool now.
  9. POG1

    Best Band

    Re: Best Band Allthough quite a bit before my time, The Cure are rad!
  10. Re: New Engine/Idea maybe :S It would take a lot of CSS, Grafix and JS. You can have a div and the background can be the male/female image. Ontop of that you can have the areas for each of the other elements (eyes,hat,nose,clothes) and through CSS change the images to whatever is needed. You would javascript on the creation of the player and make the images change onto the screen. It would be a nice idea to do, perhaps it could be done on an mccode game but for avatars or something...
  11. Re: Lose Your Job there is no where clause in ths sql so everyone in the database will loose their jobs :evil:
  12. Re: review thugzcity I think you need to not copy others and think of something nice, why would people want to play a lesser version of something that they already play? To make it as a good game it needs to be inivative.
  13. Re: YoungGold.co.uk V2 A word of warning, positioning elements for a whole layout is bad news. Here is what I see on your website.. http://img30.imageshack.us/img30/6159/s ... ldwebd.png The container on the right goes all the way down the page and i cannot scroll down to see the rest :S   The layout of the template is relatively simple and if you want i would be happy to help you with making it more compliant.
  14. Re: Freelancer, expert on website design ect. Sounds a bit too good to be true..
  15. Re: [v2] Explore ReCode A numerical array would probably been a better choice over the assocative.
  16. Re: Lose Your Job   you sure thats gonna work..
  17. POG1

    Best Band

    Re: Best Band   haha screemo!
  18. Re: What are you listening to right now ? Cockney Thug - Rusco     DUB STEP!!!!!!
  19. Re: [V2] Advanced Template MOD $20 You can upload the template (it has to be through the backend/file manager) then throught the admin pannel you can add it, then once its added change settings. The templating its self is quite different from the tradidional MCCode way but it is more simple (in my view) and more efficent.
  20. Re: Crack the Safe Karlos, nice idea of setting a msg and redirect then showing it but does it really need to be set in a session variable? Try using cookies that expire 1 second after setting, I have done for ages and it seems to work nicely.
  21. Re: [Web 2.0] html nav bar [$10] that dont need php lol, you could wrap it in a big ass echo if you wanted to..
  22. Re: [V2] Advanced Template MOD $20 A demo is now live here. If you wish to see the administration pannel for it please ask and i will show you.
  23. I have seen a few template mods for games and decided to do it the proper way and . This mod is totally different from any other, it incorperates a new class (different from the 1 in header.php) and makes it easy to do a lot of things. The mod loads in the file and processes it into the page, the template system allows for different templates to be loaded in. Conventional mods just load in different stylesheets. The administration system for this mod is very simple and easy. It incorperates AJAX so the moderating is much faster and easier. Screenshots check here.. http://img136.imageshack.us/img136/2152/screenv.gif - Price: $20 - A demo will be online soon. - Any queries please ask. - Any ideas on improvements will be nice.
  24. Re: user_level colours   function formattedName($userid) { $result = mysql_query(sprintf("SELECT `username`,`userid`,`user_level`,`donatordays` FROM `users` WHERE `userid` = %u;",$userid)); if(mysql_num_rows($result)) { $player = mysql_fetch_array($result,MYSQL_ASSOC); $type = 'player'; if($player['donatordays'] > 0) { $type = 'donator'; } if($player['user_level'] == 2) { $type = 'admin'; } elseif($player['user_level'] == 5) { $type = 'assistant'; } return '[url="viewuser?u='.$player['userid'].'"]'.$player['username'].'[/url]'; } else { return false; } }   You just need to add the CSS classes :)
  25. Re: user_level colours i once create a function and posted it here. try and use the search ;)
×
×
  • Create New...