Jump to content
MakeWebGames

BreakingLight

Members
  • Posts

    193
  • Joined

  • Last visited

Everything posted by BreakingLight

  1. Re: [mccodes] Battle Mechs [$15] UPDATE!: Mechs now have levels and exp bars. So you can determine what Mech you want to face by the level! This gives users another thing to work on.
  2. Re: [mccodes] Battle Mechs [$15] V1 but can be easily converted to V2
  3. Re: [mccodes] Battle Mechs [$15] Also forgot to mention As all my mods they come with free upgrades and free support for the mod. Meaning if i ever make an update to them i will send it to you as soon as the update comes out.=)
  4. Re: [mccodes] Battle Mechs [$15] Wow im gonna go ahead and slam myself This screenshot sucks but it was done at 4 am this morning lol.So... yeah here it is. Sorry for the crappy image but im no good with images :P Any questions feel free to ask in here or PM.
  5. Re: [mccodes]Make Items[$10] BUMP
  6. This is kinda a mod i wanted to do for a while, but just had so much going on so now i finally got time to do it:P. Users can buy Battle Mechs Once a user has a Battle Mech they can ... -Upgrade MAX HP (More HP you have the more damage you can take). -Upgrade the Speed of the battle Mech (Speed of course helps dodge other Battle Mechs in battle) -Upgrade Armor (Armor of course effects amount of damage taken) -Upgrade Laser (Laser is the Stronger less accurate of the two weapons on your Battle Mech) -Upgrade Main Gun (Main gun is the more accurate weaker of the two weapons) Users can fight others who own a Battle Mech and beat them down and become the number 1!!! Pretty neat mod comes with its own Attack System (not this is not an edit in your attack.php file this is a complete new file no edits to any other file =) Screen Shots Coming Soon!
  7. Re: [mccodes] New Crime System [$5.00] Thats a V2 function this is for V1. Just go through your MySQl database and edit it. I will be making an admin function soon for it.
  8. Re: [mccodes] New Crime System [$5.00] Mod Sent Thanks! Copies Left: 7
  9. Re: [mccodes] Drugs [$10.00] Copies Left:9
  10. Re: [mccodes] New Crime System [$5.00] Copies Left: 9
  11. Re: [mccodes] Drugs [$10.00]
  12. Re: [mccodes] House Upgrades [$15] I will reserve you one =)
  13. Re: [mccodes] House Upgrades [$15] also good fix for that is the investment bank i dont quite remember who owns that.But i see what your saying and this mod will work for that
  14. Re: [mccodes] House Upgrades [$15] It is $15 i lowered it.Yes it lets you upgrade your house by like adding pools ect ect
  15. Well i have seen a few drug mods out there.Some were ok and some were not.Well none did the exact function i wanted them to so i made this. Copies Left:10   This Mod Features -Customize what stats the drug effects -EXAMPLE:Strength.Agility,Guard,Energy,Will,Brave,HP (More can be added very easy) -Drug Usage-When a user uses drugs to much they become addicted.When addicted they can not use drugs till they pay an expensive trip to rehab. - Rehab - Cures you from your addiction, but as stated before comes at a very high price. -Other info- The drug effect only lasts a specific amount of time. Once the time runs out the users stat that was changed is reverted back to its original form. Overall it is a good mod.I have been working on it for almost a week, but my dads been in the hospital and about lost him so kinda worked around that on the nights i couldn't sleep. As always with my mods this comes with free support and free upgrades as i always make additions to my mods and they will be sent to your email as soon as updates are released. Thanks everyone!
  16. New Crime System Copies Left: 10 Well i got really bored with the old crime system, and decided to make a whole new one. NOTE: This is the crime system not the looks of the criminal.php file. This crime systems Features -Jail/Hospital Option-Uses can go to jail or hospital decided by the crime -Minimum/Maximum money- say min is 300 max is 500 the payout would be somewhere in between those two numbers -Item spent in jail/hospital is set in the crime like the payout it has a minimum and a maximum -Different currency-You can choose to payout in money points credits or whatever you want. Custom Jail/Hosp Reasons-If they got caught breaking in a small apartment you can have it say "Arrested breaking in a small apartment" and it will display that for the reason in jail.   As always my mods come with full support, big fixes, and any updates i make to this mod will be emailed to you.Thanks!
  17. Re: [mccodes] Hospital + Revive Option Thanks for the constructive criticism rather have that than a "wow this is uber sucky" :P
  18. Re: [mccodes] Hospital + Revive Option Very nice great addon to it =).Glad to see you used it. +1 back
  19. Well i have been making a few paid mods so i thought might as well make a few free ones so here is one. Is not much but a little something. May check over it as I am at school and coded it fast.But from my eyes it is fine and testing worked fine.=) hospital.php <?php session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; include "clean.php"; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); $_GET['revive']=abs((int) $_GET['revive']); if($_GET['revive']) { if($ir['brave']<20) { die("<center>You need at least 20 brave to revive someone! <a href=hospital.php>>Back</a></center>"); } if($ir['hospital']>0) { die("<center>You need to worry about yourself more than someone else! <a href=hospital.php>>Back</a></center>"); } $rev=mysql_query("SELECT * FROM users WHERE userid={$_GET['revive']}",$c) or die(mysql_error()); $re=mysql_fetch_array($rev); $rid=$re['userid']; $un=$ir['username']; mysql_query("UPDATE users SET hospital=0 WHERE userid={$re['userid']}",$c); mysql_query("UPDATE users SET brave=brave-20 WHERE userid=$userid",$c); event_add($rid,"You were revived by $un.",$c); print"<center>You have revived [b]{$re['username']}[/b] <a href=hospital.php>>Back</a></center>"; $h->endpage(); exit; } print "<h3>Hospital</h3> "; $d=mysql_query("SELECT COUNT(*) as cnt FROM users WHERE hospital > 0",$c) or die(mysql_error()); $r=mysql_fetch_array($d); if($r['cnt'] > 0) { print "<center>There is currently [b]{$r['cnt']} [/b]users in the hospital</center> "; } else { print "<center>Nobody is in the Hospital</center> "; } print "<table width='75%' border='2'><tr bgcolor=black><th>ID</th><th>Name</th> <th>Level</th> <th>Time</th><th>Reason</th>"; if($ir['hospital']==0) { print"<th>Revive?</th>"; } print"</tr>"; if($r['username'] == $ir['username']) { $t="<font color=FFCC00>[b]";$et="[/b]</font>"; } else { $t="";$et=""; } $q=mysql_query("SELECT u.*,c.* FROM users u LEFT JOIN gangs c ON u.gang=c.gangID WHERE u.hospital > 0 ORDER BY u.hospital DESC",$c); while($r=mysql_fetch_array($q)) { $time=$r['hospital']; $t4=floor($time/60/24); $t1=floor($time/60) % 24; $t2=$time % 60; if($t2 < 10) { $t3="0".$t2; } else { $t3=$t2; } if($t4) { $t5="$t4 days,"; } else { $t5=""; } if($t1) { $t1="$t1 hours,"; } else { $t1=""; } if($t2 == 1) { $t2="< 1 min"; } else { $t2="$t2 mins"; } print "\n<tr><td>{$r['userid']}</td><td>{$r['gangPREFIX']} [url='viewuser.php?u={$r[']$t{$r['username']}[/url] [{$r['userid']}]$et</td><td> {$r['level']}</td><td>$t5 $t1 $t2</td><td>{$r['hospreason']}</td> "; if($ir['hospital']==0) { print"<td><a href=hospital.php?revive={$r['userid']}>Revive</a></td>"; } print"</tr>"; } print "</table>"; $h->endpage(); ?>   Thanks and hope someone can use this.
  20. Re: [mccodes]Make Items[$10] Sorry for the delayed reply. Here is a totally awesome look of what the mod looks like.Im sorry for the bad image im not good with images lol.But none the less here it is. UPDATE: The New version of this mod will be released Saturday.The mod price unfortunately will increase.However those who have purchased it will before then will receive the upgrade free.As all upgrades are free.
  21. Make Items Copies Left: 10 This allows your users to make items out of other items.The way it works is Users view the items that can be made on the list.(It does not say what is required in my game but if wanted i could make it say what is required to make the item for no extra cost)Once they see an item on the list that they want they click it.If they have in their inventory the items that it takes to make the item.Then they receive it.if not they don't. It is a nice clean coded mod and users on my game so far enjoy it.I plan on doing A LOT of work in the near future(next 2 weeks) on this mod.Which is why i suggest any interested in it to buy it as when i finish adding what i want to it the mods price will increase. As always with my mods this comes with free support and free upgrades for life.As stated above in this mod if you would like the items it takes to make the new item to be shown then say so and it will be on your copy. Thanks Enjoy!
  22. Re: [mccodes] Pay To Click Addon [$20]   Good.=)   Would be better if you just payed them in game funds or added a "balance" to their account that they could build up, and ONLY use for donator packs. You would be making 100% profit then. Upon Request i could easily make it so it does that.
  23. Re: [mccodes] Pay To Click Addon [$20] the system works so no user can click the add twice daily. sorry for the short reply on my phone
  24. Re: [mccodes] Simple Theme Selector Yeah v2 would be better for this as you only have one file to edit.
  25. Re: [mccodes] Pay To Click Addon [$20] no no no not at all. The ads are on a separate page.Users get paid for clicking the ads.Thats the point.Users get paid chances rise in your game getting donations.=)
×
×
  • Create New...