
Danny696
Members-
Posts
2,632 -
Joined
-
Last visited
-
Days Won
5
Content Type
Profiles
Forums
Events
Everything posted by Danny696
-
Re: Building Mods - now for sale! I like this mod why do you only sell 7 copies?
-
Re: [mccode v2] Crystalbank Mod Just 2 thing's 1. They fixed the error. 2. If you update your severs every day how come you can't spell?
-
Re: {PHP-Engine} {Free} I do agree with you there SF there is too few mods on here
-
Re: texting mail system Two things 1. Wrong topic this is for posting mods not asking for them and 2. SEARCH!!!!
-
Re: Can he be trusted Pudda can be trusted.
-
Re: Criminal Wars Your account had been suspended
-
Re: Criminal Wars Did you buy that template NO did you delete the cropyright notice from the botton YES did you add your own copyright saying you made everything YES The list is endless
-
Re: honor exchange help :) thanks. Does anybody know if the HTML is right?
-
Re: SUPER SMALL Bank Interest Mod Use where instead of if
-
Re: Locked Account Mod [V2] Why do you capatilise every word?
-
Re: crime help nothing
-
Re: Help me please Contact mccodes if you bought them which you probabbly didnt
-
Re: honor exchange help Ok then try <?php // pwetty colors remove this one only else if($_GET['spend'] == 'gun') { switch($_GET['gun']) { case 'gun1': gun1(); break; case 'gun1buy': gun1buy(); break; case 'gun2': gun2(); break; case 'gun2buy': gun2buy(); break; default: index(); break; } function index() { ?> <font color=white>Select the gun you would like to sawp for rewards. You have [b]<? echo "{$ir['honor']} "; ?>[/b] Rewards. <table border="0"> <tr> <td>Name</td> <td>Price</td> <td>Swap?</td> </tr> <tr> <td>Gun 1</td> <td>100 Honors</td> <td>[url='rewardexchange.php?spend=gun&gun=gun1']Swap![/url]</td> </tr> <tr> <td>Gun2</td> <td>100 Honors</td> <td>[url='rewardexchange.php?spend=gun&gun=gun2']Swap![/url]</td> </tr> </table> <font> <? } function gun1() { ?> <font color=white>So you want a Gun1. It will cost you 100 honors. Are you sure? <form name="input" action="rewardexchange.php?spend=gun&gun=gun1buy" method="get"> <input type="button" value="Yes Please"> </form> <form name="input" action="rewardexchange.php" method="get"> <input type="button" value="No Thanks"> </form> </font> <? } function gun1buy() { if($ir['honor'] <= 99) { ?> <font color=white> <big>Ehem</big> You do not have enought honors to buy gun1 yet you only have <? echo"{$ir['honor']}."; ?> [url='index.php']Go Home.[/url] [url='rewardexchange.php']Go Back.[/url] </font> <? } else { ?> <font color=white> You have swaped the 100 honors for Gun1 Remember this could hurt someone be carefull. <? $itemid = '1'; // change this to gun id item_add($userid, $itemid, 1); $db->query("UPDATE users SET honors=honors - 100 WHERE userid={$_SESSION['userid']}"); ?> </font> <? function gun2() { ?> <font color=white>So you want a Gun2. It will cost you 100 honors. Are you sure? <form name="input" action="rewardexchange.php?spend=gun&gun=gun2buy" method="get"> <input type="button" value="Yes Please"> </form> <form name="input" action="rewardexchange.php" method="get"> <input type="button" value="No Thanks"> </form> </font> <? } function gun2buy() { if($ir['honor'] <= 99) { ?> <font color=white> <big>Ehem</big> You do not have enought honors to buy gun2 yet you only have <? echo"{$ir['honor']}."; ?> [url='index.php']Go Home.[/url] [url='rewardexchange.php']Go Back.[/url] </font> <? } else { ?> <font color=white> You have swaped the 100 honors for Gun2 Remember this could hurt someone be carefull. <? $itemid = '2'; // change this to gun id item_add($userid, $itemid, 1); $db->query("UPDATE users SET honors=honors - 100 WHERE userid={$_SESSION['userid']}"); ?> </font> <?
-
Re: honor exchange help i wasnt sure what you ment but as ive been trying to learn the basics of HTML and XHTML over the past week i thought i would give it a go :) it probably wont be right but if it is could someone who knows HTML/XHTML fix it :D lol erm here it is <?php // pwetty colors remove this one only else if($_GET['spend'] == 'gun') { switch($_GET['gun']) { case 'gun1': gun1(); break; case 'gun1buy': gun1buy(); break; case 'gun2': gun2(); break; case 'gun2buy': gun2buy(); break; default: index(); break; } function index() { ?> <font color=white>Select the gun you would like to sawp for rewards. You have [b]<? echo "{$ir['honor']} "; ?>[/b] Rewards. <table border="0"> <tr> <td>Name</td> <td>Price</td> <td>Swap?</td> </tr> <tr> <td>Gun 1</td> <td>100 Honors</td> <td>[url='rewardexchange.php?spend=gun&gun=gun1']Swap![/url]</td> </tr> <tr> <td>Gun2</td> <td>100 Honors</td> <td>[url='rewardexchange.php?spend=gun&gun=gun2']Swap![/url]</td> </tr> </table> <font> <? } function gun1() { ?> <font color=white>So you want a Gun1. It will cost you 100 honors. Are you sure? <form name="input" action="rewardexchange.php?spend=gun&gun=gun1buy" method="get"> <input type="button" value="Yes Please"> </form> <form name="input" action="rewardexchange.php" method="get"> <input type="button" value="No Thanks"> </form> </font> <? } function gun1buy() { if($ir['honor'] <= 99) { ?> <font color=white> <big>Ehem</big> You do not have enought honors to buy gun1 yet you only have <? echo"{$ir['honor']}."; ?> [url='index.php']Go Home.[/url] [url='rewardexchange.php']Go Back.[/url] </font> <? } else { ?> <font color=white> You have swaped the 100 honors for Gun1 Remember this could hurt someone be carefull. <? $itemid = '1'; // change this to gun id item_add($userid, $itemid); $db->query("UPDATE users SET honors=honors - 100 WHERE userid={$_SESSION['userid']}"); ?> </font> <? function gun2() { ?> <font color=white>So you want a Gun2. It will cost you 100 honors. Are you sure? <form name="input" action="rewardexchange.php?spend=gun&gun=gun2buy" method="get"> <input type="button" value="Yes Please"> </form> <form name="input" action="rewardexchange.php" method="get"> <input type="button" value="No Thanks"> </form> </font> <? } function gun2buy() { if($ir['honor'] <= 99) { ?> <font color=white> <big>Ehem</big> You do not have enought honors to buy gun2 yet you only have <? echo"{$ir['honor']}."; ?> [url='index.php']Go Home.[/url] [url='rewardexchange.php']Go Back.[/url] </font> <? } else { ?> <font color=white> You have swaped the 100 honors for Gun2 Remember this could hurt someone be carefull. <? $itemid = '2'; // change this to gun id item_add($userid, $itemid); $db->query("UPDATE users SET honors=honors - 100 WHERE userid={$_SESSION['userid']}"); ?> </font> <?
-
Re: honor exchange help its item_add($userid, qty); i think
-
Re: review thugzcity When i clicked the link i saw the same template as torn the register is the same layout as the login. I cant say anything too bad all i would say is get a better themplate and some unique mods to make me want to stay. overall i would say about 5.5/10
-
Re: Criminal Wars Wheres the copyright? and the random players doesnt work on login. Why do you have exp and money bots thatll be good for the econemy and low levels right? ;) the game clock is a big fail. mainmenu is random. on your houses thingy it says mood but everywhere else it says will. mainmenu says cell jail.php says jail. newspapaer is also a fail. everything i see is free mods
-
Re: mod request hope right topic wrong topic
-
Re: Illegalife and his GFX Nice one illegalife
-
City Error, Can not add cities on mccV2!!!! HELP
Danny696 replied to norwayzone's topic in General Discussion
Re: City Error, Can not add cities on mccV2!!!! HELP WOW your spending $5000 on securing and editing some people have secured it for free ;) but 5000 you could get someone to make you a new game without mccodes and have it the way you like like it etc -
City Error, Can not add cities on mccV2!!!! HELP
Danny696 replied to norwayzone's topic in General Discussion
Re: City Error, Can not add cities on mccV2!!!! HELP staff shops? -
Re: Security $1 [Mc Code V2] i think someone allready did that crazy-t on cronwerks for free ;)
-
Re: [Web 2.0] html nav bar [$10] he posted the css and js not the php
-
Re: user_level colours lol what happened to the secs?
-
Re: Sell Your Gang VR1 isnt is obvs that people do use ce DUR!!!!! retard and why would i follow you round. i look at the forum everyday and check out unread posts so if you post something you made/robbed is'nt it obvs im gonna comment