
Mark F
Members-
Posts
196 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Mark F
-
I am about to add the mod where you can own your city, which is a donators only feature. And I wanted to know if when a players donator days are up, if they get to keep the city, or if it gets deleted? I am currently looking into it at the moment. Also, has anyone here ever used the mod? Some people seem to think that the mod is bad for the economy, though I am changing the code to hopefully prevent the effects. I would post up the mod, though it is a purchased one.
-
Re: NEW Explore.php[v2] Keep up the good work, though there is no point making explore pages or menus for other games.
-
Re: Help Needed with Loan Officer It no longer displays up as a blank page, though it is still not working, thanks anyhow.
-
Re: The Point of Crime XP? What's with the mood change? I ask for some help with the script and you accuse me of having an illegal copy. Maybe you should mind your own business, and stop looking for trouble. If people do not want to help, that is fine. Though please do not give me your attitude problems. And for your information I learnt to code the old fashioned way, from the books. I just don't know everything about Crime XP yet, and still need to go through half of the files.
-
Re: The Point of Crime XP? Why not? I bought mc code 2 years ago without knowing what to do with it or where i was going to take it. Now I'm possibly one of the better coders on here, not the best by far, but high in the skill ranking in these forums. $75 to learn what i have - Bargain! I will agree with you there, I have already learnt a lot about PHP and MySQL just by modifying the script and fixing its bugs.
-
Re: The Point of Crime XP? For your information I invested $300 in a copy of MC-Codes 2, and it is not hosted on a sub domain. If you could actually afford the code then you would know that it is full of bugs, and does not come with an instruction manual. So the only way to find out how the script works is to go through the 50+ files. The only reason I asked for help is because it would save me a lot of time if someone could explain the system. And for your information my game now has 900+ players, which is pretty good considering it has only been running for 4 months! Tell me now... What was your game called again? What's that... you have no game? Maybe when you make a game to the quality of Torn City I will listen to what you have to say.
-
Re: House Rentals [V2] I was going to put this script back on my website, though if this is the case, I am willing to wait a bit, lol.
-
Re: Game Ranks It may be simple, though to move up a rank, a player can not concentrate on only 1 thing in the game.
-
Re: Game Ranks He can prove himself by making me a shared house marriage mod, lol. (Too Tired)
-
Re: Game Ranks I can agree with you there, even I could do it, and I am not a good coder!
-
Re: Simple Trades [V2] Thanks for working on it, though when I request and offer at the same time it comes up with the following: Your friend does not meet one or more of the requirements! Even though I do meet the requirements.
-
Re: Game Ranks I did insert it into the right place, it just displays with the first rank on index.php , it probably interferes with one of my other scripts.
-
Re: Game Ranks No, that is not it!
-
Re: Help Needed with Loan Officer Still not working, though thanks.
-
My loan officer page is displaying as a white page for some reason. Does anyone know why this would be? I am using MC-Codes v2.0 <?php session_start(); require "globals.php"; print "<h3>Loan Officer</h3> Welcome to the Loan Officer!"; if($ir['level']>=10 || $ir['user_level'] == 1) { if($ir['loan_days'] == $ir['loan_days_max']) { print "You have had your bank account frozen. and you have lost your house. From now on until your loan balance is paid fully you will not recieve any money for your efforts."; $db->query("UPDATE users SET bank_frozen=1,lose_house=1 WHERE userid=$userid"); exit; } else { switch($_GET['action']) { case "deposit": deposit(); break; case "withdraw": withdraw(); break; default: index(); break; } function index() { global $ir,$db,$userid,$h; $loanleft = $ir['maxloan']-$ir['loan']+$ir['loanintrest']; print "\n[b]Your maxloan is \${$ir['maxloan']}. Your current loan is \${$ir['loan']}.[/b] At the end of each day, 10% of your loan amount will be taken away from your on-hand cash until you repay your loan. <table width='75%' border='2'> <tr> <td width='50%'>[b]Pay Back Money[/b] <form action='loanofficer.php?action=deposit' method='post'> Amount: <input type='text' name='deposit' value='{$ir['loan']}' /> <input type='submit' value='Pay Back' /></form></td> <td> [b]Take money[/b] <form action='loanofficer.php?action=withdraw' method='post'> Amount: <input type='text' name='withdraw' value='$loanleft' /> <input type='submit' value='Take Out' /></form></td> </tr> </table>"; } function deposit() { global $ir,$db,$userid,$h; $_POST['deposit']=abs((int) $_POST['deposit']); if($_POST['deposit'] > $ir['money']) { print "You do not have enough money to deposit this amount."; } else { $gain=$_POST['deposit']; $ir['loan']-=$gain; mysql_query("UPDATE users SET loan=loan-$gain, money=money-{$_POST['deposit']} where userid=$userid",$db); print "You hand over \${$_POST['deposit']} to be paid for your loan, [b]You now have a loan of \${$ir['loan']} taken out.[/b] [url='loanofficer.php']> Back[/url]"; } } function withdraw() { global $ir,$db,$userid,$h; $_POST['withdraw']=abs((int) $_POST['withdraw']); $loanleftstill = $ir['maxloan'] - $ir['loan']; if($_POST['withdraw'] > $loanleftstill) { print "You don't have enough money left in your max loan to withdraw this amount, choose a different amount or upgrade your max loan."; } else { $gain=$_POST['withdraw']; $ir['loan']+=$gain; mysql_query("UPDATE users SET loan=loan+$gain, money=money+$gain where userid=$userid",$db); print "You ask for and get a loan of $gain, [b]You now have a loan of \${$ir['loan']} taken out.[/b] [url='loanofficer.php']> Back[/url]"; } $h->endpage(); ?>
-
Re: Game Ranks I can't get it to work on index.php , it shows #1........ , when on viewuser.pgp it says #3.........
-
Re: Game Ranks Does not work, comes up with a blank screen for me. Should $housevalue be $hPRICE ?
-
Re: Main Menu I am sure that your main menu is good for your website, though it is difficult to make one that is suitable for someone else's website, that is unless they have not modified their game a lot. Someone would be able to make their own main menu from scratch in the time that it would take them to modify your main menu.
-
Re: Simple Trades [V2] you are already in a trade... this is not your trade...
-
Re: House Rentals [V2] PROBLEM! When a user puts up their property on the rental market, and then removes it, the property does not get returned to them! It just gets removed from the rental market! Can someone please Help!
-
What exactly is the point of crime XP? Does it help you to gain a level in the game? I wish to learn more about it so that I will know what values to use for my game. Can I please have some suggestions for crime XP in the following? Search For Money ....................................Crime 1 ....................................Crime 2 ....................................Crime 3 Sell Copied Media ....................................Crime 1 ....................................Crime 2 ....................................Crime 3 Shoplift From A Store ....................................Crime 1 ....................................Crime 2 ....................................Crime 3 Pickpocket Someone ....................................Crime 1 ....................................Crime 2 ....................................Crime 3 Steal From A House ....................................Crime 1 ....................................Crime 2 ....................................Crime 3 Burn Down A House ....................................Crime 1 ....................................Crime 2 ....................................Crime 3 Assassinate Target ....................................Crime 1 ....................................Crime 2 ....................................Crime 3 Grand Theft Auto ....................................Crime 1 ....................................Crime 2 ....................................Crime 3 Kidnap A Target ....................................Crime 1 ....................................Crime 2 ....................................Crime 3
-
Re: House Rentals [V2] REMOVE the 'sell your house' link in estate, and make people sell their houses in properties. Otherwise people could possibly own two of their starting off homes, that is what happened to me.
-
Re: House Rentals [V2] Great mod, though I have two of my starting off homes now?
-
Re: Updated Display Pic System [V2] Great mod, though I can't possibly use yours after I just bought one! :cry:
-
Re: [v1/v2] Marrgiage with Shared House[v1/v2] SCREENSHOTS?