Jump to content
MakeWebGames

sniko

Members
  • Posts

    2,210
  • Joined

  • Last visited

  • Days Won

    47

Everything posted by sniko

  1. Thanks Bert. And thanks for helping me out.
  2. Good question Bert. . I will code, i only am in need of a graphical artist . I have a design, but i feel, it doesn't suit a zombie invasion theme. . No need for a license as it is my own engine . Advertisements will appear throughout the internet once Spiedex and/or the untitlied project is up . I have experience myself. If you look on the free modification section in the mccodes area, i have coded a few modifications - i have gained more knowledge since my last free modification -sniko
  3. Hello there, I am looking for an online partner to help me develop and manage my projects. Qualify by: . Having experience in gaming . Having experience in graphical work - CSS, (x)HTML etc. . Active Daily . Polite . Not on the "Hall of Shame" . Respected . Trustworthy . Able to program well . Create good looking templates . Able to integrate the made templates to CSS and x(HTML) using CSS . Have an MSN account To Apply: Please add my MSN [ [email protected] ] and send me previews of your work. What will you get?; . Management and cPanel access to my game, spiedex, and an untitled project, which hasn't been made as of yet. . A partnership with me, sniko . Split profits What i expect from you; . To be able to create templates and images legally and to suit the theme of the games . To be efficient . Common sense Please only apply if you are interested and motivated. Thanks for reading -sniko
  4. sniko

    Website!

    For improvements try using Tables/Divs (css needed with Divs) lists (ul, li, ol) CSS
  5. I havent proof read the code but, it looks good, sounds good, but for the developers view, you should space out your code, for example You have if(condition) { //do }   Whereas the following is easier to read and debug if(condition) { //do stuff }
  6. Thanks Wazam
  7. Thanks Paul
  8. Im also awaiting feedback on my modification i made him in return of a mascot, which i haven't received....
  9. Uploaded with ImageShack.us
  10. You can make something for me for free ^,6 If you want :)
  11. In attack, you would see something like, I think its that part.
  12. If you go with your Mccodes ideas, i do modifications for very cheap, $10 - $30. -sniko
  13. Do your crons work?
  14. Ill code it up, once i have free time, or you can hire me to make time [(devil)]
  15. Hello There, I haven't released any new modifications for the mccodes engine lately and this is not a new one, ive just found it on my laptop and have been granted permission from the guy who gave me the idea, Marc.   Firstly, open up viewuser.php and put this code somewhere, anywhere, i don't mind where, but in that file, and make sure its not in the middle of any code, somewhere sensible. if($_GET['u'] != $_SESSION['userid']) { event_add($_GET['u'], "{$ir['username']} has just viewed your profile!"); $alredy = $db->num_rows($db->query("SELECT `Key` FROM `profile_views` WHERE `User`={$_GET['u']}")); if(!$alredy) { $db->query("INSERT INTO `profile_views` (`User`,`Viewers`) VALUES ({$_GET['u']}, {$_SESSION['userid']})"); } if($alredy) { $current = $db->fetch_row($db->query("SELECT `Viewers` FROM `profile_views` WHERE `User`={$_GET['u']}")); $new = "{$current['Viewers']},{$_SESSION['userid']}"; $db->query("UPDATE `profile_views` SET `Viewers`='$new' WHERE `User`={$_GET['u']}") or print(mysql_error()); } }   Now go to PHPMYADMIN > SQL Tab and hit the CTRL+C AND CTRL+V Buttons, because here are the SQL's [mysql]CREATE TABLE `profile_views` ( `Key` INT( 11 ) NOT NULL AUTO_INCREMENT , `User` INT( 11 ) NOT NULL , `Viewers` TEXT NOT NULL , PRIMARY KEY ( `Key` ) ) ENGINE = MYISAM ;[/mysql] Now, create a new file, with any file name, preferably, a sensible one and paste this code within it and click the "save" button <?php echo "<h3>Who's viewed my profile?</h3>"; $get = $db->query("SELECT `Viewers` FROM `profile_views` WHERE `User`={$_SESSION['userid']}"); if($db->num_rows($get) < 1) { echo "[b]No one has[/b]"; exit($h->endpage()); } while($r = $db->fetch_row($get)) { $who = explode(",", $r['Viewers']); $amnt = count($who); $start = '-1'; while($start < $amnt-1) { $start++; $username = $db->fetch_row($db->query("SELECT `userid`,`username` FROM `users` WHERE `userid`={$who[$start]}")) or print(mysql_error()); echo $font = ($start & 1) ? "[b][url='viewuser.php?u={$username[']{$username['username']}[/url][/b], " : "[url='viewuser.php?u={$username[']{$username['username']}[/url], "; } } ?>   Thats all from me folks, enjoy. Thanks for reading/using - sniko
  16. If no-one has helped by 10pm tonight I'll do it - I'm on a iPhone at the moment so I'm unable but for future reference db add my msn which is found in my signature - or here - [email protected]
  17. If it's a SQL table, then follow these steps: 1. Go to phpmyadmin found in cPanel 2. Find the desired table you wish to delete 3. Click the name of that table to go to the structure view 4. You will then see - on the tabs across the top - a tab called "drop" 5. Click Go and it's all done
  18. Thanks for replying Zed, for the thread, i'd like to use the idea of creating a new game. - Text Based RPG
  19. Hello, Ive been thinking, what do you think is better? Having a website template which has all the bells and whistles with detailed imagery which looks immense attracting users, or have a clean old "rubbish" one, like Torn. Here are the pro's and con's for each which i can think of. image Template - Pros .: Attracts Users .: Its unique .: its customizes your game .: Puts "life" into your website image Template - Cons .: Uses more Bandwidth - unless optimized imagery .: Costs in designing and integrating .: People may be put off it .: Loading Times .: Copyright Infringement on some imagery clean Template - Pros .: Easy to follow .: No loading Times .: No cost in production of the imagery .: No worry about copyright infringement .: Hardly no use of bandwidth clean Template - Cons .: Ugly .: Users may be put off it .: Need matching colours .: Looks Dull .: Not unique Above is all i can think of. -sniko
  20. Ouch Dayo at your list, Have fun OP
  21. The Promo Video is not what i expected. The video is good, part from, the main view i get from the website is a WAR game. A typical war game like Medal Of Honor style not some "kick-ass" style killing drug organizational look-a-like characters.
  22. Good Luck, If you need help, hit me up on msn -sniko
  23. # users in hospital/jail and in your location $hc = mysql_fetch_array(mysql_query("SELECT COUNT(`userid`) AS c FROM `users` WHERE `hospital`>0 && `location`={$ir['location']}")); // echo $hc['c']; $jc = mysql_fetch_array(mysql_query("SELECT COUNT(`userid`) AS c FROM `users` WHERE `jail`>0 && `location`={$ir['location']}")); // echo $jc['c']; # users in hospital/jail alone $hc = mysql_fetch_array(mysql_query("SELECT COUNT(`userid`) AS c FROM `users` WHERE `hospital`>0")); // echo $hc['c']; $jc = mysql_fetch_array(mysql_query("SELECT COUNT(`userid`) AS c FROM `users` WHERE `jail`>0 ")); // echo $jc['c']; There are a lot of parameters to put in the where statement to put in the WHERE clause to make your game realistic, but then again, you could have a global count of the game, which wouldn't make it so realistic, but give the users more detail, it depends how you run your game, personally, i try and make my games as realistic as possible, but other people don't as it gives users a "time to get away". Anyway, you can use whatever, some have already been posted in this topic, or you could use the below function. function patient($what, $where, $operation, $clause, $extra) { $count = mysql_fetch_array(mysql_query("SELECT COUNT(`userid`) AS c FROM $what WHERE `$where` $operation $clause $extra")); return $count['c']; } echo "[url='hospital.php']Hospital (".patient('hospital', 'hospital', '>', '0', '&& `location`=1').")[/url] ";   There is a lot of ways you can do this, you could even use AJAX,JQUERY (or whatever, im not familiar with those languages) to fetch the result without refreshing the page. -sniko
  24. Heya, Im just curious, is the project a game? or a social network site? or what? I may be interested if my skills qualify. -sniko [notice]MSN: [email protected][/notice]
  25. Or.........The meta refresh display picture.....
×
×
  • Create New...