Jump to content
MakeWebGames

Damagedcity.com

Members
  • Posts

    214
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Damagedcity.com

  1. Title: SC(Not yet released) Game abstract: Its a free online text based crime game...I have already made the Files and stuff...Just want a parnter for the financial help and some coding helps (Some of the) Unique features: It has many features which no one ever seen in Crime based games ..(dont wanna break the suspense here) Technology used: Codes will Be in PHP Current development status: Ive got all the Scripts ready...and needs only a bit edits with Images and some of the coding..and securing My own skills and tasks in the game: Ive Been coding for around 3 years now...I can make my own stuffs alone but not good in securing them ..so i need someone who can secure What I/we are looking for: Im Looking for someone who can secure almost everything on the game ...Also someone good in Graphics (Not really ) , someone whom i can trust :) and someone with good grammar :P Expenses will be covered by: Game Donations Current team: ME Alone :P Share / gain of the partners: The game donations...50% to you...and 50% to me :)
  2. Yh..Its Too Dark But Overall its good :)
  3. I would not believe this unless i see a video of him kill him..One video like how the hanged sadam hussain and recent Plain crash in america.. what u guys think about that?? America had a blackmail before the crash ryt?
  4. It looks nice and simple maye u shud i show some of your Works? :/
  5. Oh!.. I duno what to do now :P nvm.. close this thread :(
  6. Fail thread?? why? i just said i wanted an investor not a partner for the game..thats why i said no Cpanel access :) 1 reason i dont want any parter(cpanel access given to a person) because , Last time i had partner foundoff mwg who cheated me and ran off with my codes :( I dont want it to happen again..thats why i have got all teh files set up
  7. Im looking for 10$ at the start... sorry NO ftp Game s a crime based game Mccodes Ill free upto 7-12 hours a day this is going to be a long term game..not for just quick cash
  8. NVm... can u delete this thread..U overtook my thread..now no one will even be intrested :(
  9. I already bought domain...And i have a friend whos giving me free cpanel for ever in his provate server but needs 10$ and yeah.. if someones willing to pay for the advertsing and stuff then i would like to give 50% partnership but no cpanel access thoguh
  10. I only need like 10$ for now ...and after a year a lil more for renewal anyone intrested?
  11. I want an investor for my game ... an investor who can help me pay for the game host and domain renewal what u get is 35% of game donations You Wont get cpanel access :D Pm me if intrested and pm if u wanna know how the game is going to look like
  12. Nice ..it looks good....Good work Kr3w
  13. [email protected] this should be his friends email Id :D
  14. Are U willing T Work For Free Or Paid?
  15. Thanks Dayo.Pm Me when u r ready to buy
  16. hmm..Actually I did Pay ..I Know him from long time...so he did for very less cash... and im sure when people starts buying it..i can cover that price :D
  17. Dont Worry About That Peter...I Paid a Person For The Grammar and Spelling :D
  18. Let the price be same For nwo ...after i get a lil custmers ill change to 2.00$ per Criem group
  19. When Theres not any player in Jail or Hospital ..its blanck up there... so i thought ill make this this is ..when no one is in hosp or jail a text is shown For Jail ..add this code after the table ends- </table>"; if(!$db->num_rows($q)) { print "There are currently 0 players in jail!"; }   For Hospital add this code after the table ends- </table>"; if(!$db->num_rows($q)) { print "There are currently 0 users in hospital!"; }   Thank You
  20. Is the argue going about my mod or about your selves??? XD
  21. Thanks ...What price do u think i should keep??
  22. Post all the Games That you play online..even if its text based or 2d or 3d :)
  23. Ok....Most OF the newbies around here who uses mccodes v2 dnt know the formula of crimes ..so they always fails at making crimes I have premade crimes and crime group with Crimes...Fully Controlled...and Balanced..and can say almost like torn Screens COming Soon Price :5$ Price Soon Gonna Increase someone said its verry less Dont miss your chance   CRIMES ALREADY MADE Search the Streets 2 brave Sell Copied Media 3 Brave Shoplift 4 Brave Pickpocket Someone 5 Brave Breaking and Entering 6 Brave Armed Robberies 7 Brave Assasinations 8 Brave Arson 9 Brave Grand Theft Auto 10 Brave Counterfeiting 11 Brave Kidnapping 12 Brave Trafficking 13 Brave Bombing 14 Brave Hacking 15 Brave Hi-Jacking 16 Brave   do u think the price is okay people ?
  24. Ok..Basically all the free item pics mod we have in MWG requires fields in items tables... But My Mod Does not ..here it goes.. Sql : none Setup :make new folder and name it itemimg and then upload the item image according to item id imagine if bazooka is item id 1 then name bazooka's Image 1.png /1.jpg/1.gif or wateva then where ever yu want the item image to be displayed add this img code <img src='itemimg/{$r['itemid']}'>   ~Thanks~
  25. <?php include "globals.php"; $_GET['shop'] = abs((int) $_GET['shop']); if(!$_GET['shop']) { print "You begin looking through town and you see a few shops."; $q=$db->query("SELECT * FROM shops WHERE shopLOCATION={$ir['location']}"); print "<table width=85% cellspacing=1 class='table'><tr style='background: gray;'><th>Shop</th><th>Description</th></tr>"; while($r=$db->fetch_row($q)) { print "<tr><td><a href='shops.php?shop={$r['shopID']}'>{$r['shopNAME']}</a></td><td>{$r['shopDESCRIPTION']}</td></tr>"; } print "</table>"; } else { $sd=$db->query("SELECT * FROM shops WHERE shopID={$_GET['shop']}"); if($db->num_rows($sd)) { $shopdata=$db->fetch_row($sd); if($shopdata['shopLOCATION'] == $ir['location']) { print "Browsing items at <b>{$shopdata['shopNAME']}...</b> <table cellspacing=1 class='table'><tr style='background: gray;'><th>Image</th><th>Weapon</th><th>Price</th><th>Sell Price</th><th>Buy</th></tr>"; $qtwo=$db->query("SELECT si.*,i.*,it.* FROM shopitems si LEFT JOIN items i ON si.sitemITEMID=i.itmid LEFT JOIN itemtypes it ON i.itmtype=it.itmtypeid WHERE si.sitemSHOP={$_GET['shop']} ORDER BY i.itmtype ASC, i.itmbuyprice ASC, i.itmname ASC"); $lt=""; while($r=$db->fetch_row($qtwo)) { if($lt!=$r['itmtypename']) { $lt=$r['itmtypename']; print "\n<tr style='background: gray;'><th colspan=5>{$lt}</th></tr>"; } print "\n<tr><td>{$r['itempic']}</td><td>{$r['itmname']}</td><td>\${$r['itmbuyprice']}</td><td>\${$r['itmsellprice']}</td><td><form action='itembuy.php?ID={$r['itmid']}' method='post'>Qty: <input type='text' name='qty' value='1' /><input type='submit' value='Buy' /></form></td></tr>"; } print "</table>"; } else { print "You are trying to access a shop in another city!"; } } else { print "You are trying to access an invalid shop!"; } } $h->endpage(); ?>   Try This
×
×
  • Create New...