Jump to content
MakeWebGames

chicka

Members
  • Posts

    351
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by chicka

  1. Well It probably don't come with a valid mccodes license seeing as he don't have paypal. I am curious tho.. PM sent.. Lets see whats up...
  2. You want ingame money for a copy of the game? SCAM!!!!
  3. Yea right. They don't take legal action against those running games with out a proper Mccodes license.. i'm sure nothing will be done, but who know's I could be wrong!!!
  4. This Thread was locked and I didn't get a chance to explain my self so I thought i'd start a new thread. http://makewebgames.io/showthread.php/40585-Looking-for-a-coder was his original post. Just to clear things up I have been talking to danger boy for almost 3 years and did not imply that he had attempted to scam me or anyone else. To my Knowledge he's always been honest and no one has ever had a problem with him. What I was trying to say is that what he was asking for seemed pretty simple, If he's offering me (back in the day) to do paid work, why don't he just do it him self. All I was wondering is why would he offer me to do work on my site but all of a sudden ask for a coder to something easy fo him. I have never attacked anyone or criticized anyone on these forums since I joined years go and I don't plan on starting now. Just thought I'd put that out there..
  5. Just curious, You used to message me (before I learned how to code) and ask me on a daily basis if I needed work done. Now your looking for a coder?? Smells like bullshit to me
  6. chicka

    Guru LP

    Very nice.. Its nice to see you do something different for a change.. Keep up the good work
  7. yes your right... I just took a piece of code from roulette and posted it here to give him some idea as to how to do it..
  8. This is a snippet of code I got from slotmachine.php from mccodes. You'll hve to edit it to work for you but this should help you out $_GET['tresde']=abs((int) $_GET['tresde']); if(($_SESSION['tresde'] == $_GET['tresde']) || $_GET['tresde']<100) { die ("Error, you cannot refresh or go back on the slots, please use a side link to go somewhere else.<br /> <a href='slotsmachine.php?tresde=$tresder'>> Back</a>"); } $_SESSION['tresde']=$_GET['tresde'];
  9. Although this is a good idea I don't think its gonna work. Here is the reason. Paid mods these days don't sell that much and when they do, even the best mods are not all that expensive. Most of the people buying mods are young kids, thus not paying a lot of money. Splitting that 5 ways for that much work isn't gonna last long. If the designers make a nice layout why wouldn't they wanna sell it privately and make 100% of the profits?? they are surly not gonna wanna split it 5 ways. Keep in mind that these forums are dead these days. If your trying to get a team together to make free mods, remember that a_bertrand tried this same thing with the zap engine which was free and no one bothered to do anything with it. If no one wanted to do anything with a FREE community based engine, I highly doubt they are gonna want to make free mods. Thats just my opinion. I hope for the sake of the community that your able to do what your trying to do. it does sound like a good idea Best of luck
  10. Again, Mccodes is "NOT" Registered there for DMCA would not apply to them. DMCA is not free. Just like the court system you have to pay to file paper work, court costs, lawyer fees if you hire one, administration fees, this fees and that fees.
  11. I'm shocked no one has mentioned this already.. McCodes is not a registered business, They do not have a registered trade mark, There for mccodes can not take any legal action what so ever. At most they can contact your hosting company complaining about using their codes but as for legal action it would cost them $$$$ over a $100.00 license. Its probably an empty threat.
  12. Danny696 made a list of trusted coders. I suggest you find that thread and ask one of them. Most if not all of them come with good referrals, will code what you want and not ask you for your cpanel access.
  13. This should do it for you   if ($youdata['location'] != $odata['location']) { print "You can only attack someone in the same location!<br /> <a href='index.php'>Back</a>"; $db->query("UPDATE users SET attacking=0 WHERE userid=$userid"); $h->endpage();
  14. Thanks A_b for sharing that link. I might actually learn something :-)
  15. I could be wrong but I believe what he wants is for the players to be able to deposit as much as they want how ever if they go over (example) 2billion they get no interest but if they have less then 2b they get interest to a max of 2bil?? if thats the case then gerpreet is right. Sorry SomeRandomBastard didn't see your post before I posted this.. I believe that query will work for what he is looking for
  16. Indeed. I misread what he was asking for. gurpreet is correct. All you have to do now is edit your cron_day file and you should be good to go..
  17. Yes he could so something like this function deposit() { global $db,$ir,$c,$userid,$h; $_POST['deposit']=abs(@intval($_POST['deposit'])); if($_POST['deposit'] > 2000000000) { echo "your max deposit is 2 billion"; $h->endpage(); exit; } else
  18. What your looking for is VERY simple and its probably something you can do your self. In your day cron, look for the query that gives bank interest and edit it to suit your needs.. in your bank.php file you dont' really have to do anything except edit the part that tells players how much interest they will gain.
  19. when i'm not so busy, at some point today i'll do it for you.
  20. I'm glad it worked out for ya..
  21. Open up staff_items.php under switch($_GET['action']) { add case 'massitemgive': mass_give_item(); break; case 'massitemgivesub': mass_give_item_sub(); break;   At the bottom of the page before   $h->endpage(); ?>   add   function mass_give_item() { global $db,$ir,$c; print "<h3>Giving Item To All Users</h3> <form action='staff_items.php?action=massitemgivesub' method='post'> Item: ".item_dropdown($c,'item')."<br /> Quantity: <input type='text' name='qty' value='1' /><br /> <input type='submit' value='Mass Send' /></form>"; } function mass_give_item_sub() { global $db,$ir,$c; $q=mysql_query("SELECT * FROM users WHERE fedjail=0",$c); while($r=mysql_fetch_array($q)) { $db->query("INSERT INTO inventory VALUES('',{$_POST['item']},{$r['userid']},{$_POST['qty']})",$c) or die(mysql_error()); event_add($r['userid'],"All users were given an item $itemname, Click <a href='inventory.php'>Here</a> to check.",$c); print "Item Sent To {$r['username']}</br>"; } print "<br /><font color=blue>Mass item sending complete!</br></font>"; stafflog_add("Gave {$_POST['qty']} of item ID {$_POST['item']} to all users"); } You'll have to add the link if its not there already but that should do it.
  22. With Mccodes V2 there is a mass give items. You should be able to give to everyone.. It should look something like this staff_items.php?action=massitemgive
  23. I'm pretty sure its illegal as well. By signing up to someones site the owner is responsible for protecting peoples user names and passwords given to them. I highly doubt anyone in their right mind will sell you their users table.
  24. I thought so..
  25. Just curious MrAnthony Did this Alex buy Ruthless city from Martin?? Cause I purchased a copy of the codes a while back before the game was sold
×
×
  • Create New...