Jump to content
MakeWebGames

oxidati0n

Members
  • Posts

    564
  • Joined

  • Last visited

Everything posted by oxidati0n

  1. Re: [sB] Helper Bot   Nice, I wouldn't spend $30 on it sorry. If it was $10-$15 i would of brought.
  2. Re: SPECIAL ATTACK   live
  3. Re: [mccode] Annoucement Mod   ty :-)
  4. Re: [Free] [v1] BB Gun / Shoot Someone in Back! in phpmyadmin lol
  5. Re: [mccode] Annoucement Mod   That was a example, That wouldn't work with the actual script itself.
  6. Re: sms billing   Thanks, I love the service and risk free.
  7. Re: [TGM] Russian Roulette [TGM]   Thanks.
  8. Re: [TGM] Russian Roulette [TGM]   I know this is off topic and it's about your sig saying EARN CASH QUICK AND EASY AND FREE etc. That's actually someone who hosts off DreamHost and I'm curious it's somebody at CE. I don't think it's a scam but I do get suspicious when They say "free", Trust me when it's comes to giving money nothing's free.
  9. Re: [TGM] User Shops Mod [TGM]   It's right in front of you? "That's Arsons?" - Of course it is, Read carefully lol :-P
  10. Re: [TGM] Stat Level [TGM]   Uum.. Thats got my investment bank and your the owner of that, You have a illegal version of my mod, I'll be contacting you shortly.
  11. Re: neab for sale     Yes I bought these codes. And I may resell it but I cant use it or resell it. The person that buys it will have full right to it. So if your interested please let me know. When I sell it I will let Alian know who the new owner is. Ah, Like UCC did sell his aswell. I have already one license so I'm definately not interested, I got what I was looking for. :-D
  12. Re: Free Donator XFER w/ LOGS!   Thankyou.   Well It worked for 03laceys, Maybe your using the wrong version? This one's for LITE and V1, Not V2. I checked the functions and cases, They are all fine, I haven't done anything wrong.   OMG, Man why you complaining? I have posted a mod? I have posted lots? I don't just charge, So don't think your the best guy who gives everything. You post some good mods as I post some good mods, Don't fuss now I'm back as posting some more nice mods. Anyway, before you start judging most of your mods are buggy anyway.
  13. Re: [mccode] Multiple Event Deleter   Yeah sure, I'll work on one in a while.
  14. Re: [TGM] Stat Level [TGM] Josh, are you El Jefe? lol cause your game owner is? And how come on TerritoryWars.net you don't have the mod or I can't seem to use it?
  15. I have been requested several times about a donator system with logs, Walaa! lol I have designed one with TAXES, Absolutely free! Firstly run SQL CREATE TABLE `donatorxferlogs` ( `dx_id` int(11) NOT NULL auto_increment, `dx_from` int(11) NOT NULL, `dx_to` int(11) NOT NULL, `dx_amount` int(11) NOT NULL, `dx_date` varchar(255) NOT NULL, PRIMARY KEY (`dx_id`) ) TYPE=MYISAM ;   Create file called donatorxfer.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=number_format($ir['crystals']); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); if(!$_GET['user'] or mysql_num_rows(mysql_query("SELECT * FROM users WHERE userid={$_GET['user']}",$c))==0) { die("Invalid User/Use of System"); } //configuration $donator_only=true; /*Should this be a donators only feature?*/ $id=$_GET['user']; $script_name=$_SERVER['PHP_SELF']; $q=mysql_query("SELECT * FROM users WHERE userid=$id",$c); $r=mysql_fetch_array($q); $user=$ir; $them=$r; print "Transfer Donator Days"; if(!(int) $_GET['user']) { //If nobody exists die("You have failed to collect there ID!"); }elseif($_GET['user'] == $userid) { }elseif(mysql_num_rows($q) == 0) { //Non-existant user die("Nobody Exists!"); }elseif($donator_only == true and $user['donatordays'] == 0) { //If it's donators only and they have no donator status die("Your not a donator, Please disappear."); } else { if($_POST['amount'] and $_POST['conf'] == 1) { //Make the transfer, easy. $days=$_POST['amount']; $old=$_POST['old']; mysql_query("UPDATE users SET donatordays=donatordays+$days WHERE userid={$them['userid']}",$c) or die("ERROR: ".mysql_error()); mysql_query("UPDATE users SET donatordays=donatordays-'$old' WHERE userid={$user['userid']}",$c) or die("ERROR: ".mysql_error()); $time=time(); mysql_query("INSERT INTO donatorxferlogs (dx_id,dx_from,dx_to,dx_amount,dx_date) VALUES ('NULL',{$user['userid']},{$them['userid']},$days,$time);",$c) or die("ERROR: ".mysql_error()); $tax=$days-$old; print "You have successfully transfered $days donator days to [b]{$them['username']}[/b] "; if($them['donatordays'] == 0) { print "Transfer Tax was $_POST[tax] donator days "; } print "[url='index.php']Back[/url] "; } elseif($_POST['amount'] and $_POST['conf'] != 1) { $_POST['amount']=abs((int) $_POST['amount']); if($_POST['amount'] <= 0) { die( "You cannot abuse this system, Get off." ); } elseif($_POST['amount'] > $user['donatordays']) { die("You are posting more than you have!"); }else { if($them['donatordays'] > 0) { $donatordays=$_POST['amount']; $tax="No"; } else { $donatordays=(int) round($_POST['amount']-$_POST['amount']/10); $tax="Yes"; } $direct=$script_name."?user=".$_GET['user']; print "Confirmation You are confirming your transfer Donator Days: ".number_format($donatordays)." days Taxs Applied: $tax "; } } else { $direct=$script_name."?user=".$_GET['user']; if($them['donatordays'] > 0) { $are="do"; } else { $are="do [b]not[/b]"; } print "[img=donator.gif] You are currently transferring donator status to [b]{$them['username']}[/b] If they are not a donator, A tax of 10% of the donator days will be taken out Please enter the amount of donator days you would like to transfer They are currently $are have a donator status Amount: [url='viewuser.php?u={$_GET[']Back[/url] "; } } $h->endpage(); ?>   Open admin.php and find where it says case 'newitemsub': new_item_submit(); break;   Add after case 'donatorlogs': donator_xfer_logs(); break;   Find later in admin.php where it says [[url='admin.php?action=cashlogs']Cash Xfer Logs[/url]]   Add after [[url='admin.php?action=donatorlogs']Donator Xfer Logs[/url]]   Find at the bottom of admin.php where it says $h->endpage(); ?>   Add BEFORE function donator_xfer_logs() { global $c,$ir,$h,$userid; print "Donator Days Xfer Logs Created by [url='http://oxidati0n.info/']Oxidati0n[/url] </pre> <table width="90%" border="1">FromMulti?ToAmountDate</table> <font size="+1" color="#FF0000">MULTI</font>";<br>} else {<br>$multi="";<br>}<br>print "[url='viewuser.php?u={$r2[']{$r2['username']}[/url] [{$r2['userid']}]$multi<br>[url='viewuser.php?u={$r3[']{$r3['username']}[/url] [{$r3['userid']}]{$r['dx_amount']} days$dx_time";<br>}<br>print "";<br   Next open up viewuser.php and find where it says [[url='sendcash.php?ID={$_GET[']Send Cash[/url]]   Add after "; $donators_only=true; /*If it is a donators only feature*/ if(($donators_only == true and $ir['donatordays'] > 0) or $donatordays_only == false ) { print "[[url='donatorxfer.php?user={$_GET[']Send Donator Days[/url]] "; } print "   Thanks, any reviews/thankyous would be appreciated. Tested: Yes Thanks, Bilawal.
  16. Re: [TGM] Crystal Gym [TGM] Firstly, you need to earn trust before mod sellers would sell you any of there hard work. That's what they do, Make money. If you want make this a donators only feature, As you could easily make your $20 if your willing to take $20 out of your pocket for your game. I think he must have some nice extra features as he adds in all of his mods. I would buy if i was a newbie or looking for some mods. Maybe he coded it customly, Not changing the energy Maybe theres a reason for it being $20, ever thought that eh? Kraig don't think i'm talking to you I'm talking to anyone who gets the idea. Just explaining. :-)
  17. Re: [mccode] Multiple Event Deleter   I know why, look in your multievents file where it says <?php session_start(); before <?php make sure it has no lines or spaces ;)
  18. Re: Backwards - sdrawkcaB sdrawkcab yelims eht ekam tndid i yhw staht flesruoy yb egami ruoy detsoh uoY :-D
  19. Re: Jokes   I actually made that cold and chewy joke, w00t lol
  20. Re: User "sifter" cron   Nice Speech. :-D
  21. Re: [TGM] Federal Jail Court System [TGM]   Many times when you see a player doing something suspicious you need to contact them but they jsut won't answer, this eliminates that problem, you cut off their gameplay, and they will explain themselves. It is also used as a fed jail report system. Most likely they will want to plead their case, when they do, you can decide whether they actually deserve the sentence or not. Very helpful as a federal jail report system. lol :lol:
  22. Re: [mccode] How to Setup PayPal Instant Payment Notification - Free!   Ok, smart guy. Tell me exactly how this is going to work if; A. Paypal doesn't have a logged Session, nor a userid. B. You put the code for the crediting items in the INVALID check. (see below)   else if (strcmp ($res, "INVALID") == 0) { // log for manual investigation This area should be used for Invalid attempts, moron. Stop copy/pasting other peoples codes and taking wild guesses how things work and go back to making HTML pages. No you STFU, 1) $_SESSION isn't connected with PP, your right? But in the game It checks ID so you shut up. 2) Did I? Well I have a completely different one in my CP so shut up. I admitted ages ago (first post on this topic) that this was a modified version of PayPal's, So your the moron.
  23. Re: [mccode] Date Mod   lol Is that why all your mates have a copy, It came out of nowhere eh? Your saying.. Oooh I didn't do bull? Well - You resell mods. BTW You DO have a illegal game, So stop trying to dig it off.
  24. Re: [mccode] Date Mod   Heh, UCC may have good mods, Fair enough. But YOU still resell the mods, I have proof about it so dont chat bs with me. Also you haven't replied about your ILLEGAL mccodes game? Lets confirm it AGAIN with ColdBlooded shall we? Your working with PRO DJ Styles, Would that help explain why your doing this? Thats how you get your money because all your games are a piece of shit. I feel sick when I look at your site, Thinking WOW that site is a real pile of shit. You call that hard work, You don't even know nothing about legal stuff because your just a plain waste of illegal shit. :)
  25. Re: Gold Fusion Wars for sale Snatchy you may want to work on it a bit for it to accomplish it's $1k target. Firstly advertise, I've not seen it anywhere advertised except your MSN name.
×
×
  • Create New...