
Maniak
Members-
Posts
202 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by Maniak
-
Previous work/examples are always a good thing when trying to sell graphics ;D
-
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! :)
-
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.
-
Do you have any examples of your Graphics?
-
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.
-
Looking for partner for my upcoming game using GRPG engine.
Maniak replied to LearningCoder's topic in Partnerships
That image is a stock image for free download. http://all-free-download.com/free-vector/vector-people/man_with_gun_vector_38769.html -
@skooda: i'm pretty sure that is a paid mod by Cronus, and you shouldn't post the script.
-
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?
-
No, not at all, I missed the point in the 1st post.
-
@SRB, some of the developers on here code specifically and only for v2 if I am correct in thinking?
-
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:
-
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'
-
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 :)
-
Could be wrong but it looks like GRPG.
-
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. :)
-
@peterisgb: We're here to help you. Post what you have and we can assist :)
-
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.
-
I haven't coded in months, but try removing LIMIT 1 from the query?
-
Looks very good; too bad I don't have a project to put it on..
-
I like it! Simple but VERY effective! Well done!
-
I'd be very happy to have this for the game that I am planning. :)
-
We need to see some code before we can help you.
-
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.