-
Posts
1,660 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Events
Everything posted by Jordan Palmer
-
Can I ask why don't you update them yourself? It's not too hard ;]
-
Events,and mail Counts do not update
Jordan Palmer replied to Lotan Kane's topic in General Discussion
No worrie's. I'm always around so yes I can help -
I personally like the marketplace more than Paid mods being in the ''forum'' itself. I think if you stopped moaning and gave it a shot you'd see the advantages
-
First thing I take out is this; Great "update" mate
-
Browsed the code and all I can say... $ip = ($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; Read about that Variable before creating anything ;]
-
Events,and mail Counts do not update
Jordan Palmer replied to Lotan Kane's topic in General Discussion
If it's not showing in the database, then quite simply enough you haven't got the update query; $db->query("UPDATE users SET new_mail=new_mail+1 WHERE userid=$userid"); Will need to go in the send(); function. if you need more assistance contact me on my MSN [email protected] and i'll sort it for you -
These look pretty decent mate
-
can someone update this mod for me please?
Jordan Palmer replied to Nicholas's topic in Game Support
Why would you want page's on search? =/ -
Hey.. Without seeing the code and hearing the bugs, I'm pretty sure no-one can.. However if you contact me when I get time, I'll see what I can do
-
This is looking neat. I'll prolly be one of them that integrate it ;]
-
I have to agree with Zeddicus..All I did was laugh; Also there is nothing called "Sprintf coding" As sprintf is a function not a coding language =D
-
Damn these are pretty awesome...I may PM you with some request's ;] :P
-
GREAT mod seanybob These are some of the hardest modification to create and you have done just that, I will be purchasing this modification once I have my game on a more "stable" state. I wish you all the best mate; @Money Issue's; If you cannot afford to buy simply PM seany I'm sure yourself and him can arrange something; Having kid's is NO excuse to be "poor" simply enough shouldn't have unprotected sex if you cannot afford to live you life along with having children. Anyway, I'm not here to teach Sex Education as I'm sure you're happy at you're new arrival; Good Luck to everyone who's brought this mod! I'm sure it'll help your game grow :thumbsup:
-
[McCodes V2[$5]] User Comment Syetem
Jordan Palmer replied to Danny696's topic in Paid Modifications
This looks pretty decent Danny. If I couldn't code it myself, I'd defiantly buy; I only hope the 'code' is worth the $5 (: -
I have too agree with Magictallguy. If you cannot install a game you SHOULDN'T own one. Simple Nice offer though Jon
-
Google work's wonders.. I also do help a lot of people (Free) with Security issue's. I'm not the greasiest, But I know my stuff and basically I'm free so yeah.. Immortal && Anthony; So you secure a site at $300... Then someone with the same engine want's to hire you but he steps in and sells them the same engine for $250..think about it... That's stopping everyone else's along with your own chance to make money. Zero; I agree with all you've said so far
-
You quoted my text so I thought you was talking to. Sorry, My bad; How you put it, It seemed to me and many others you was saying it was a ripped off and changed version.
-
I'm sorry to say, I've left school so no need to skip it. My name isn't DJ, it's Jordan either get it right or don't say it at all. You say; Looks almost like a knock off of my login template. Not quite but close. mines just over 2 years old though. Knocked off - ripped off...In my own eye's anyway
-
If it 'Matters nothing too you' why are you so bothered?.. Obv you'll think yours is better simply because it's yours duh..It doesn't look even remotely similar.. http://www.specsavers.co.uk/ Remember Google is you're friend..
-
I didn't code this one but I've edited it to make it work. Should do the Job. <?php include(DIRNAME(__FILE__).'/globals.php'); #include_once((__DIR__) .'/globals.php'); echo "<h3>Bank</h3>"; switch($_GET['action']) { case 'Withdraw': withdraw(); break; case 'Deposit': deposit(); break; default: index(); break; } if($ir['bankmoney']=='-1') { $cost=20000; if($ir['money']<$cost) { echo "You dont have Enough Money! >[url='index.php']Back[/url]"; $h->endpage(); exit; } $costy=number_format($cost); echo "Congratulation you have Bought a Bank Account for \$$costy >[url='bank.php']Go to Bank[/url]"; $db->query("UPDATE users SET bankmoney=0, money=money-$cost WHERE userid=$userid"); } function index() { global $ir,$c,$userid; echo " <table width=80% class=h border=1><tr><th>Deposit</th><th>Withdraw</th></tr><tr> <td> When adding to your account 2% is taken from you <form action='?action=Deposit' method='post'> Amount: <input type='text' name='dt' value='{$ir['money']}' /> <input type='submit' value='Deposit' /></form></td> <td> Withdrawl cash. No money is taken for using this <form action='?action=Withdraw' method='post'> Amount: <input type='text' name='wd' value='{$ir['bankmoney']}' /> <input type='submit' value='Withdraw' /></form></td></tr></table> <table width=80% border=1 class=h><tr><th>"; echo "</th></tr></table>"; } function withdraw() { global $ir,$c,$userid,$h,$db; $_POST['wd'] = abs(intval($_POST['wd'])); $with=number_format($_POST['wd']); $bkmon=number_format($ir['bankmoney']); if($ir['bankmoney']<$_POST['wd']) { echo "You Tried Withdrawing [b]\$$with[/b] but you only have [b]\$$bkmon[/b]"; $h->endpage(); exit; } $total=number_format($ir['bankmoney']-$_POST['wd']); echo "You Successfully Withdrew [b]\$$with[/b] You now have [b]\$$total[/b] in your Bank. >[url='bank.php']Back[/url]"; $db->query("UPDATE users SET bankmoney=bankmoney-{$_POST['wd']}, money=money+{$_POST['wd']} WHERE userid=$userid"); } function deposit() { global $ir,$c,$userid,$h,$db; $_POST['dt'] = abs(intval($_POST['dt'])); $dep=number_format($_POST['dt']); $mon=number_format($ir['money']); if($ir['money']<$_POST['dt']) { echo "You tried depositing [b]\$$dep[/b] but you only have [b]\$$mon[/b] >[url='bank.php']Back[/url]"; $h->endpage(); exit; } $blah=$_POST['dt']/50; if($blah>10000) { $blah=10000; } $taken=number_format($blah); $bank=$_POST['dt']-$blah; $banky=number_format($bank); $total=number_format($ir['bankmoney']+$bank); echo "You successfully deposited [b]\$$banky[/b] out of [b]\$$dep[/b] into your bank account The banker toke his [b]\$$taken[/b] cut You now have [b]\$$total[/b] in your bank. >[url='bank.php']Back[/url]"; $db->query("UPDATE users SET bankmoney=bankmoney+$bank, money=money-{$_POST['dt']} WHERE userid=$userid"); } $h->endpage(); ?>
-
That would be a good idea but no, I ment by using Image's. Random Images and you get a random outcome ;]
-
This should work. I have tested it and it worked fine for me, So here goes ;] <?php include(DIRNAME(__FILE__).'/globals.php'); #include_once((__DIR__) .'/globals.php'); print "<h3>Bank</h3>"; if($ir['bankmoney']>-1) { $_GET['action'] = (isset($_GET['action']) && is_string($_GET['action'])) ? htmlentities($_GET['action'], ENT_QUOTES) : FALSE; if(!in_array($_GET['action'], array('deposit','withdraw','index',''))) { echo ('Illegal Operation'); } switch($_GET['action']) { case "deposit": deposit(); break; case "withdraw": withdraw(); break; default: index();break; } } else { if(isset($_GET['buy'])) { if($ir['money']> 49999) { print "Congratulations, you bought a bank account for \$50,000! [url='bank.php']Start using my account[/url]"; $db->query("UPDATE users SET money=money-50000,bankmoney=0 WHERE userid=$userid"); } else { print "You do not have enough money to open an account. <a href='explore.php'> <font color=red>[b]Back to town...[/b]</font></a>"; } } else { print "Open a bank account today, just \$50,000! [url='bank.php?buy']> Yes, sign me up![/url]"; } } function index() { global $db, $ir,$c,$userid,$h; print "\n[b]You currently have".money_formatter($ir['bankmoney'])." in the bank.[/b] At the end of each day, your bank balance will go up by 2%. <table width='75%' cellspacing=1 class='table'> <tr> <td width='50%'>[b]Deposit Money[/b] It will cost you 15% of the money you deposit, rounded up. The maximum fee is \$3,000.<form action='?action=deposit' method='post'> Amount: <input type='text' name='deposit' value='{$ir['money']}' /> <input type='submit' value='Deposit' /></form></td> <td> [b]Withdraw Money[/b] There is no fee on withdrawals.<form action='?action=withdraw' method='post'> Amount: <input type='text' name='withdraw' value='{$ir['bankmoney']}' /> <input type='submit' value='Withdraw' /></form></td> </tr> </table>"; } function deposit() { global $db,$ir,$c,$userid,$h; $_POST['deposit'] = abs(intval($_POST['desposit'])); if($_POST['deposit'] > $ir['money']) { print "You do not have enough money to deposit this amount."; } else { $gain=$_POST['deposit']; $ir['bankmoney']+=$gain; $db->query("UPDATE users SET bankmoney=bankmoney+$gain, money=money-{$_POST['deposit']} where userid=$userid"); print "You hand over \${$_POST['deposit']} to be deposited, [b]You now have <font color=red>".money_formatter($ir['bankmoney'])."</font> in the bank.[/b] [url='bank.php']> Back[/url]"; } } function withdraw() { global $db,$ir,$c,$userid,$h; $_POST['withdraw'] = abs(intval($_POST['withdraw'])); if($_POST['withdraw'] > $ir['bankmoney']) { print "You do not have enough banked money to withdraw this amount."; } else { $gain=$_POST['withdraw']; $ir['bankmoney']-=$gain; $db->query("UPDATE users SET bankmoney=bankmoney-$gain, money=money+$gain where userid=$userid"); print "You ask to withdraw $gain, the banking lady grudgingly hands it over. [b]You now have ".money_formatter($ir['bankmoney'])." in the bank.[/b] [url='bank.php']> Back[/url]"; } } $h->endpage(); ?> If you have PHP 5 you can un comment the second include and remove the first otherwise I advise to stay as you are ;]
-
i need a better freehost to make my game work proper
Jordan Palmer replied to kaine-'s topic in General Discussion
I'm not REF mad -.- -
i need a better freehost to make my game work proper
Jordan Palmer replied to kaine-'s topic in General Discussion
EJ.AM -
LOL I do think there over priced for the code quality but Immortal seems decent :thumbup: