Jump to content
MakeWebGames

Veramys

Members
  • Posts

    365
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Veramys

  1. Does anyone know who owns manapot.com?
  2. Fairly sure I had a copy of these codes at one point as well. I'm also fairly sure I could find and download it again. There really doesn't seem to be anything special about this and certainly I wouldn't pay $150+ for it.
  3. I'd like a key
  4. I change boot order to either the usb ports or dvd drive first depending on if I'm using a cd or usb. I've found that using a cd is easiest because some computers don't like booting from the usb.
  5. Ok Adz I'm sorry to say but that isn't a good layout. To be totally honest I wouldn't pay for that design. All the colors clash and it just really doesn't go together.
  6. Didn't care much for payday 2, I'm playing Batman Arkham Knight, Destiny and Elder Scrolls Online.
  7. How does one promise 24/7 support. I never really understood that unless it was a bigger business.
  8. Unless you clear out old attack logs.
  9. Do you record how many times someone wins or loses?
  10. If I ever get into the selling of code that I have developed I'm definitely using the dbad license lol
  11. Not bad, but could do without hrs, I hate hrs so much lol
  12. [MENTION=65371]sniko[/MENTION] [ATTACH=CONFIG]1883[/ATTACH] Does paint count?
  13. I saw this a few years ago too. It wasn't any good then and it's the same now.
  14. Why exactly would he need the while? I don't really see any use for it there. I use while statements for running through adding something into a database for multiple entries. Now looking better at the code I'd do it something like this:   $i=$db->query("SELECT `awardno` FROM `uawards` WHERE awardno=2 userid={$userid}"); if($db->num_rows($i) > 0) { $a = $db->fetch_row($i); echo "You have the award already"; die($h->endpage()); } else if($db->num_rows($i) == 0 && $ir['level'] >= 10) { $db->query("INSERT INTO `uawards` (`id`, `userid`, `awardno`) VALUES ('',{$userid}, '2')"); echo " <div class='desc2'> <div class='citstat'> <table class='mytable'><tr><td><center> <font color='green'>Congratulations!</font> you have earned an award!<img src='https://cdn4.iconfinder.com/data/icons/pc_de_hamburg_icon_pack/32x32/bestseller.png'>You have reached level 10</center></td></tr></table></div></div> "; }
  15. Ok take out the while completely. Wasn't paying much attention lol (watching tv while coding. So try this. $i=$db->query("SELECT `awardno` FROM `uawards` WHERE userid={$userid}"); $a = $db->fetch_row($i); if ($ir['level'] <= 9 && $a['awardno'] == 2) { echo "You have the award already"; die($h->endpage()); } else if ($ir['level'] >= 10) { $db->query("INSERT INTO `uawards` (`id`, `userid`, `awardno`) VALUES ('',{$userid}, '2')"); echo " <div class='desc2'> <div class='citstat'> <table class='mytable'><tr><td><center> <font color='green'>Congratulations!</font> you have earned an award!<img src='https://cdn4.iconfinder.com/data/icons/pc_de_hamburg_icon_pack/32x32/bestseller.png'>You have reached level 10</center></td></tr></table></div></div> "; }
  16. $i=$db->query("SELECT `awardno` FROM `uawards` WHERE userid={$userid}"); while($a = $db->fetch_row($i)) { if ($ir['level'] <= 9 && $a['awardno'] == 2) { echo "You have the award already"; die($h->endpage()); } else if ($ir['level'] >= 10) { $db->query("INSERT INTO `uawards` (`id`, `userid`, `awardno`) VALUES ('',{$userid}, '2')"); echo " <div class='desc2'> <div class='citstat'> <table class='mytable'><tr><td><center> <font color='green'>Congratulations!</font> you have earned an award!<img src='https://cdn4.iconfinder.com/data/icons/pc_de_hamburg_icon_pack/32x32/bestseller.png'>You have reached level 10</center></td></tr></table></div></div> "; } }   Try this perhaps?
  17. Looks nice from a cursory glance through. I'll try it out later when I'm in the mood to open up my files.
  18. I'm not sure why people want to do such a thing, with the way you want it it would be rather easy for someone that is high in the game to have the best house and marry a noob friend of theirs and that friend easily be able to out train people because of the housing. I don't see this as fair.
  19. That's because Guest commented out the update stuff. Also the problem with your $db->escape_string is because no function like so exists in mccodes. It is actually $db->escape
  20. I do believe I used the one on Mccodes and fixed it to work how I wanted.
  21. You need to make sure it selects the code from the config file. Then if the code is not right or not there have the page quit.
  22. I don't see what makes the game worth $2000.
  23. Umm unless Sniko has a new account on here, no he hasn't. Sniko's account says he hasn't been here since October last year I believe.
  24. Looks like what happens to me on a few websites that don't like to load properly. I usually refresh a few times and it straightens out. Idk what all you've tried to do though.
×
×
  • Create New...