Jump to content
MakeWebGames

Mike09

Members
  • Posts

    129
  • Joined

  • Last visited

    Never

Everything posted by Mike09

  1. Re: How good CronWerks/Cronus is Cronus is alright i have purchased most of his mods off Cronwerks and i haven't had a problem with any of 'em The ones i did have a problem with was fixed almost instantly so yano..
  2. Re: Mccodes V2 login Thanks for positive feedback im the topic starter btw this is my new account. I made that login a few months ago i may whisk together a register to go with it but im kinda busy atm. Ill update this when i have time!
  3. Re: help installing mccodes v1 http://blog.iamwicked.net/?p=63
  4. Re: [V2]Basic Referal mod.   Save it under whatever you want. Then just link to it...right? Correct :wink:
  5. Re: Automatic Merit System Awarder [any version] $20.00 Unique! If its just like TC's then its not unique is it? Plus this mod sounds exactly like Zero-Affects with just a slight adjustment and his is only $10.. I know who i would buy from.
  6. Re: [mccode v2] Annoucements Upgrade!   Alan=BadGirl=CrazyT he pretended to be a female O.o I can code to an extent im not in anyway good at it but i have improved alot since the last time we spoke properly.
  7. Re: Thank a CE mccode Mod Developer Day Just dont forget this when i need a house to stay in eh? xD
  8. Re: Viewing codes hack   Your Clever Lol :P Your clever too, a 13 year dumbass bitch with nothing better to do than hack games. Lmao well said
  9. Re: [mccode v2] Annoucements Upgrade!   Thats Alan for you always showing "flaws" .. Yano for someone who pretended to be a girl he has pretty high standards..
  10. Re: How good CronWerks/Cronus is   Sorry but I have neither the patience nor the ability to test every carrier, especially the ones that aren't offered in my area. I have no way of checking every single persons phone to see if it will work. It works for my users and apparently the users of the people who already bought the mod, as I have only heard good things. So why doesn't everyone stop playing the blame game, and move on. Well said.
  11. Re: How good CronWerks/Cronus is Lol isn't it highly humorous that Cronus is no longer a moderator abusing powers much?
  12. Re: [mccode v2] Annoucements Upgrade! +1 karlos :)
  13. Mike09

    Hey Ho Mo Go

    Re: Hey Ho Mo Go I would love to see any of you lot make a game better than TC Ps: Welcome Monkeh
  14. Re: Skull City No that wasn't meant to be funny i was highly serious. If you have just reset your game and already that amount of cash/crystals is in circulation then thats quite pathetic.
  15. Re: Skull City   What do you suggest I do to improve on whatever you thought was rubbish Well, reset your game make it harder for everyone (includeing you), no cheating. Make it harder to level up, get money, ect... I just had a reset lmao Thats not even funny.. Thats quite pathetic
  16. Re: [mccode v2] Annoucements Upgrade! Lol! Look in the mirror mate! You kill all the games you own :roll: and actually my site has a few of my mods that i released to the community of Dev forum :]
  17. Re: [mccode v2] Annoucements Upgrade!   Maybe because thats where he got the idea? -.- so Zero hows KC these days xD it was my understanding that my game does better than yours now in donations and in usersonline :P
  18. Re: [V2] Advertisements. thanks mate :)
  19. Re: [V2] Advertisements. You probably saw it on Dev forum if anywhere thats the original site i posted on :P Otherwise it may have been a different one i only made this last night..
  20. This mod allows users to place advertisements. This was a request by Eido :) first off run the SQL   CREATE TABLE IF NOT EXISTS `ads` ( `adID` int(11) NOT NULL AUTO_INCREMENT, `adSUBJ` varchar(266) NOT NULL DEFAULT '', `adTEXT` varchar(266) NOT NULL DEFAULT '', `adUSER` varchar(266) NOT NULL DEFAULT '', `adTIME` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`adID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=21 ;   Then create a file called "ads.php" and put this inside   <?php include 'globals.php'; $_GET['action'] = isset($_GET['action']) && is_string($_GET['action']) ? strtolower(trim($_GET['action'])) : false; switch($_GET['action']) { case "add": add(); break; case "add2": add2(); break; case "remove": remove(); break; default: index(); break; } function index() { global $db, $ir, $userid; $ql = $db->query("SELECT `adID`, `adSUBJ`, `adTEXT`, `adUSER`,`adTIME` FROM `ads` ORDER BY `adID` DESC LIMIT 30"); echo '[url="ads.php?action=add"]Place ad[/url] <table border="0" cellspacing="0" cellpadding="0" width="100%" class="table"> <tr height="12"> <th>Subject</th> <th>Advertisement</th> <th>Posted by</th> <th>Time</th>'; if ($ir['user_level'] >1) { echo '<th>Remove</th> '; } while($r = $db->fetch_row($ql)){ echo '<tr> <td>'.stripslashes(mysql_real_escape_string(htmlspecialchars($r['adSUBJ']))).'</td> <td>'.stripslashes(mysql_real_escape_string(htmlspecialchars($r['adTEXT']))).'</td> <td>'.stripslashes($r['adUSER']).'</td> <td>'.date('F j Y g:i:s a', $r['adTIME']).'</td>'; if ($ir['user_level'] >1) { echo '<td>[url="ads.php?action=remove&id='.$r['adID'].'"]Remove[/url]</td>'; } } echo '</tr></table>'; } function add() { global $ir,$h; if($ir['money'] <10000) { echo 'You need $10,000 to add an advertisement.'; $h->endpage(); exit; } echo '<h3>Advertisement. </h3> [b]Fill in your advertisement below it will cost $10,000.[/b] <form action="ads.php?action=add2" method="post"> Subject: <input type="text" name="subject" /> Advertisement: <textarea rows="6" cols="50" name="ad"></textarea> <input type="hidden" name="user" value="'.$ir['username'].'"> <input type="submit" value="Submit" /></form></center>'; } function add2() { global $db, $ir, $userid, $h; if(!isset($_POST['subject']) && !isset($_POST['ad'])) { echo 'What are you doing?'; $h->endpage(); exit; } if(empty($_POST['subject']) || empty($_POST['ad'])) { echo 'You need to fill out all fields.'; add(); $h->endpage(); exit; } $db->query("INSERT INTO ads VALUES('','{$_POST['subject']}','{$_POST['ad']}','{$_POST['user']}',unix_timestamp())"); $db->query("UPDATE `users` SET `money`=`money`-10000 WHERE userid=$userid"); echo 'You posted an advertisement for $10,000 [url="ads.php"]Back[/url]'; } function remove() { global $db, $ir, $h; $_GET['id'] = abs(@intval($_GET['id'])); if(!$_GET['id']) { echo "Invalid command."; $h->endpage(); exit; } if ($ir['user_level'] < 2) { echo 'invalid command.'; $h->endpage(); exit; } $db->query("DELETE FROM `ads` WHERE adID={$_GET['id']}"); echo 'removed. [url="ads.php"]Back[/url]'; } $h->endpage(); ?>   Then add a link to ads.php to where ever you want.
  21. Re: Create Gang Help   Lol are you being serious?
  22. Re: Create Gang Help Post the structure for your gang table.
  23. Re: [V2]Basic Referal mod. That is either your global_func or your register page, All this mod does is display the people you have referred
  24. Re: Looking for a Referal Mod ...   <?php include 'globals.php'; $ql = sprintf( "SELECT u.userid, u.username, u.laston, r.refTIME " . "FROM users u " . "LEFT JOIN referals r ON (u.userid = r.refREFED) " . "WHERE (r.refREFER = %u)", $ir['userid']); $ql = $db->query($ql); $st=$db->num_rows($ql); print "<h3>You have referred $st people.</h3>"; if($r['laston'] >= time()-15*60) { $on="<font color=green>[b]Online[/b]</font>"; } else { $on="<font color=red>[b]Offline[/b]</font>"; } print "<h3>Referred Users</h3> <table border='0' cellspacing='0' cellpadding='0' width='100%' class='table'> <tr height='18'> <th>User</th> <th>Time refered</th> <th>Last Online</th> <th>Contact</th> <th>Status</th> </tr>"; while($r=$db->fetch_row($ql)) { print "<tr> <td> [url='viewuser.php?u={$r[']{$r['username']}[/url] [{$r['userid']}]</td> <td>{$r['refTIME']}</td> <td>".date('F j, Y, g:i:s a',$r['laston'])."</td> <td>[url='mailbox.php?action=compose&ID={$r[']Contact[/url]</td> <td>$on</td> </tr>"; } ?>   Should work fine..
  25. Someone requested this. I think someone made this but i could not find the link so i made my own. <?php include 'globals.php'; $ql = sprintf( "SELECT u.userid, u.username, u.laston, r.refTIME " . "FROM users u " . "LEFT JOIN referals r ON (u.userid = r.refREFED) " . "WHERE (r.refREFER = %u)", $ir['userid']); $ql = $db->query($ql); $st=$db->num_rows($ql); print "<h3>You have referred $st people.</h3>"; if($r['laston'] >= time()-15*60) { $on="<font color=green>[b]Online[/b]</font>"; } else { $on="<font color=red>[b]Offline[/b]</font>"; } print "<h3>Referred Users</h3> <table border='0' cellspacing='0' cellpadding='0' width='100%' class='table'> <tr height='18'> <th>User</th> <th>Time refered</th> <th>Last Online</th> <th>Contact</th> <th>Status</th> </tr>"; while($r=$db->fetch_row($ql)) { print "<tr> <td> [url='viewuser.php?u={$r[']{$r['username']}[/url] [{$r['userid']}]</td> <td>{$r['refTIME']}</td> <td>".date('F j, Y, g:i:s a',$r['laston'])."</td> <td>[url='mailbox.php?action=compose&ID={$r[']Contact[/url]</td> <td>$on</td> </tr>"; } ?> Done.
×
×
  • Create New...