Jump to content
MakeWebGames

POG1

Members
  • Posts

    1,419
  • Joined

  • Last visited

Everything posted by POG1

  1. Re: vote rpg not working. magic boxes not working donater days not subtracting check the day cron
  2. Re: change colours without editing the pages [V2] create a CSS text file and just make something that edits that..
  3. Re: [mccodes V2] Commander/Criminal Mod [$50.00] For my tables i do something like this, makes it look simple.. .table { padding:0;margin: 10px auto;color:#2c2419; } .table a { color:#2c2419; } .table .tableHeader td { color:#333; font-size:16px; border-bottom:1px solid #e6ebf7; padding:2px 4px; } table tr.row1 { background: #fff } table tr.row2 { background: #e6ebf7 } table tr.row1 td, table tr.row2 td, .table tr.mailboxRow { padding:5px 4px;vertical-align:top;line-height:20px; } Then for useage.. <table class="table" width="85%" cellspacing="0" border="0"> <tr class="tableHeader"><td>foo</td><td>bar</td></tr> <tr class="row0"><td>a</td><td>b</td></tr> <tr class="row1"><td>c</td><td>d</td></tr> <tr class="row0"><td>e</td><td>f</td></tr> </table>
  4. Re: Need a checker Thats because there is no mod to do it, i will be willing to help you with it..
  5. Re: New MainMenu Cant you try something a bit more web 2.0? Like CSS, JS & xHTML
  6. Re: Need a checker You must have made like 10 posts about this, why not just ask someone to mod your game?
  7. POG1

    RSS Reader

    Re: RSS Reader http://www.lmgtfy.com/?q=lemon+party
  8. Re: Improved Staff Logs For V2 Try type casting if your gonna be using integers because it may cause some problems when it gets to number things.
  9. Re: New estate mod [V2]   I only had a quick look but all values i saw were numbers..
  10. Re: [mccodes V2] Commander/Criminal Mod [$50.00] The housing mod looks dreadfull
  11. Re: What's your motivation?   Damn straight! On the internet to be a girl it is easy. Google some pics up, choose a girly name and write x in every sentience..
  12. Re: I'mm baaackk.. for now! How many sites does it search through to get the things? I'm not quite sure as to how it works..
  13. Re: I'mm baaackk.. for now! Welcome back :) The zshare360 site looks very interesting website, did you create it yourself?
  14. Re: Apache help... RewriteRule ^/index.php?page=([a-zA-Z0-9]+)$ /$1 [L] I dunno if that will work, its worth a try :) You would be better off using directory like listings for example something like; domain.com/register/ It's better for SEO
  15. Re: Ajax Contact Form   That function is not needed, why have it when you can just stripslashes() okay a function would be okay if you have more in it but you simpley just have stripslashes so there's no need. it could be expanded on though :)
  16. Re: Powered by codes made by Dabomstew Technically they both do. Jon i swear i just read in a different thread that you have *secured* your game, can't you do something as simple as this ?
  17. Re: Secure Names? Please help. It's called, using an *in secure script*. I assumed this so thats why its in there, to make something that could possibly cause an error stop an error.
  18. Re: 859299 days, 12 hours, 58 mins (time() + (2 * $r[crimeJAILTIME])) Thats why, its adding the timestamp plus twice the jail time.
  19. Re: Secure Names? Please help. 1.24 is a number, it wont work well in the database field ;) You could probably get away without using intval though
  20. Re: Secure Names? Please help.   function codeClean($var) { return mysql_real_escape_string(htmlentities(trim((get_magic_quotes_gpc())?stripslashes($var):$var))); } function changeName($userId,$name) { if(ctype_alnum($name) AND strlen($name) > 4 AND strlen($name) < 20 AND ctype_digit($userId)) { $result = mysql_query("UPDATE `users` SET `username` = '".codeClean($name)."' WHERE `userid` = '".abs(@intval($userId))."';"); return ($result == TRUE) ? TRUE : FALSE; } else { return FALSE; } }   2 Functions, add the code clean as a global function so you can use it elsewhere and add the change name where ever you want. I haven't tested the name change but it looks as if it will work to me :)
  21. Re: 859299 days, 12 hours, 58 mins whats the crime fail query?
  22. Re: Is it possible to do this? you only need the codes? :S
  23. Re: Is It Possible? id you do use divs try the float property. :)
  24. Re: Is it possible to do this? Assuming you understand what a time stamp is I will do. For the jail and hospital you can just edit the current code. So where it puts them into jail or hospital it will be a number of minutes; a minute contains 60 seconds so all you need to do is multiply the minutes by 60 and add it to the current time stamp, the value will be a long number if you have it right.   $jailTime = time() + ($jailTime * 60);   Now you will need to check if they are in or not..   if($jailTime > time()) { echo 'This person is in jail'; $h->endpage(); die(); }   The other ones may need a bit morethinking. Energy,will,nerve and HP will be possible with a "check on page load". The HP will need to be checked when someone attacks which could be done by creating a simple function.
  25. Re: Is it possible to do this? Yes, it would only take minor edits. It would still need a cron to do something though
×
×
  • Create New...