Jump to content
MakeWebGames

oxidati0n

Members
  • Posts

    564
  • Joined

  • Last visited

Everything posted by oxidati0n

  1. Re: Backwards - sdrawkcaB lol ti seod woH :P
  2. Re: Counting (nr game) 1337
  3. Re: Jokes lol Whats a cold and chewy? A-chew! :P A-chew (A sneezy way) :P If you ain't got it yet, Read again! :P
  4. Re: FOUND A ILLEGAL DISTRIBUTER   Well I prefer this, I use to use the live one but it's so boring, It's got un nessecary things such as nudges and winks, all your suppose to do is chat anyway. this one is faster aswell, new msn logs me out 60% of the time.
  5. Re: [mccode] Date Mod   Really, You must have modified it to "make" sure you made it, That's proberly why it doesn't work. Anyway, who gives a s*** on what you think, Your no professional person. Before you RECOMMEND anything, Get your validated MCcodes license!
  6. Re: Jokes lol try this   Question:Why did the chicken cross the road?   Answer: To see his cousins at KFC     LOL, The only joke I've laughed at.
  7. I was bored yesterday, So i was just adding game owners to promote my products when I found this guy who was trying to sell me MCcodes v2, Reffering to LostOne's accusation of "prove it" I have infact taken a screenshot for you all to see. Maybe this might see to you that I don't ly about my stuff. He is infact a game owner. He claims "he brought a reseller license" when dabomster doesn't offer that, So that's pure lying. I just hope to you just to watch out, I'm not giving away his addy because people might take advantage, If i trust you or rely on you I will give you his game name and his MSN address. I was completely shocked, I'm not even bothering to submit this report to dabomstew because he won't deal with it and it's just a waste of time. My Proof Thanks, Oxi.
  8. Re: FREE Bug Tracker Mod UPDATED Updated Version
  9. Re: [mccode] How to Setup PayPal Instant Payment Notification - Free!   No, your a f**** moron. I have tried this and it works. And if your so "good" you post one, As all my free mods have been appreciated. My annoucement mod was all good reviews, So i'd shut up if i was you.
  10. The first song that comes in your head, If the next person gets the exact same song => Your lucky. MUST be the first thing in your HEAD. Starting off with me. Avril Lavigne - Girlfriend   :P
  11. Re: SPECIAL ATTACK legit mod => buggy mod :S
  12. Re: Send Crystals FREE!!   $hot and DaKing ??? None existant ?? lol
  13. Re: [LITE][FREE] Bank I didn't get a bank with my LITE so I couldn't be bothered making one so I used this. :-D Thanks kraig :wink:
  14. Re: [mccode] Additional Currency   no probs.. :roll:
  15. Re: [mccode] Additional Currency Try this... :-D ALTER TABLE `users` ADD `gems` INT( 11 ) NOT NULL DEFAULT '0';
  16. Re: Best Freebies   Thanks... :-D
  17. Re: Anyone want to make a game? lol why make a game at 13. start planning and make a custom. Tend's to become better. Fabee! :mrgreen:
  18. Re: sms billing LOL
  19. Re: !!! Many ideas for Mc 2.0 but I cant program !!! :| confused convo :|
  20. Re: [mccode v2] Crystal Reserve Mod FREE VERSION [/mccode v2]   It's for V2
  21. Re: [v1]Refill Users I actually think it's good, It's good to at least have it there for when you need it.
  22. Re: FREE Bug Tracker Mod   Yeah but i kept it incase you want to show others that it's fixed and so they can now resume to using it.
  23. Re: [TGM] Custom Hospital Message [TGM]   lol he would obviously say "no" (or not...??) because it would lose him money which nobody certainly wants. Especially if it's a option.
  24. Re: [Free] Advanced(ish) Level Upgrade Mod. lol nice. ;) Most games have that upgrade mod where you have to click multiple times to upgrade 1 level so you do it again and again. :) So it goes straight up to required level. I have made this system where you can only upgrade minimum once per week (soon to be 10 days maybe), Keeps the level economy fair.
  25. This modification came to my mind, This one is very handy aswell. As this one i've seen floating around shows the reports, Mine doesn't. ;) SQL friendly aswell. create file bugtracker.php <?php /*************************** Bug Tracker (1.0) made by oxidati0n -- Designed to make sure your bug asking days are over, Your players can efficiently report them, for those buggy players - It has most hacks removed. Such as HTML block, Javascript and PHP! Requires PHP version 4.44 minimum for this code to work! Created by oxidati0n! ***************************/ 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['crystals']); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); $sd=mysql_query("SELECT * FROM `bugtracker` WHERE `bt_from` = '$userid'",$c); if($_GET['x'] == "add" and mysql_num_rows($sd) < 7) { if($_POST['urgency'] and $_POST['description']) { //Secure the webpage. My favourite :> $_POST['description']=str_replace("/n", " ", strip_tags($_POST['description'])); $time=time(); //Insert the time log. $ip=$_SERVER['REMOTE_ADDR']; //The users IP - logged. ha ha! $nf="Not Fixed"; //The text for startup mysql_query("INSERT INTO `bugtracker` (`bt_id`, `bt_posted`, `bt_from`, `bt_description`, `bt_read`, `bt_replyfrom`, `bt_reply_one`, `bt_replytext`, `bt_urgency`, `bt_iplogged`) VALUES ('NULL', '$time', '$userid', '$_POST[description]', '0', '0', '$nf', 'N/A', '$_POST[urgency]', '$ip');",$c) or die("Your report couldn't be processed at the moment, Either contact a admin or wait until tommorrow. Thanks and sorry for any inconvenience caused [url='bugtracker.php']Back[/url] "); print "Your bug report has initially been added! [url='bugtracker.php']Back[/url] "; $h->endpage(); exit(); } else { print "[b]Submit your report[/b] Your IP logged: ".$_SERVER['REMOTE_ADDR']." Your IP is logged for our benefits and yours, To make sure that you are posting a safe and clean spaced report! Once reported, your report will be shown as hidden to any other player except you. NOTE: This is only to report bugs, If it's related to players open a player dispute. Bugs are errors/spelling mistakes, php disruption or PHP errors Urgency: Brief BasicVital Description (include as much detail as possible, links will be a help aswell): "; $h->endpage(); exit(); } } else if($ir['user_level'] > 1 and $_GET['x'] == "remove" and $_GET['report']) { mysql_query("DELETE FROM `bugtracker` WHERE `bt_id` = '$_GET[report]'",$c); print "Bug Report Row Removed [url='bugtracker.php']Back[/url] "; $h->endpage(); exit(); } elseif($ir['user_level'] > 1 and $_GET['x'] == "reply" and $_GET['report']) { if($_POST['text']) { //Make sure the text is ready to go, clean and safe. $text=str_replace(array("<",">","/n"),array("","",""),$_POST['text']); mysql_query("UPDATE `bugtracker` SET `bt_replyfrom` = '$userid', `bt_replytext` = '$text' WHERE `bt_id` = '$_GET[report]'",$c); print "Bug Report Row Edited [url='bugtracker.php']Back[/url] "; $h->endpage(); exit(); } else { print "[b]Make a reply[/b] Reply: Your reply here... "; $h->endpage(); exit(); } } $_GET['st'] = abs((int) $_GET['st']); $st=($_GET['st']) ? $_GET['st'] : 0; print "Bug Tracker"; $sd=mysql_query("SELECT * FROM `bugtracker` WHERE `bt_from` = '$userid'",$c); if(mysql_num_rows($sd) < 7) { print "[url='bugtracker.php?x=add'][Add a Report][/url] "; } print "[b]You can report several bug reports[/b] "; if(!$_GET['selectBug']) { $reports=mysql_num_rows(mysql_query("SELECT * FROM `bugtracker`",$c)); $shown=10; //How many rows should be shown in one row $pages=(int) ($reports/$shown)+1; if($membs % $shown == 1) { $pages--; } print "Pages: "; for($i=1;$i <= $pages;$i++) { $stl=($i-1)*$shown; print "[url='bugtracker.php?st=$stl']$i[/url] "; } } if($ir["user_level"] > 1) { $man="Manage"; $cols=8; mysql_query("UPDATE `bugtracker` SET `bt_read` = '1' WHERE `bt_read` = '0'",$c); } else { $cols=7; } print " Viewing all reported bugs - Reported IDFromUrgencyStatusReply CommentsDescriptionReadThere are no current reports been posted.[b]Read[/b]"; } else { $re="[b]No[/b]"; } print "".number_format($x)."[url='viewuser.php?u={$x}']".$p['username']."[/url] [".$p['userid']."]".$r['bt_urgency']."$r[bt_reply_one]"; if($r['bt_replyfrom'] > 0) { print "[b]".$r['bt_replytext']." [i]Replied from [url='viewuser.php?u=$d[userid]']$d[username][/url][/i]"; } else { print "You haven't been replied yet."; } print "".$r['bt_description']."".$re.""; if($cols == 8) { print " IP Logged: [b]".$r['bt_iplogged']."[/b] [url='bugtracker.php?x=remove&report={$x}']Remove[/url] [url='bugtracker.php?x=reply&report={$x}']Make Reply[/url] [url='mailbox.php?action=compose&ID={$p[']Mail User[/url] "; } print ""; } else { print "HiddenHiddenHiddenHidden HiddenHiddenHiddenHidden"; } } print " "; if(!$_GET['selectBug']) { print "Pages: "; for($i=1;$i <= $pages;$i++) { $stl=($i-1)*$shown; print "[url='bugtracker.php?st=$stl']$i[/url] "; } } $h->endpage(); ?>   next run the sql CREATE TABLE `bugtracker` ( `bt_id` INT( 11 ) NOT NULL auto_increment, `bt_posted` VARCHAR( 255 ) NOT NULL, `bt_from` INT( 11 ) NOT NULL, `bt_description` LONGTEXT NOT NULL, `bt_read` TINYINT( 2 ) NOT NULL, `bt_replyfrom` INT( 11 ) NOT NULL, `bt_reply_one` VARCHAR( 255 ) NOT NULL, `bt_replytext` LONGTEXT NOT NULL, `bt_urgency` VARCHAR( 255 ) NOT NULL, `bt_iplogged` VARCHAR( 255 ) NOT NULL, PRIMARY KEY (`bt_id`) ) TYPE=MYISAM ;   Thankyou, Oxidati0n.
×
×
  • Create New...