Jump to content
MakeWebGames

Maniak

Members
  • Posts

    202
  • Joined

  • Last visited

About Maniak

  • Birthday 07/15/1993

Maniak's Achievements

Newbie

Newbie (1/14)

0

Reputation

  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. :)
×
×
  • Create New...