Jump to content
MakeWebGames

Joshua

Members
  • Posts

    1,271
  • Joined

  • Last visited

Everything posted by Joshua

  1. <?php session_start(); ob_start(); if(get_magic_quotes_gpc() == 0) { foreach($_POST as $k => $v) { $_POST[$k]=addslashes($v); } foreach($_GET as $k => $v) { $_GET[$k]=addslashes($v); } }   The first lines if you open up globals.php ^_-
  2. I.E when they go to the gym they would gain exp as well? Shouldnt be to difficult to modify the original gym.php file to do this...but why? :P
  3. LOL I knew i saw that redbar somewhere before >,<
  4. Boosting is noobish and takes the thrill from the game.   I prefer to actually try to get there the right way, gives me a challenge :)
  5. in this case mt_rand is not better. If it was a much larger variable mt would be better, but for the smaller integers rand is actually a bit faster.
  6. rofl yet another false hope for mccoders. Crime, something very similar to this is actually in globals.php I beleive right under <?php   I don't get why people insist on creating quick header inserts or a new file even, to secure their entire game. Secure your code properly and don't worry about it.
  7. if($ir['fatigue'] >= 100)   If someone has say....13 fatigue and you +10 each time it would be over 100. Erego saying if($ir['fatigue'] == 100) is saying to deny only if it's equal. >= should do the trick there. heck even if($ir['fatigue'] > 99) would work. Would look better to change the if to else if as well. but not required.
  8. Why are people going back to the mods made over a year ago and the posts as well then re-bumping them? lol.
  9. Eh i'll go over it tomorrow. It's probably i didnt change a query or two when it calls to the original table, or i added on an extra '' row that isnt there anymore. Either way, i'll fix it up
  10. rofl
  11. Did I forget to delete the "armor" query into the database? I will go look at my online copy and compare.. Being as the attack script doesnt use equip_armor I found it null and void, thought i removed all the sql bits but perhaps i missed one
  12. Read through the original posts ;)
  13. Read through the posts, sounds like you're relying on the "foreach header security crap that doesnt work.
  14. go back and recopy you didnt copy right :P
  15. Well it's going up and down daily :p It "will" be gone, so rest assured any game running off of it will be Null. Best to just plan ahead and get a legal copy anywho.
  16. Raven is gone, buy a legal copy ;)
  17. I like the GRPG script, although, just like mccodes, it takes several working hours to get it secured, as they dont secure a single variable in the entire script, leaving it wide open for sql injects and most likely much much more. I do like the way it's set up however, and short of having to decrypt the paypal page so that you can actually use it it's not to horrid.
  18. Hm, Could point gill :)
  19. Welcome to mwg ;)
  20. Added the No Fear, as back when I was a kid it was a popular clothing brand with some awesome sayings :p the text itself could obviously be manipulated some, i save the PSD's to all my work so :P Just did this one, I was trying to make one side darker and the other lighter from the beam of light hitting the soldier
  21. Yea, that's what my wife said as well, i'm just experimenting with some stuff trying my hand at photoshop practice practice practice ya know :P   Thanks for the input
  22. Which one looks better? or
  23. As added..security? I guess.... Moderators aren't SET to remove posts immediately If you have seen WBB from the admins point of view you can remove posts immediately They can also change the access to allow moderators to be able to remove it immediately, it's just default set not to ;-)   it's also quite simple to adjust the code boxes via the admin panel as well.
×
×
  • Create New...