
BreakingLight
Members-
Posts
193 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by BreakingLight
-
Units will be a auction bidding situation. Users can bid on different units and different units contain different things. Units can contain items, money, crystals and many more things can be added to fit your game! Users bid on the unit they have interest in. Sometimes they can hit the jackpot, and sometimes they can go home with nothing. This mod comes with a fully functional administrative panel so you can add new units into the game without having to go through the database. This keeps users on their toes and active in the game checking if to see if they have been outbid. Also is a great way to help balance the economy in a game! Screenshots will be available soon!
-
Hmm okay well thanks!
-
It dosent show that? PM me the URL and ill take a look but when i click on storage it says the two options in the DB and the links as fallows. http://www.ucgeorgia.com/V2/company.php?action=storage&ID=1 http://www.ucgeorgia.com/V2/company.php?action=storage&ID=2
-
Storage isnt bugged. Just didnt have the values in yet.
-
lol uploaded wrong file should be all well now. Went out to lunch but back now :P
-
http://www.ucgeorgia.com/V2/company.php Login admin password admin Find anything let me know! Thanks =)
-
Ill set up a demo now. And i search for security fixes as i use this script on my game so as i get updates for it and fixes it is sent to the people who have purchased it. and $30 is not much compared to what others i have seen charge for a mod of this kind. Plus this comes with updates and fixes. As in any update i do to the companies section it is sent to the purchasers email address on file.
-
Learn from your mistakes. I fixed all the security issues =). And that mod was free this one isnt i put more time in it.
-
This is one i have put a lot of hard work into getting it just right and even. This allows users the ability to create a company in the game. This is nothing like the businesses mod floating around. This mod goes in detail. It gives the admin the option to create different types of companies. The default three are Car Lot, Grocery Store, and Welding Shop. More can be added very easily. This mod comes with: -Ability to integrate more types of companies easily. -Company applications -Upgradable storage system. (Company owners have to pay to have more space to store product) -Upgradable Staff system. (Company owners have to pay to have more space to hire more people) -Importing Logs and Selling Logs (keep a track of what your imports.exports are for your company -Changing prices in product. (Price changes differ so you can maybe score a deal on what you pay for the product or may have to pay way more that you expect) -Stats for companies.(At the end of the day the system selects one company, of each type, to buy product from. This company is selected by cleanliness and productivity(total amount of users labour in company). -Company logo. (Company Owners can change the logo to meet their needs.) NOTE: This does come with a default company logo image. -Company Slogan. (Make a slogan for your company so people can remember you) This mod works entirely on balance. The users have to decide for themselves if its a good idea to open a company such as a car lot. If there are 20 different car lot companies then the market will be hard while if there is only 2 Grocery Stores the market should be pretty easy. This gives users a new section of the game to explore and adapt to. This mod is priced $30.00 and it comes with free updates and bug fixes. I plan to do a lot with this mod by adding new features for companies to do. I am selling a limit of 9 copies of this mod. Sells will be based on a first come first serve basis. Paypal: [email protected] Thanks any questions feel free to ask!
-
lol thanks sorry i didnt get it added faster i live a pretty busy life. But thanks for reminding me totally forgot XD
-
I know what a douche that guy is we ortta get him.
-
Thanks lucky thats the truth. People need to find something to keep them busy other than this forum XD
-
Arguing and stating something. Comparing apples and oranges. if i said "No Dj you are hot get over it" Yeah that may be arguing. But saying he is hot..... Thats kinda two different things. And hey i call em as i see em! giggidy
-
Why thank you, we have ego's this is why it's good to be right. *Djkanna's inflated ego leaves the room, before it gets hit with Ruler's virtual stick.* lmfao!. Dj you still got MSN?
-
That stick causes butt hurtingness! XD
-
No Dj not you. Your hot <3. But Jesus everyone else. I could literally bring people to my house go on a post of MWG and have everyone laugh how bad some of these people gets butt hurt on here. Its so funny that its pathetic. Just chill people. There's more to life than sitting on a forum and being right all the time. I mean at the end of the day what do you have? The ability to tell yourself that you were right all the time? Yeah that's a pretty good reason to do that.........
-
Holy shit you guys gut but butt hurt over a mod so bad chill out its free it took like 10 minutes to whip together a free mod is something to let people have im not gonna put my lfe and soul in it i code for fun. Chill out if you dont like the mod dont use it i mean its not that complex. Criticizer it or what not i really dont care. I took like literally 10 minutes to throw it together at like 3:00 A.M. Dont get all butt hurt theirs more to life than coding. Go outside or something.Jesus Christ people this is a community forum. This is supposed to be a spot to come and get help and help others sale a few things and get tips. Make it like that this is what they community part of this forum is what it is today. And that's all i have to say. :)
-
Added security. And i didnt say security was gay Danny i said the like was according to her ;). I had to be on the good side it was valentines day. Anyways Updated it and added htmlentities for the Post and intval for the GET simple. So wala. Take it or leave it its free >.>
-
Yes security was next step lol and Dj my girlfriend said not to add that cause it was gay >.> i had to stay on good terms.
-
Well this is kind of a social networking feature inspired by facebooks wall. Its pretty simple just something where users can post and comment nothing special just gives them something else to do and its pretty fun. Still working on adding a few things to it ill update it as i add stuff. Hope you enjoy! SQL: CREATE TABLE IF NOT EXISTS `wall` ( `wallID` int(11) NOT NULL AUTO_INCREMENT, `wallUSERID` int(11) NOT NULL DEFAULT '0', `wallTIME` int(11) NOT NULL DEFAULT '0', `wallTEXT` longtext NOT NULL, PRIMARY KEY (`wallID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `wallcomments` ( `wcID` int(11) NOT NULL AUTO_INCREMENT, `wcWALL` int(11) NOT NULL DEFAULT '0', `wcUSERID` int(11) NOT NULL DEFAULT '0', `wcTIME` int(11) NOT NULL DEFAULT '0', `wcTEXT` longtext NOT NULL, PRIMARY KEY (`wcID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; thewall.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; $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['credits'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); switch($_GET['action']) { case 'post': wall_post(); break; case 'dopost': wall_dopost(); break; case 'comments': wall_comments(); break; case 'addcomments': wall_addcomments(); break; case 'delete': wall_delete(); break; case 'addcommentsub': wall_addcommentsub(); break; default: wall_home(); break; } function wall_home() { global $ir,$c,$userid,$h; $wall=mysql_query("SELECT * FROM wall",$c) or die(mysql_error()); print "<table width=100% class=forumline> <th colspan=4>The Wall</th><tr> <td colspan=2 align=center><a href=thewall.php?action=post>Make A Post</a></td><tr> <th width=30%>Poster</th><th width=70%>Post</th><th>Action</th><tr>"; while($wa=mysql_fetch_array($wall)) { $user=mysql_query("SELECT * FROM users where userid={$wa['wallUSERID']}",$c) or die(mysql_error()); $wu=mysql_fetch_array($user); $wazz=mysql_query("SELECT * FROM wallcomments WHERE wcWALL={$wa['wallID']}",$c) or die(mysql_error()); $num=mysql_num_rows($wazz); print"<td><a href=viewuser.php?u={$wu['userid']}>{$wu['username']}</a></td> <td>{$wa['wallTEXT']}</td><tr>"; print"<td></td><td><a href=thewall.php?action=comments&wallid={$wa['wallID']}>View Comments ($num)</a></td>"; if($wa['wallUSERID'] == $userid || $ir['user_level'] != 1) { print"<td width=40%><a href=thewall.php?action=delete&post={$wa['wallID']}>Delete Post</a></td>"; } print"</tr> <td><hr></td><td><hr></td><td><hr></td></tr>"; } print"</table>"; } function wall_post() { global $ir,$c,$userid,$h; print"<table width=100% class=forumline> <th>Making A Post</th><tr> <td align=center> <form action=thewall.php?action=dopost method=post> <textarea name=post cols=40 rows=10></textarea> <input type=submit value=Post></form></td></table>"; } function wall_dopost() { global $ir,$c,$userid,$h; print"<table width=100% class=forumline> <th>Making A Post</th><tr> <td align=center> Your have Posted on the wall!</td></table>"; $_POST['post'] = mysql_real_escape_string(htmlentities($_POST['post'])); mysql_query("INSERT INTO wall VALUES('','$userid',unix_timestamp(),'{$_POST['post']}');",$c); } function wall_comments() { global $ir,$c,$userid,$h; $_GET['wallid'] = abs(@intval($_GET['wallid'])); $wall=mysql_query("SELECT * FROM wall WHERE wallID={$_GET['wallid']}",$c); $wa=mysql_fetch_array($wall); $wac=mysql_query("SELECT * FROM wallcomments WHERE wcWALL={$_GET['wallid']}",$c); print "<table width=100% class=forumline>"; $user=mysql_query("SELECT * FROM users where userid={$wa['wallUSERID']}",$c) or die(mysql_error()); $wu=mysql_fetch_array($user); print"<th colspan=2><a href=viewuser.php?u={$wu['userid']}>{$wu['username']}'s</a> Wall Post</th><tr> <td align=center colspan=2>{$wa['wallTEXT']}</td><tr> <th colspan=2>The Wall Comments</th><tr> <th colspan=2><a href=thewall.php?action=addcomments&wallid={$_GET['wallid']}>Add A Comment</a></th><tr> <th width=30%>Poster</th><th width=70%>Post</th><tr>"; while($wc=mysql_fetch_array($wac)) { $user=mysql_query("SELECT * FROM users where userid={$wc['wcUSERID']}",$c) or die(mysql_error()); $wu=mysql_fetch_array($user); print"<td><a href=viewuser.php?u={$wu['userid']}>{$wu['username']}</a></td> <td align=center>{$wc['wcTEXT']}</td><tr> <td><hr></td><td><hr></td></tr>"; } print"</table>"; } function wall_addcomments() { global $ir,$c,$userid,$h; $_GET['wallid'] = abs(@intval($_GET['wallid'])); print"<table width=100% class=forumline> <th>Adding A Comment</th><tr> <td align=center> <form action=thewall.php?action=addcommentsub&wallid={$_GET['wallid']} method=post> <textarea name=post cols=40 rows=10></textarea> <input type=submit value=Post></form></td></table>"; } function wall_addcommentsub() { global $ir,$c,$userid,$h; print"<table width=100% class=forumline> <th>Comment Added</th><tr> <td align=center> Your have a comment on the wall post!</td></table>"; $_GET['wallid'] = abs(@intval($_GET['wallid'])); $wall=mysql_query("SELECT * FROM wall WHERE wallID={$_GET['wallid']}",$c); $wa=mysql_fetch_array($wall); event_add($wa['wallUSERID'],"You have a new comment on your wall post!",$c,'wallpost'); $_POST['post'] = mysql_real_escape_string(htmlentities($_POST['post'])); mysql_query("INSERT INTO wallcomments VALUES('','{$_GET['wallid']}','$userid',unix_timestamp(),'{$_POST['post']}');",$c); } function wall_delete() { global $ir,$c,$userid,$h; $_GET['wallid'] = abs(@intval($_GET['wallid'])); $wall=mysql_query("SELECT * FROM wall WHERE wallID={$_GET['post']}",$c); $wa=mysql_fetch_array($wall); if($wa['wallUSERID'] != $userid || $ir['user_level'] == 1) { die("This is not your post to delete!"); } print"<table width=100% class=forumline> <th>Delete Post</th><tr> <td align=center> Your have deleted the post!</td></table>"; mysql_query("DELETE FROM wall WHERE wallID={$_GET['post']}",$c); mysql_query("DELETE FROM wallcomments WHERE wcWALL={$_GET['post']}",$c); } $h->endpage(); ?> Updated with some security :)
-
Updated: Now comes with Vault Logs
-
This was something i wanted to because i thought it would keep things a little interesting and players on their toes. Users have vaults to store money. Vaults give no interest(could be added in), but protect users from getting money stolen from. When a users activates the vault they are required to put in a 4 digit PIN number. This PIN number is to protect them from people hacking in and stealing money out of their vault. Users can change PIN numbers to prevent people from breaking in. If a users hacks a vault a % of money is taken out and placed into their own. Users can deposit or withdraw money from their vault at any time. When hacking a user has up to ten tries in one day and then they are blocked from attempting to hack into a vault for the rest of the day. EDIT:Now comes with detailed Vault Logs for every action. Keep an eye on your users ;) Pretty fun mod and my users love it Paypal is [email protected] To Blade Maker: <3
-
I would be very interested to see this as well :)
-
Multiple Houses/House Upgrades [$10]
BreakingLight replied to BreakingLight's topic in Paid Modifications
Mod no comes with a House Market, and an evict function to evict your spouse out of your house. -
Multiple Houses/House Upgrades [$10]
BreakingLight replied to BreakingLight's topic in Paid Modifications
been testing it out for bugs haven't found any yet, sorry meant to get a demo up earlier but work has had me way busy. ill work on it now