Jump to content
MakeWebGames

NarutoPRG.com

Members
  • Posts

    167
  • Joined

  • Last visited

NarutoPRG.com's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. NOTE: I have no read any recent posts & before you question me why I'm postings it's half 12 -_- George wouldn't do something likes this. George is too much of a nice guy, and not a RIP to do something like this. I spoken to George a while ago(around a week), and he had 2 other people working on Mascots with him, so I believe that. The deigns he has made, I have rarely seen. Also think, he would need to find a Render, for the kind of design the buyer would want it to be displayed like(I think ROZ could maybe help on this? not too sure). George isn't that kind of guy. All I have to say.
  2. @ Paul No, lol. I just pay alot of attention to school and music. I thinks it's kind of pathetic if you waste your only chance on life in school. Of course there are other things you can do without school lol, but I wouldn't take the chance. :P
  3. Ty. Jordan, I do have other things todo aswel. I have a little brother(7 years old) whos disabled, and since my mum works until 5 sometimes, I have to look after him. Around 2 hours, something like that. I also go out and get some daylight, lol. I play football every Sunday with mates and that. I'm making a couple of Songs with my mate(Josh Robbo), so I take a couple of of that every week. And after that's out the way, I have paino lessons to teach(30 mins each - now got 9 students) So I do have time sometimes. :P I only had to to right this up, because my foot is killing, and I can't sleep. :wacko:
  4. Unemotionally, no I won't be making the mod. I doubt I will have any-time in the day, as my bookings are getting bigger(now have 9 students), so more students = more time.
  5. Hello, I just want to let members and friends know, I will be leaving MWG(WGP & Coding) for awhile. I have now to much on my hand. I have recently been learning people how to play the Piano. I feel like if I spend not enough time on getting better(and trying to get better at coding), I'll let down my students(all 7 lol). I've been wanting to teach people things, and as I pianist myself, here's my chance. I wouldn't like that chance on Web Dev and an incoming game :P You can add me as a friend on Facebook Here I'd like to thanks some members for being a true Friend(Pudda :thumbsup: ) Hope I'll be back within' years.. Maybe months? :)
  6. Hello, Well from suggestions from my latest free modification, I have decided to code a new Crime System, witch will be a great release for the community. The version will be V1 & V2. The price will be FREE! I am not exactly sure how long it will take depending on how long I spend on it a day. New Features: 1: Crime Level System; A leveling system will be added to the crimes. As your game level, it will grow. But it will only grow depending on the amount of times you successfully do a crime.A user-bar will be sullied to see how many more crimes you need to complete until you reach the next level. Adjustments will be made through Staff panel to help make things easier. But, if you start to fail crimes. Ever 5 crimes you fail. 10% of your current level(user-bar) will be tooken of you. Also with the idea of CrimWAIT(I think it's a good idea). Every 5 crimes you commit(success - fail - etc), 5 seconds will be reduced for each level you go up on the crime system(so if your crime level is 0 you will wait 45 seconds todo another 5 crimes - if your level 7 you will wait 10 seconds to commit another 5 crimes). 2: Crime Operation; You can request 1-2 to join a huge operation on a bank operation - History(what ever huge operations you create). You can only access operations when all(or just you) members have reached passed level 5 on your crime level. The more members you have, more of a chance you will success-ed the operation. Well.. That's it lol. Give Thoughts about it, and etc.. :)
  7. Ty for posting. Right now I'm thinking of more updates to the crime system. I haven't actually seem an update on this, so It may be something for me to work on. :)
  8. No problem. If you want any help with you testing your mods, add me on MSN : I'm bye far not the best on MWG, but I can help you bud. Just ignore people like that. You get to a stage, and think.. Dick ;)
  9. Well some people like Me - Jordan - George - everyone else - don't find it cool people being twats and calling people "noobs". It's quite insulting to people, and I actually hate the word itself. Beginner would be the right word in his case. Skalman. I think you should start acting like the age you are, or you'll end up like Danny. OP: What could help you straight away mate, look through your files and there should be an SQL file. Search through that and you won't need to make a new thread bud. :thumbsup:
  10. @ CJ: I don't know what SESSION really does. Sorry.. @ Jordan: I totally Agree with you mate. But as it's what my mate requested(after every single succeeded crime), they have to wait 2 minutes. I wouldn't mind re-coding they way you said. It sounds a lot better and makes more seance. Plus I think some people might actually use it. I'll talk to you on MSN about time-stamp. :)
  11. I think it what everyone thinks. Lol. Even me. :P
  12. Hello, I got asked by a mate to make a little update were the users have to wait 2 minutes to do another crime if they successfully do that crime. Adding this in PHPMYADMIN: [mysql]ALTER TABLE `users` ADD `crimeWAIT` int(11) not null default '0';[/mysql] Replace your criminal.php with this: if you want <? $macropage = ('criminal.php'); require_once(DIRNAME(__FILE__). '/globals.php'); if ($ir['hospital'] > 0) { echo 'Sorry, you cannot enter the page when you are in Hospital.'; $h->endpage(); exit; } else if ($ir['jail'] > 0) { echo 'Sorry, you cannot enter the page while you are in Jail.'; $h->endpage(); exit; } $query_2 = $db->query("SELECT * FROM `crimes` ORDER BY `crimeBRAVE` ASC "); while ($criminal_2 = $db->fetch_row($query_2)) { $crimes[] = $criminal_2; } $query = $db->query("SELECT * FROM `crimegroups` ORDER BY `cgORDER` ASC "); echo '<span style = "font-weight: bold;">Crimes</span> <table width = "75%" cellspacing = "1" class = "table"> <tr> <th>Crime To Commit</th> <th>Brave Cost</th> <th>Attempt?</th> </tr> '; while ($criminal_1 = $db->fetch_row($query)) { echo ' <tr> <td colspan = "3" class = "h">'.($criminal_1['cgNAME']).'</td> </tr> '; foreach ($crimes as $criminal_action) { if ($criminal_action['crimeGROUP'] == abs((int)($criminal_1['cgID']))) { echo ' <tr> <td>'.($criminal_action['crimeNAME']).'</td> <td>'.($criminal_action['crimeBRAVE']).'</td> <td><a href = "docrime.php?c='.(abs((int)($criminal_action['crimeID']))).'">Yes!</a></td> </tr> '; } } } echo '</table>'; $h->endpage(); ?>   Open docrime.php and add these in: // Add before or aftr $ir['jail'] if ($ir['crimeWAIT'] > 0) // ( > 0 ) This means if the number(crimeWAIT) is higher then 0 you can't access the page. { echo 'Sorry. You cannot access this page right now'; $h->endpage(); exit; } // Add this under line 33 (mysql_query("UPDATE users SET brave) etc... $db->query("UPDATE `users` SET `crimeWAIT` = `crimeWAIT` + 2 WHERE `userid` = $userid ");   Finally open your cron_minute.php and add this: $db->query("UPDATE `users` SET `crimeWAIT` = `crimeWAIT` - 1 WHERE `crimeWAIT` > 0") or die('Query problem');   Well that's all. Enjoy Regards, Rasheed Saeed
  13. Ohh.. Nice Idea ^^ I'm not going to make another cmarket again. But thanks for the small info. :)
  14. Thanks. Right now I'm only concentrating on PHP. But honestly, I don't see the point of using Ajax on a cmarket. @ HD: Would you mind explaining more of this? If it's help on security or performance, I would be really helpful. :) @ Illusions: Thanks for that. I might just have to cut down on them. :P
  15. Wasn't it Darren? :P
×
×
  • Create New...