-
Posts
3,368 -
Joined
-
Last visited
-
Days Won
126
Content Type
Profiles
Forums
Events
Everything posted by Dave
-
Re: Seen the new batman movie? Good movie went to see it with some chick's :P
-
Re: [FREE] [V2] 2 Game Styles/Themes On your crime page do you have $h->endpage(); Also make sure all tables are ended with </table> then it should work :D
-
Re: [FREE] [V2] 2 Game Styles/Themes oops the second link for the PSD was for the first one i have updated the post now :D
-
Re: [FREE] [V2] 2 Game Styles/Themes Just in the old CSS find the thingys with .table in and add them to this themes CSS should work fine.
-
Re: [FREE] [V2] 2 Game Styles/Themes Wouldnt work the width is not enough
-
Re: [FREE] [V2] 2 Game Styles/Themes I for one love Freebies dont really care if anyone else has it or not. hes offered his time and services to do this so thats a +10 from me. problem with all you idiots that pay for these mods is you think your the only one who has them. THINK AGAIN. with so many P2P programs and torrent sites out there we could probably pick up your work for nothing... Just because people charge doesnt mean you cant get it for Free. I must say well done! and thanks for the plus 10 xD
-
Re: [FREE] [V2] 2 Game Styles/Themes That was my problem :S it wouldn't fit so i just decided to remove it from the header. I agree people hate it
-
Re: [FREE] [V2] Simple but better looking game header! Second Theme Added. People go Crazy XD
-
Moved to http://php-forums.net/index.php/topic,107.0.html
-
Re: who uses http://members.000webhost.com/login.php and can they help with crons I would guess there crons are not Unix Style its a very basic system Under minutes select one for your min cron and leave the reset and for the 5 select 5 in the min section and for the hour select 1 in the hour and i think you can work out the one for day.
-
[mccode v2] Heads or Tails - Updated 31st August
Dave replied to Rat_man's topic in Free Modifications
Re: Heads or Tails [V2] Looks Good Thanks :D -
Re: Usersonline [V2] Yer i know. Hes a kid whos about 13 and always stats that i nick my codes. Most likely because thats how he gets/makes all of his mods.
-
Re: Usersonline [V2] Is that your girlfriend your talking about there?
-
Re: Usersonline [V2] Well 1. I didnt say you had to use it 2. Make a better one Release it for free then lets see if you can do any better and 3. This is not a argument post or whatever keeps those to that section
-
Re: Usersonline [V2] this topic is to talk about the usersonline mod not about your girlfriend =] Yes please only talk about the mod not personal relationships. LOL nice one -zebba-
-
Re: Usersonline [V2] No problem
-
Re: Usersonline [V2] Thanks for the positive comment :D
-
Re: Login & register all in one Personally i would change the font in the CSS because i hate that one. Just my views
-
Re: Usersonline [V2] Thanks for all the positive comments :D
-
Re: Usersonline [V2] Thanks :D
-
Re: Usersonline [V2] No need to start up a fight now guys.
-
Re: Usersonline [V2] Well yes true but then some people like to check how many people have been on there game in the last 24 hours. If you don't like it remove the 24 hours.
-
Re: Usersonline [V2] No problem i might release some more of my mods freely as long as i get positive comments like this :D
-
Hey, i thought of releasing my users online which i made when i first started the project. If you use it say thanks. Negative comments will not be appreciated. Any other comments or problems also tell me. Replace your usersonline.php with this version (Good idea to make a backup of yours first): <?php include "globals.php"; if($_GET['time'] == "") { $_GET['time']=15; } print "<h3>Users online</h3>"; ?> <center><form action='usersonline.php' name='time' method=GET>Change to: <select name='time' onChange="document.time.submit()"> <option value="">Select <option value=1>1 min <option value=5>5 min <option value=10>10 min <option value=15>15 min <option value=30>30 min <option value=60>1 hour <option value=720>12 hours <option value=1440>24 Hours </select> <?php $unita="mins"; if(isset($_GET['time']) AND ereg('[^0-9]', $_GET['time'])) { $time = 15; } else { $time = $_GET['time']; } $sum = time() - (60*$time); $q = mysql_query(sprintf("SELECT * FROM `users` WHERE `laston` > %s ORDER BY `laston` DESC", $sum)); if($_GET['time'] > 59) { $unita="hours"; $_GET['time'] = $_GET['time']/60; } print "<table border=0 cellpadding=0 cellspacing=0 width=100%><tr><td width=50%><center>[b]Users online in the last {$_GET['time']} {$unita}[/b]</center><table width=100% class='table'><tr><th>Username</th><th>Last Movement</th></tr>"; if(mysql_num_rows($q) == 0) { print "<tr class='hover'><td colspan='2'>No users online.</td></tr>"; } while($r=mysql_fetch_array($q)) { $la=time()-$r['laston']; $unit="secs"; if($la >= 60) { $la=(int) ($la/60); $unit="mins"; } if($la >= 60) { $la=(int) ($la/60); $unit="hours"; if($la >= 24) { $la=(int) ($la/24); $unit="days"; } } $user=$r['userid']; ?> <tr class='hover' onClick="window.location='viewuser.php?u=<?php echo $user; ?>'"><td>[url='viewuser.php?u=<?php echo $user; ?>']<?php echo $r['username']; ?> [<?php echo $r['userid']; ?>][/url]</td> <td><?php echo $la; ?> <?php echo $unit; ?></td></tr> <?php } print "</table> </td><td> <center>Total users online withen the last {$_GET['time']} {$unita}: ".mysql_num_rows($q)." </td></tr></table>"; $h->endpage(); ?> Screenshots: Im aware my game is kinda dead its because its in beta because its not finished. The mod shouldn't need any SQL's extra to your game. The hover over function wont work unless you have the CSS for it. Remember say thanks if you use this and report any errors and glitches.
-
Re: MCCode v3 Well the callback idea would only work if he encoded all the php with something like ioncube, Which would mean that the script cannot be edited :S. Because if he dosent encode well someone can just delete the callback and viola the script has been nulled.