Jump to content
MakeWebGames

Zero-Affect

Members
  • Posts

    3,713
  • Joined

  • Last visited

    Never

Everything posted by Zero-Affect

  1. $qq=mysql_query("SELECT * FROM cities1 WHERE cityowner1={$ir[userid1]}");
  2. Probably because the names are known to be genuine people mate. I rarely recommend people but i'd say AB will do a good job. Renkia actually for offer one 175 U.S. dollars = 120.118059 British. I could even cut that by removing the available: and then it would be about 150 U.S. dollars = 102.958336 British pounds Also i do suggest offer 1 but i do allow other options like customising your own offer, i can go around your website find the exploits note them down and give you a total of how much it would cost to fix them. We all know MCC don't do a effective job anyway so i wouldn't say my price is overkill considering even with the new (secure) patched versions of MC it would still cost about 100 bucks to get it secured properly. Note: The GBP prices are subject to change depending on the exchange rate. [mp]118[/mp]
  3. I do like this but i would suggest adding water marks make because if you don't people will just steal it...
  4. I find it amazing how you changed your tune towards MCC lately Jordan it's worrying... MCC offer hosting :D cool is it as good as their (patched)scripts? :whistling:
  5. I seem to rememeber some newb called BlueDevil... lol welcome back Fella :pinch:
  6. how would adding quotes around a variable help with performance?
  7. [mysql]ALTER TABLE `users` ADD `sig` varchar(150) NOT NULL DEFAULT '';[/mysql]
  8. Good point DJK
  9. Reminds me of nuke, Dave security does matter because if the creator cba to secure it then some noob won't unless it's pointed out..
  10. Looks good Sniko :)
  11. I noticed and i edited my previous post
  12. echo 'Rank: '.number_format(get_gamerank()); Try posting the function for us bladewolf. EDIT: echo 'Rank: '.number_format(get_gamerank($ir['level'], array($ir['strength'],$ir['agility'],$ir['guard'],$ir['labour'],$ir['IQ'])));
  13. echo 'Rank: '.number_format(get_gamerank().' ';   echo sprintf("Rank: %s ", number_format(get_gamerank));
  14. echo sprintf('Rank: %s ", number_format(get_gamerank));
  15. Welcome back, I've been here longer! ^^ lol
  16. would it not be easier to convert the whole v1 into v2 lol
  17. $ir['username'] = username($ir['user_level'],$ir['username']);
  18. LOL did you just look that up or something?
  19. wouldn't that be for 404 and so on though Dave, NOTE i edited my previous post should work but untested.
  20. $return_data = (array_key_exists($user_level, $staff_colours)) ? '<span style="color: '.$staff_colours[$user_level].';">'.$username.'</span>' : $username ; For Jordan ... Alan is deprecated but we still love him lol
  21. $tobereplaced = array( '$db->query', 'fetch_row', '$db->', ); $replacedwith = array( 'mysql_query', 'fetch_array', 'mysql_', ); if ( $blah == 'v1') { $convedtext = str_replace($tobereplaced, $replacedwith, $convtext); } elseif ( $blah == 'v2' ) { $convedtext = str_replace($replacedwith, $tobereplaced, $convtext); } Bored... lol
  22. if (!empty($error_msg)) { header('Location: /error_page.php?msg=1'); } in your footer or something?   <?php $error_msg = array( 1 => 'error one', 2 => 'error two' ); $_GET['msg'] = (isset($_GET['msg']) && array_key_exists($_GET['msg'], $error_msg)) ? $_GET['msg'] : 1 ; echo ' <h1>Error!</h1> '.$error_msg[$_GET['msg']]; ?> in error_msg.php
  23. function username($user_level,$username) { $staff_colours = array( 1 => '#fff', 2 => '#CC0', 3 => '#FFC', 5 => '#006' ); $return_data = (array_key_exists($user_level, $staff_colours)) ? '<font color='.$staff_colours[$user_level].'>'.$username.'</font>' : $username ; return $return_data; } echo username($ir['user_level'],$ir['username']); Sorry lol my mistake this should work.
  24. i have you in the group with girls Helen :)
  25. function username($ident) { $staff_colours = array( 1 => '#fff', 2 => '#CC0', 3 => '#FFC', 5 => '#006' ); $return_data = (array_key_exists($ident['user_level'], $staff_colours)) ? '<font color='.$staff_colours[$ident['user_level']].'>'.$ident['username'].'</font>' : $ident['username'] ; return $return_data; } echo username($ir);
×
×
  • Create New...