Jump to content
MakeWebGames

Faz`

Members
  • Posts

    652
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Faz`

  1. Re: Were does ppl host He's currently revamping the site, it isn't as bad as it looks...lol
  2. Re: McCode v2 center Can anybody help?
  3. Faz`

    My Engine

    Re: My Engine I have seen a game run from this method and it is incredibly fast, good luck to you, I hope it goes well, you'll really have pulled off something sweet if you get this done.
  4. Re: McCode v2 center Sheesh, sorry lol. Here is my header, I finally got access to my files :D <?php $count = 3; $x = -1; while($x < $count) { $places_to_be_secured = array("ID","viewforum","viewtopic"); $x++; $_GET[$places_to_be_secured[$x]] = abs(@intval($_GET[$places_to_be_secured[$x]])); } class headers { function startheaders() { global $ir, $set; echo <<<EOF <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>{$set['game_name']}</title> <style type="text/css"> <!-- body { background-color: #000000; margin-top: 0px; margin-bottom: 0px; font-family:calibri, helvetica, arial, geneva, sans-serif;font-size:12px;color: #FF0000;font-variant: small-caps;font-weight: bold; scrollbar-base-color: #005B70; scrollbar-arrow-color: #F3960B; scrollbar-DarkShadow-Color: #DEDEDE; } a:link { color: #FF0000;text-decoration: none;font-variant: small-caps;font-weight: normal; } ,a:visited { color: #FF0000;text-decoration: none;font-variant: small-caps;font-weight: normal; } ,a:active { color: #FFFFFF;text-decoration: none;font-variant: small-caps;font-weight: bold; } ,a:hover { color: #FFFFFF;text-decoration: underline overline;font-variant: small-caps;font-weight: bold; } a:visited { color: #FF0000;text-decoration: none;font-variant: small-caps;font-weight: normal; } a:active { color: #FFFFFF;text-decoration: none;font-variant: small-caps;font-weight: bold; } a:hover { color: #FFFFFF;text-decoration: underline overline;font-variant: small-caps;font-weight: bold; } table,tr,td { font-family:helvetica, arial, geneva, sans-serif;font-size: 12px; } img { border:none; } textarea { font-family:helvetica, arial, geneva, sans-serif;font-size:12px;color: red;font-variant: small-caps; } .table2 { } .center { width:932px; background-color:#000000; vertical-align:top; text-align:center; } .table { background-color:#000000; } .table3 { background-color:#000000; } .table td { background-color:#DEDEDE; height:22px; } .table3 td { background-color:#CCCCCC; } td .alt { background-color:#EEEEEE; height:22px; } td .h { background-image:url(tablehgrad.png); background-repeat:repeat-x; font-weight: bold; background-color: #D6D6D6; } .table th { background-image:url(tablehgrad.png); background-repeat:repeat-x; : bold; background-color: #D6D6D6; } --> </style></head> <body> <table width="970" border="0" cellpadding="0" cellspacing="0" class="table2"> <tr> <td class="lgrad"></td> <td class="center"> EOF; } function userdata($ir,$lv,$fm,$cm,$dosessh=1) { global $db,$c,$userid, $set; $IP = ($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; $db->query("UPDATE users SET laston=unix_timestamp(),lastip='$IP' WHERE userid=$userid"); if(!$ir['email']) { global $domain; die ("<body>Your account may be broken. Please mail help@{$domain} stating your username and player ID."); } if($dosessh && ($_SESSION['attacking'] || $ir['attacking'])) { print "You lost all your EXP for running from the fight."; $db->query("UPDATE users SET exp=0,attacking=0 WHERE userid=$userid"); $_SESSION['attacking']=0; } $enperc=(int) ($ir['energy']/$ir['maxenergy']*100); $wiperc=(int) ($ir['will']/$ir['maxwill']*100); $experc=(int) ( $ir['exp']/$ir['exp_needed']*100); $brperc=(int) ($ir['brave']/$ir['maxbrave']*100); $hpperc=(int) ($ir['hp']/$ir['maxhp']*100); $enopp=100-$enperc; $wiopp=100-$wiperc; $exopp=100-$experc; $bropp=100-$brperc; $hpopp=100-$hpperc; $d=""; $u=$ir['username']; if($ir['donatordays']) { $u = "<font color='red'>{$ir['username']}</font>";$d="[img=donator.gif]"; } if($ir['smoking'] > 100) { $smoking = "<font color=red>Addictive</font>"; } else { $smoking = "<font color=white>Not Addictive</font>"; } if($ir['smoking'] == 0) { $smoke = "Dont Smoke [[url='#'][size="1"]<font color=blue>Start</font>[/size][/url]]"; } else { $smoke = "$smoking"; } $gn=""; global $staffpage; $bgcolor = '000000'; print <<<OUT [img=lunapic-123051712647453.jpg] <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="20%" bgcolor="#$bgcolor" valign="top"> [b]Name:[/b] $gn{$u} [{$ir['userid']}] $d [b]Money:[/b] {$fm} [b]Level:[/b] {$ir['level']} [b]Crystals:[/b] {$ir['crystals']} OUT; if($ir['smoking'] > 0) { print " [b]Smoking Level:[/b] {$ir['smoking']} [b]Smoker:[/b] $smoke "; } print <<<OUT [[url='logout.php']Emergency Logout[/url]] <hr /> [b]Energy:[/b] {$enperc}% [img=greenbar.png][img=redbar.png] [b]Will:[/b] {$wiperc}% [img=bluebar.png][img=redbar.png] [b]Brave:[/b] {$ir['brave']}/{$ir['maxbrave']} [img=yellowbar.png][img=redbar.png] [b]EXP:[/b] {$experc}% [img=bluebar.png][img=redbar.png] [b]Health:[/b] {$hpperc}% [img=greenbar.png][img=redbar.png] <hr /> OUT; if($ir['fedjail']) { $q=$db->query("SELECT * FROM fedjail WHERE fed_userid=$userid"); $r=$db->fetch_row($q); die("[b]<font color=red size=+1>You have been put in the {$set['game_name']} Federal Jail for {$r['fed_days']} day(s). Reason: {$r['fed_reason']}</font>[/b]</body></html>"); } if(file_exists('ipbans/'.$IP)) { die("[b]<font color=red size=+1>Your IP has been banned from {$set['game_name']}, there is no way around this.</font>[/b]</body></html>"); } } function menuarea() { include "mainmenu.php"; global $ir,$c; $bgcolor = '000000'; print '</td><td width="2" class="linegrad" bgcolor="#'.$bgcolor.'"> </td><td width="80%" bgcolor="#'.$bgcolor.'" valign="top"> <center>'; if($ir['hospital']) { print "[b]NB:[/b] You are currently in hospital for {$ir['hospital']} minutes. "; } if($ir['jail']) { print "[b]NB:[/b] You are currently in jail for {$ir['jail']} minutes. "; } print "[url='donator.php'][b]Donate to {$set['game_name']} now for game benefits![/b][/url] "; } function smenuarea() { include "smenu.php"; global $ir,$c; $bgcolor = '000000'; print '</td><td width="2" class="linegrad" bgcolor="#'.$bgcolor.'"> </td><td width="80%" bgcolor="#'.$bgcolor.'" valign="top"><center>'; } function endpage() { global $db; print <<<OUT </center> </td> </tr> </table></td> <td class="rgrad"></td> </tr> <tr> <td colspan="3"> <table cellpadding="0" cellspacing="0" border="0" width="100%"> <tr> <td class="dgradl"> </td> <td class="dgrad"> </td> <td class="dgradr"> </td> </tr> </table> </td> </tr> </table> </html> OUT; } } ?>
  5. Re: McCode v2 center Ok, I have tried everything, but have ended up in a mess. So had to resort back to my old header. I took POG1's advice and removed some tables, I fiddled about a bit and got rid of them, but once i tried to alter everything else, it all look out of position, would anyone possible be able to help me?
  6. Re: Were does ppl host www.clearhostia.com is my recommendation, some may disagree, but its fast and cheap.
  7. Re: [Need]Sql Dump[Need] This Karma thing is pretty useless. Open up Notepad, and start making a list of everything you need, Crime names, Item names, House names. It's what I did and I'm sure many other people did as well.
  8. Re: [Need]Sql Dump[Need] That is the hardest bit about starting up a game. It takes a while, but its worth it.
  9. Re: Need an Mccodes hall of fame of referrals You would have to edit staff level, what each number is I am not sure, you might have to search around here. Also, can't you try and do some yourself? I mean, I'm a noob yet even I know that, I am not being mean, just giving some advice. I'm sorry, I did not explain that properly $q=$db->query("SELECT u.*,g.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN gangs g ON g.gangID=u.gang WHERE u.user_level != 0 $myf ORDER BY us.IQ DESC,u.userid ASC LIMIT 20"); u.user_level !=0 would have to be changed
  10. Re: Paypal IPN. Secure? http://criminalexistence.com/ceforums/i ... ic=27203.0 Ok, that is a topic about turning donator packs to items yes, but Eternal has posted his IPN on it, it may be use to you or not.
  11. Re: cron help plz I for one know that iamwicked is a trustable dude and has helped me out. What you have against him I do not know, but what are you claiming and accusing him of, is not true I am sure. Before making accusations, have proof. If you have no proof. Shut up =)
  12. Re: So many of one? I agree with illusions, its good if mods are taken and improved, most of the people here don't just add something to it and claim its theirs, they would look at the code, and see how they could build on it/ improve it. I am currently learning, and am using some mods to refer to, that does help in a way.
  13. Re: McCode v2 center Hmm, weird, ok...thanks.
  14. Re: McCode v2 center I haven't done anything, it appears centred on a normal monitor, but on a widescreen monitor like man it appears like I said it does, what I am trying to figure out is how I can make it so it looks centred for both, not just one or the other
  15. Re: McCode v2 center I would, but I can't right now, my site is down due to some domain problems, however once its up I will.
  16. Re: McCode v2 center Ok, I took POG1's advice, but I am completely clueless, I have fiddled around with the tables, validated the html, is there anything I'm doing wrong?
  17. Re: McCode v2 center Ok with a little help from someone, if you have a widescreen monitor (Which I do) the screen is shifted to the left, on a normal monitor, it is centred, is there any way you can make it compatible with both?
  18. Re: McCode v2 center Aha ok thanks. That will be helpful...hopefully. The reason i did not post my code is I did not want to get spoon-fed, I am currently in the learning process, and I will never learn if people do it all for me, so thanks POG1, it should be helpful.
  19. I am currently encountering a problem, not a major one, but it is annoying me nonetheless. At the moment you will be aware v2 has an annoying gap on the left and right, I got rid of the gap on left, and the whole screen (banner, contents and all) has shifted all the way to the left, I have tried a lot of things to try and center all again without the gaps, however I have had no success at all, would anyone be able to help me out? It would be highly appreciated
  20. Re: [mccode v2] Ian's Investments Awesome mod ;)
  21. Re: SQL Injection Well i kinda did that but I didn't really know where to look
  22. Re: SQL Injection I don't really know where to look, does anyone have any hints or links they could give me?
  23. Re: SQL Injection Oh right thanks for that
  24. Hello all, I currently have the problem where users are using SQL Injections to exploit the game, can anyone give me a way to get around this, I have heard there are some Patches or what not, i am kind of new to all this gaming/coding experience so any help will be much highly appreciated
×
×
  • Create New...