Jump to content
MakeWebGames

Lithium

Members
  • Posts

    1,099
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Lithium

  1. Re: Noob question ops my bad also, i mixed " without escaping them :|
  2. Re: Noob question remove the } on line 53
  3. Re: Noob question { print "<font color='someothercolor'>Your Gang</font> "; } this should work...
  4. Re: Help with Mailbox at a quick glance if it doesn't shows the (1) when you get a new message, the problem is not on the mailbox file. prolly on mainmenu if you have the display of the new mails there. The smilies... you have the smiles images in /smilies/ or in /images/smilies? if second option... you need to correct the path on the mailbox file!
  5. Re: How can i decrease the brave gain/level? nop that is the only one you need
  6. Re: How can i decrease the brave gain/level? check_level function on global_func.php
  7. Re: Small mod to header [any version] @ Dayo, it could be on several ways... that is just a preference (which has a reason behind it though). ;)
  8. Re: [TGM] Federal Jail Reporting System [TGM] @ CraigF: you prolly have seen Cronus on these forums for quite a while, yet people complain... A LOT. And Cronus kept deleting all posts from people saying his mods didn't worked, or that he doesn't gives support. I have had my handfull of word exchange with Cronus, mostly for the deletion of posts (despite he saying i was flamming), and i have seen quite a load of his mods not working without a handfull of fixes. Also for what i saw, you were out for quite a while, and you know... things do change...
  9. Re: Staff Actions hit me back on msn about this. :P :)
  10. Re: How good CronWerks/Cronus is   1, 2, 3 LOL
  11. Re: Small mod to header [any version]   That is the point indeed :) every setup needs to suit the needs to whoever applies it ;)
  12. Re: [V2] Attacking Turns Shop   The problem is people don't spend time looking at the code. copy/paste and its all done! then complain it doesn't work :)
  13. Re: Gang Description Idea <textarea name='vp' cols='40' rows='7'>".$gangdata['gangDESC']."</textarea>
  14. This is my first free "mod", if you can call it that. I've come up with an idea a while back for a less scrollable in game "layout" as i don't like to scroll too much on pages. So why not basicly removing the header image to save up a little space? (This mod won't suit your needs if you use mcc regular style, with the bars next to your logo image) so here it goes... On the preferences.php add the following code...   // the link [url="preferences.php?action=headerchange"]Show/Hide Header[/url] // the switch($_GET['action'] case 'headerchange2': do_header_change(); break; case 'headerchange': header_change(); break; // the functions function header_change() { global $ir,$c,$userid,$h; $g = ($ir['header_show'] == "Yes") ? "hide" : "show"; ?> Are you sure you want to <?php echo $g; ?> header image? [url="preferences.php?action=headerchange2"]Yes[/url] | [url="preferences.php"]No[/url] <?php } function do_header_change() { global $ir,$c,$userid,$h; if ($ir['header_show'] == "Yes") { $g = "No"; } else if ($ir['header_show'] == "No") { $g = "Yes"; } mysql_query("UPDATE `users` SET `header_show` = '{$g}' WHERE `userid` = '$userid'",$c); ?> Success, you have changed header image settings! [url="preferences.php"]Back[/url] <?php } Add the following SQL to users table ALTER TABLE `users` ADD `header_show` enum('Yes','No') NOT NULL DEFAULT 'Yes';   Now on header.php (where you have your top image showing, add something along these lines. You need to edit this bit to suit your needs if ($ir['header_show'] == "Yes") { ?> [img=images/yourlogoimage.png] <?php }   A working mod can be seen here using "Black Layout"
  15. Re: Converter ROTFL
  16. Re: Converter humm?
  17. Lithium

    host

    Re: host a few people around recommend hostgator, so you could give a try at it. you have also lunarpages, byet and prolly a couple more though these are the most recommended around here. My favs are godaddy, powweb and routhost. So you should look around and make your own choice :)
  18. Re: phpjobscheduler you have a mod floating around that uses timestamp, it does the job, though as users tend to increase, it is not the best option, or you can use external services like this one http://www.webbasedcron.com/
  19. Re: phpjobscheduler phpjobscheduler is not "automatic" at 100%, you should look at the features of it on their site. it goes pretty fine if you have a steady load of users throughout the hours/minutes, though if you have a site with "dead" hours where you have no one on the site, it will simply not run as a normal crontab task (cron jobs)   This is taken from phpjobscheduler homepage @ http://www.phpjobscheduler.co.uk
  20. Re: phpjobscheduler now at kenja did you add the right code to trigger the phpjobscheduler? and you have the "crons" set up properly under phpjobscheduler
  21. Re: phpjobscheduler CrazyT... You should read the thread :P
  22. Re: phpjobscheduler   Sorry to say but they both do the work needed
  23. Re: [mccode] Profile Signatures line 199 is "?>" and the error says "unexpected $end", you think it there is ment to be more... i think you should check the previous code as you are probably missing some closure's like } or ) or ;
  24. Re: bbcode problem $bbc? i rather wtch $cnn
  25. Re: THIS OR THAT? Laptops FTW IBM or HP
×
×
  • Create New...