Jump to content
MakeWebGames

Maniak

Members
  • Posts

    202
  • Joined

  • Last visited

Everything posted by Maniak

  1. Previous work/examples are always a good thing when trying to sell graphics ;D
  2. The reason I said that is because a lot of the pages look like they are just stock v2 pages. I do however, wish you all the best with your venture! :)
  3. The layout is okay imo; but I would've worked on the game a lot more before releasing it as to me it still looks like a mccodes v2 engine; with a new layout.
  4. Do you have any examples of your Graphics?
  5. Loading time is very slow for me. I chose to skip the into as it was a long slow process. But when I got to the Login/Register page there was no info about the game - what the aim is? where it is set? etc. etc. - maybe that is because it was in the intro that I skipped cos of how long it was? So I decided not to register.
  6. That image is a stock image for free download. http://all-free-download.com/free-vector/vector-people/man_with_gun_vector_38769.html
  7. @skooda: i'm pretty sure that is a paid mod by Cronus, and you shouldn't post the script.
  8. Please forgive me if I am wrong, but based on your theory ANY website that is sold with the Facebook Connect feature is going against their terms?
  9. No, not at all, I missed the point in the 1st post.
  10. @SRB, some of the developers on here code specifically and only for v2 if I am correct in thinking?
  11. If you're going to use MCCodes; i'd personally say to use Version 2 as there are more developers for that engine compared to 2.5 redux. However, as Octarine said:  
  12. The SQL above is wrong. If it goes in the Login table then the code you will need to run is:   ALTER TABLE `login` ADD `staff` int(11) NOT NULL DEFAULT '0'
  13. If it is a stock v2 script in the global_func.php file there is a function called "check_level()" replace that with: (this will stop the increase in Energy for every Level gained.)   function check_level() { global $db; global $ir,$c,$userid; $ir['exp_needed']=(int) (($ir['level']+1)*($ir['level']+1)*($ir['level']+1)*2.2); if($ir['exp'] >= $ir['exp_needed']) { $expu=$ir['exp']-$ir['exp_needed']; $ir['level']+=1; $ir['exp']=$expu; $ir['brave']+=2; $ir['maxbrave']+=2; $ir['hp']+=50; $ir['maxhp']+=50; $ir['exp_needed']=(int) (($ir['level']+1)*($ir['level']+1)*($ir['level']+1)*2.2); $db->query("UPDATE users SET level=level+1,exp=$expu,brave=brave+2,maxbrave=maxbrave+2,hp=hp+50,maxhp=maxhp+50 where userid=$userid"); } }   *for some reason when displaying the code there is a space in the maxbrave; that shouldn't be there... As for the gym; post up the script and one of us will be able to help :)
  14. Maniak

    Mafia Warfare

    Could be wrong but it looks like GRPG.
  15. IsaacP: If you have a go at doing this small modification (with the help above), and still don't succeed; post the coding you have here and we'll help you with it. :)
  16. @peterisgb: We're here to help you. Post what you have and we can assist :)
  17. I don't think that's what he's after, Illusions.. What you need is: (I have taken the sprintf() out as well, as I don't code that way) elseif($ir['energy'] == $ir['maxenergy']) { echo "You already have full energy."; } else { if(($ir['maxenergy']-$ir['energy']) < 75) { $sql = 'UPDATE `users` SET `money`=money-1000, `energy`='.$ir['maxenergy'].', `grub`=grub+1 WHERE (`userid`='.$userid.')'; } else { $sql = 'UPDATE `users` SET `money`=money-1000, `energy`=energy+75, `grub`=grub+1 WHERE (`userid`='.$userid.')'; } mysql_query($sql); echo 'You bought a Fried Chicken for $1000! I got all the feathers off it that I could! </br></br> <a href="chuckwagon.php">Back to the Chuckwagon</a>   I'm unsure if it'll work as I haven't coded in a long time, if it does someone may be able to make it more efficient; but that is to the best of my knowledge without looking at code for about a year.
  18. I haven't coded in months, but try removing LIMIT 1 from the query?
  19. You shouldn't post the code openly on here if it is a paid modification..
  20. Looks very good; too bad I don't have a project to put it on..
  21. print " [<a href="http://dpuse.php?ID={$i[" target="_blank">Use</a>]"; is your problem. The error clearly stated line 92. You need it to be: print " [<a href=dpuse.php?ID={$i['inv_id]}'>Use</a>]";
  22. I like it! Simple but VERY effective! Well done!
  23. I'd be very happy to have this for the game that I am planning. :)
  24. We need to see some code before we can help you.
  25. For the players Username: if($ir['user_level'] == 1 && $ir['donatordays'] >= 1) { $ir['username'] = '<span style="color: #FFF;">'.stripslashes($ir['username']).'</span>'; } For every other Username the player will see: if($r['user_level'] == 1 && $r['donatordays'] >= 1) { $r['username'] = '<span style="color: #FFF;">'.stripslashes($r['username']).'</span>'; }   I haven't tested this, as I already have a function to do all of the different "User Levels" and Donators.
×
×
  • Create New...