Jump to content
MakeWebGames

Paul Evans

Members
  • Posts

    783
  • Joined

  • Last visited

Everything posted by Paul Evans

  1. You may wanna consider waiting i think mcv2.5 has it's own template system so would be easier to get it all done if you use that version of mccodes.
  2. Yeah if you are upgrading i would assume you therefore stop using 2.0.X (which you would anyways if you upgraded) and then can legally run 2.5 although when you upgrade software you can revert back to a previous version so you'd probably have to ask CB/DB.
  3. It's not a update (hence the 40 dollar feel to v2 customers) it's a entirely new version (2.0.3 is a different version to 2.5) im guessing with the small amount of info on the product there will alot more involved in it. Although CB you have not answered my question yet mate.
  4. Didn't Floydian recode gangs for MCcodes v2?
  5. Hey, personally i'd say wait on the new release think it's a new version or something like a teaser for v3 (nice of them) which won't be coming out for awhile so 2.5 Redux would probably be alot better than previous versions.
  6. So you can easily look through your sent folder and get anything you sent to him, although if you are saying you sent it and he claims you have not i really wouldn't say it's his loss that's very bad customer service. Although i am worried you took till now to actually say that you have sent him the product he required/paid for.
  7. Illusions - http://dictionary.reference.com/browse/redux
  8. EQ + HD if you could take any arguments off topic into a PM i would appreciate it
  9. Just to clarify do you mean you did not intend on coming back to pay Zu or just to MakeWebGames (no judgement just wanna clarify that).
  10. if ( in_array($userid, array(1,2,4,7,182)) { echo '[url="link.aspx"]link[/url]'; } is a good example of showing to mutiple ids you could also use this for userlevels or whatever.
  11. Well to be honest i can't wait to see this versions sample to see what exactly is in it worth the extra 40 dollars but with reading the original post i'd say the organisation of the files itself would be worth that (i know most people wouldn't of done that for less than 40 bucks for v2.0.3 users). Moving the staff files is rather good as i've seen people charge 150 dollars just for that. Although when you say reorganise im curious do you mean you simply link from a sub folder or you added a function to include the files into a global file? If the second answer im curious is it easy to edit the file for example if it's home.php?x=home is it simple to edit that to game.php?x=home also do you use the same structure with the staff files?   Bertrand, nice to know you contributed worth it just to see what you did :D I won't judge the price till i see the sample to be honest :P
  12. I believe the reason is to disallow people taking advantage twice on things which other only get once, then sending them to the other account to build up easier and therefore messing with the status quo
  13. http://samplev2.mccodes.com/staff_gangs.php?action=grecord Please post your staff_gangs.php file ill take a look but the v2 sample it works (obviously not submitting data due to the submits being removed because of abusers). Although i did find a minor bug in the stafflist.php so replace the existing file with this: <?php include_once "globals.php"; $staff = array(); $q = $db->query("SELECT `userid`,`user_level`,`main`,`level`,`username`,`laston` FROM `users` WHERE `user_level` IN(2,3,5) ORDER BY `userid` ASC"); while ( $r = $db->fetch_row($q) ) { $staff[$r['userid']] = $r; } echo ' [b]Admins[/b] <table width="75%" cellspacing="1" cellpadding="1" class="table"> <tr style="background:gray"> <th>User</th> <th>Level</th> <th>Money</th> <th>Last Seen</th> <th>Status</th> </tr> '; foreach ( $staff as $r ) { if ( $r['user_level'] == 2 ) { $on = ( $r['laston'] >= ($_SERVER['REQUEST_TIME'] - 15) * 60 )?'<span style="color: green;">Online</span>':'<span style="color: green;">Offline</span>'; echo ' <tr> <td>[url="viewuser.php?u='.$r['userid'].'"]'.$r['username'].'[/url] ['.$r['userid'].']</td> <td>'.$r['level'].'</td> <td>'.money_formatter($r['money'],'$').'</td> <td>'.date("F j, Y, g:i:s a",$r['laston']).'</td> <td>'.$on.'</td> </tr> '; } } echo '</table> [b]Secretaries[/b] <table width="75%" cellspacing="1" cellpadding="1" class="table"> <tr style="background:gray"> <th>User</th> <th>Level</th> <th>Money</th> <th>Last Seen</th> <th>Status</th> </tr> '; foreach ( $staff as $r ) { if ( $r['user_level'] == 3 ) { $on = ( $r['laston'] >= ($_SERVER['REQUEST_TIME'] - 15) * 60 )?'<span style="color: green;">Online</span>':'<span style="color: green;">Offline</span>'; echo ' <tr> <td>[url="viewuser.php?u='.$r['userid'].'"]'.$r['username'].'[/url] ['.$r['userid'].']</td> <td>'.$r['level'].'</td> <td>'.money_formatter($r['money'],'$').'</td> <td>'.date("F j, Y, g:i:s a",$r['laston']).'</td> <td>'.$on.'</td> </tr> '; } } echo '</table> [b]Assistants[/b] <table width="75%" cellspacing="1" cellpadding="1" class="table"> <tr style="background:gray"> <th>User</th> <th>Level</th> <th>Money</th> <th>Last Seen</th> <th>Status</th> </tr> '; foreach( $staff as $r ) { if ( $r['user_level'] == 5 ) { $on = ( $r['laston'] >= ($_SERVER['REQUEST_TIME'] - 15) * 60 )?'<span style="color: green;">Online</span>':'<span style="color: green;">Offline</span>'; echo ' <tr> <td>[url="viewuser.php?u='.$r['userid'].'"]'.$r['username'].'[/url] ['.$r['userid'].']</td> <td>'.$r['level'].'</td> <td>'.money_formatter($r['money'],'$').'</td> <td>'.date("F j, Y, g:i:s a",$r['laston']).'</td> <td>'.$on.'</td> </tr> '; } } echo '</table>'; $h->endpage(); ?> I'm surprised no one noticed that :P
  14. Sound quite interesting actually i may check that out later :D Isn't ask similar to this?
  15. They don't support LITE so bertrand does have a good point
  16. Well, i would say lite if you want it for free or you could get v1 or even v2 if you'd like, they do have samples up i believe.
  17. The domain wasn't even directed to anything last time i checked and now it's empty... so basically i'd say don't give out your cpanel information.
  18. Do you have a legal license of MCcodes?
  19. I just noticed though that HTTP_X_FORWARDED_FOR isn't in installer.php and hasn't for afew version i think... staff.php line 201 is a echo and the above doesn't seem to be a issue either I would suggesting deleting the entire copy from server and pc and redownloading from mccodes.com
  20. Thanks for this Bertrand will have to review these later when i get my coffee made and have afew hours :D
  21. Ah thanks for the information on that clears up quite a bit for me :D
  22. politics don't really come into business.
  23. I had a little experience once with GAO (ads on thecrims) got a few foreigners not many English and that was the best site at the time.
  24. I've been using it for a few days i kinda of like it :D
  25. are you 100% positive your game is running 2.0.3 files (preferences)?
×
×
  • Create New...