Jump to content
MakeWebGames

rpgmonk

Members
  • Posts

    28
  • Joined

  • Last visited

Everything posted by rpgmonk

  1. so how much is the game earning? Q: Does it have a solid userbase / income? A: Part of the business model is to translate the game to many different languages and run it on as many markets as possible. Currently the game is running HERE with more than 24,000 registered users just during the beta cycle and HERE With that in mind, the game is designed to be translated very easily to different languages. this doesn't answer the question..
  2. Well I listed it on DP first, I did get alot of interest but I gave up DP as I would rather just sell the template here as the transaction would be much easier. I am not selling any copies. Once template is sold to the buyer I will have nothing to do with the template.
  3. I have no use for the template as i gave up on the game so i am listing it for sale, I originally got this made by Peter for $200 You can view it here: http://mafiaconflict.com You will also get the domain name. I am not selling the game backup or licences. I will let it go for $100 and I am open to offers.
  4. Sorry thought you was lol didnt know sorry!
  5. Hello , I will help you..
  6. Steve Jobs, The legend that revolutionised our generations technology. RIP. Apple will still go on and will bring top gadgets to our hand. 200,000 units of 4s pre sold in 12 hours by at&t. I doubt apple will die.
  7. Sorry but i just checked out your game. You have around 1,200 players and not the 8,500 you claim. Your id's are messed up, the jumped big time.
  8. I dont think you guys know Oxi, His one of the most experienced people in mc codes. I personally think you can do much better than just copying Torn. Welcome back tho. The forums been taken over by the new generation of coders lol
  9. What is the monthly revenue?
  10. Thats a very nice template PSD, Looks clean and professional. I think your one of the best designers on MWG, Judging from your previous work aswell. I bid $20
  11. Has anyone baught this? If not, i would like to buy the full right.
  12. what script is this designed for?
  13. You killed a young man with your console then.
  14. lmao, someone tried to scam me in selling me a game i own...
  15. its on now sorry, Also i can make a game, i am good with PHP but its the lack of time i can put into development. pm me if your selling games, i will have a look and we may have a possible deal.
  16. I am looking for an MC V2 Game, I am not looking for any revenue or users, just looking for a quality game. Much have a unique designed template, a few features ets, post here or PM me with what you got.
  17. mod still available?
  18. Thanks so much DJ Kanna! Tested and works perfectly, The Mod creator does not even provide this kind of instant support, i think his inactive.
  19. I am having problems with this mod i baught ages ago, i believe the problem is in this page, when you buy more than 1 quantity your money will go into negative and you can buy items without having the corrext amount. Can someone please look into it thanks:   <?php include"globals.php"; if($ir[hospital]>0) die("You are in the hospital for {$ir[hospital]} minutes."); if($ir[jail]>0) die("You are in jail for {$ir[jail]} minutes."); $itemnum=mysql_real_escape_string($_GET['itemnum']); $getitem=$db->query("select * from usershopitems where id=$itemnum"); if(mysql_num_rows($getitem)==0) { die("<center>Item was not found.<br><a href=index.php>go home</a></center>"); } $im=mysql_fetch_array($getitem); $getiteminfo=$db->query("select * from items where itmid={$im['itemid']}"); $item=mysql_fetch_array($getiteminfo); $getshop=$db->query("select * from usershops where id={$im['shopid']}"); $shop=mysql_fetch_array($getshop); if($ir['money']<$im['price']) { die("<center>Sorry, but you can't afford this item!<br>It costs \${$im['price']}.<br><a href=index.php>go home</a></center>"); } else { if($_GET['yes']==1) { $_GET['quantity']=mysql_real_escape_string($_GET['quantity']); $_GET['quantity']=abs($_GET['quantity']); $getitemname=$db->query("select * from items where itmid={$im['itemid']}"); $itm=mysql_fetch_array($getitemname); $itemname=$itm['itmname']; $time=time(); if($_GET['quantity']>$im['quantity']) { die("There aren't {$_GET['quantity']} of this item available. <a href=\"javascript: history.go(-1)\">click here to go back</a>"); } if($_GET['quantity']==0) { $_GET['quantity']=1; } $price=($_GET['quantity'])*($im['price']); $getuser=$db->query("select * from usershops where id={$im['shopid']}"); $u=mysql_fetch_array($getuser); item_add($userid, $im['itemid'], $_GET['quantity']); $db->query("update users set money=money-$price where userid=$userid"); $db->query("insert into usershoplogs values('','$userid','{$u['userid']}','$itemname','$price','{$_GET['quantity']}','$time')"); event_add($shop['userid'],"{$ir['username']} has purchased {$_GET['quantity']} of your {$item['itmname']}'s from your shop!",$c,'general'); print"<center>You have successfully purchased <b>{$_GET['quantity']}</b> <b>{$item['itmname']}(s)</b> for $$price.!</center>"; $db->query("update usershops set totalsold=totalsold+{$_GET['quantity']}, money=money+$price where id={$im['shopid']}"); $db->query("update usershopitems set quantity=quantity-{$_GET['quantity']} where id={$im['id']}"); $db->query("delete from usershopitems where quantity=0"); } else { if($im['quantity']>1) { print" <div class='generalinfo_txt'> <div><img src='images/info_left.jpg' alt='' /></div> <div class='info_mid'><h2 style='padding-top:10px;'> Buy Items ...</h2></div> <div><img src='images/info_right.jpg' alt='' /></div> </div> <div class='generalinfo_simple'><br> <br><br> <center>How many <b>{$item['itmname']}'s</b> would you like to buy for \${$im['price']} each? <br> There are {$im['quantity']} Available <br> <table class=table> <tr> <td> <form action=shopbuy.php method=get> <input type=hidden name=itemnum value='{$_GET['itemnum']}'> <input type=hidden name=yes value='1'> Amount: <input type=text name=quantity value='1'> <input type=submit value=Purchase> </form> </td> <td> <form action=\"javascript:history.go(-1)\"><input type=submit value=Nevermind></form> </td> </tr> </table></div><div><img src='images/generalinfo_btm.jpg' alt='' /></div><br></div></div></div></div></div> </center>"; } else if($im['quantity']==1) { print" <div class='generalinfo_txt'> <div><img src='images/info_left.jpg' alt='' /></div> <div class='info_mid'><h2 style='padding-top:10px;'> Buy Items ...</h2></div> <div><img src='images/info_right.jpg' alt='' /></div> </div> <div class='generalinfo_simple'><br> <br><br> <center>Are you sure you wish to buy the <b>{$item['itmname']}</b> for \${$im['price']}? <br> <table> <tr> <td> <form action=shopbuy.php method=get> <input type=hidden name=itemnum value='{$_GET['itemnum']}'> <input type=hidden name=yes value='1'> <input type=hidden name=quantity value=1> <input type=submit value=Yes> </form> </td> <td> <form action=\"javascript:history.go(-1)\"><input type=submit value=No></form> </td> </tr> </table></div><div><img src='images/generalinfo_btm.jpg' alt='' /></div><br></div></div></div></div></div> </center>"; } } } $h->endpage(); ?>
  20. Is this bug free? Rent house, auction house etc? please provide a working demo i am interested.
  21. what about when someone loses in hospital it shows old hospitaal reason and doesnt show that you attacked them.
  22. At the top right you will find a search box... It says "Enter search word" Can you see it? It has a Magnifying glass icon and a right arrow. In the box type in what you are looking for and you might be luck! Test your luck go on search for something! ;)
  23. Thanks Bertrand i will try this.
  24. Well the IPN isnt functioning, I have tried my verified paypal email and the users dont get credited automatically. I also tried my friends paypal from the UK and the IPN works. so its a setting with the US paypal?
  25. Hi i have a premium paypal account. on my website i get payments which is working on an IPN. i have a us paypal account. I tried my friends paypal from the UK and it worked. i tried to dd the settings on the paypal with no luck. Can anyone help?
×
×
  • Create New...