Jump to content
MakeWebGames

Kaien

Members
  • Posts

    28
  • Joined

  • Last visited

Everything posted by Kaien

  1. Kaien

    Bleach Online

    It's location on the Gantz-game server has moved. I think it isn't mccodes anymore and that's because I've talked to the owner. I'd say his skills with coding have gone up an exceptional amount. Here is his other game, http://www.development.gantz-game.co.cc. It's called Era Of Samurai, and if It's alright, but it really needs a battle system, mail system, and training system, if I do say so myself. I'll post here the new link to Bleach Online if he reveals it to me. EDIT 1: Okay, I've seen it and the game isn't mccodes based anymore although I cannot say for sure as only a few things are finished. The concept is okay, so far I'm impressed slightly with Core 1.
  2. I understand all of your opinions and theories but in the long road, won't all of these mafia-type games offer the same features in one way or another? Say for example, there is an assassination feature in one mafia type game, in the other it will be there but you'll have to get to level 10 to use it. I mean we could easily set up a poll and have members decide on their favorite genre of games. The main thing is, any experienced user on this forum could give a unexperienced member a few days worth of tutoring and the first thing they do? Make a mafia type game. Mccodes is a great way to get started, minus the bugs & glitches but still a great way. It can easily be made into a mafia-type game OR any other game. There are about three or four steps required to do this. When researching most people just talk to a few players on the game that they want to copy! Another thing is that with these Mafia-type games, it's like its jumping out screaming "Hey, I'm mccodes and you, pssh your just another player wanting to play me". No individuality nor creativity in some of these mafia-type games plus the fact that more people are switching to opposing mccodes than liking it. All someone has to do is choose a genre or theme of their game, get a new creative layout, switch around the codes, and then start modifying it to create a good game. P.S. Btw I wouldn't play Year 1920, or Ruler Of Zu, it's not that I don't like them its just I couldn't get into them. If I find the same "three" features that stick out in most mccodes game, I'll list them out here to show you guys.
  3. I've been interested in the mccodes community especially since anyone can make a great game using their brain, a fair knowledge of php, mysql, and a known coder that helps out from time to time. However, it really kills my head when I see a gaming list FULL not halfway full but entirely spamming the list full of Mafia Mccodes games. Is there a reason why people like mafia games, I mean not to be rude but they are boring and there are pretty much hundreds of them about. Instead of Mafia-type games, shouldn't someone be trying to create the next TheNinja-RPG, ThePirates-RPG, Shinobi-Shadows, ShinobiBattles, etc.. You cannot tell me it's not entirely possible as I have created pretty much exact replica of each of the listed sites above (especially Shinobi-Shadows & Shinobibattles). If you can, could you please tell me why people won't switch up their styles?
  4. I like your layout on the outside view, although to be blunt I dislike the inside view very much. Also, I lost interest before even activating my account please consider maybe some sort of event that you can post on the login and have guest view. That would have sparked my interest if your users are interacting with one another other than just sitting online.
  5. Smarty eh? I dislike using templates but ill try it out anyway. Thank you for your reply.
  6. Soon, I'm going to begin on a project although to users it may be considered a game. I will require a few other coders and designers to help me out so if anyone available would like to join please post here or message me. I will list out what I will need to start this project. Layout Maker/ Graphic Designer Content Administrator Three Other Coders ( One of these will need to know AJAX and/or Javascript) If you need any more information please just let me know, I will gladly let you know.
  7. Potential Future I would hire you just to see your potential but for the most part, I think you should work on your grammar and vocabulary before hand. This can determine the amount of players a website receives as well as it's votes. Not to be rude but I'll use an example, and hopefully he sees this. For example, K1ngscorp1o now codes his own text based games but due to his ego, and his LACK of grammar when posting news, rules, terms of service, and many other features in-game that stop potential players from either joining or players actually continuing to play his games. So I think you should first try to better yourself and act more professional. The prices you would offer would probably range in $10-20 worth. This is just my opinion.
  8. I have progressed with php over the time as I used to use mccodes but not anymore, as I see no use for it anymore. My knowledge of php is fairly good. I am currently looking at AJAX to improve my work with looks and compatibility. My question is, what is the best way to code a layout? Currently, I only know of three ways to do this but If there any other ways could you please specify them here. The first way is through templates using an already made template engine. The second, is through switches, and placing it all on the index.php file. The third and last way I know is to split up the layout in different parts and code along placing them at the top and bottom of the script. I'm looking for another way to possibly code the layout view like how mccodes does it but without having to add ./?id=1 or ./?page=home at the end.
  9. I am requesting a Spar/Challenge Mod, where a user sends a request to another user and if the challenged user accepts they automatically battle. The battle script could be the one click attack system with hospital time taken out. I dont do the scripts too well, but I'll attempt to start it off. (Credits to Daron, for helping me with it.) SQL: CREATE TABLE IF NOT EXISTS `spar` ( `id` int(11) NOT NULL auto_increment, `challenger` int(11) NOT NULL default '0', `challenged` int(11) NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=25 ;   Send Request Script: <?php include("globals.php"); if(isset($_GET['challenge'])) { $_POST['ID'] = abs(@intval($_POST['ID'])); if($_POST['ID']) { mysql_query("INSERT INTO spar VALUES('','{$ir['userid']}','{$_POST['ID']}')") or die(mysql_error()); $i=mysql_insert_id($c); event_add($_POST['ID'],"{$ir['username']} Just challenged you to a spar. <br><br><a href=spar.php?id=43&act=challenge&username={$i}>Accept</a> | <a href=spar.php?id=1donow=decline&id={$i}>Decline</a>"); echo 'Challenege has been sent to id '.$_POST['ID'].'.'; $h->endpage(); exit; } $a = mysql_query("SELECT * FROM spar WHERE challenger='{$ir['userid']}'") or die(mysql_query()); if(mysql_num_rows($a) > 0) { echo 'You already have a challenge sent!<br>'; $h->endpage(); exit; } $c = mysql_query("SELECT * FROM spar WHERE challenged='{$ir['userid']}'") or die(mysql_query()); if(mysql_num_rows($c) > 0) { echo 'You already have a challenge you have not declined or accepted.<br>'; $h->endpage(); exit; } echo ' <form action="?challenge" method="post"> User id to challenge: <input type="text" name="ID"> <br><input type="submit" value="Submit"> </form>'; $h->endpage(); exit; } if(isset($_GET['viewchallengerecieved'])) { if($_GET['id']) { $db->query("DELETE FROM spar WHERE id='{$_GET['id']}'") or die(mysql_error()); echo 'challenge canceled'; exit; } echo ' <table border=1 width=100%> <tr> <th>User to Challenge</th> <th>Actions</th> </tr>'; $t = mysql_query("SELECT * FROM spar WHERE challenged='{$ir['userid']}'") or die(mysql_error()); if(mysql_num_rows($t) == 0) { echo '<td colspan=2>No Challenges To You!</td></table>'; $h->endpage(); exit; } while($d = mysql_fetch_assoc($t)) { $b = mysql_query("SELECT * FROM users WHERE userid='{$d['challenged']}'") or die(mysql_error()); $h = mysql_fetch_assoc($b); echo ' <tr> <td>'.$h['username'].'</td> <td><a href="?viewchallengerecieved&id='.$d['id'].'">Delete</a></td>'; } echo '</td></table>'; exit; } if(isset($_GET['viewchallengesent'])) { if($_GET['id']) { $db->query("DELETE FROM spar WHERE id='{$_GET['id']}'") or die(mysql_error()); echo 'Challenge canceled'; $h->endpage(); exit; } echo ' <table border=1 width=100%> <tr> <th>User Challenged Against</th> <th>Actions</th> </tr>'; $t = mysql_query("SELECT * FROM spar WHERE challenger='{$ir['userid']}'") or die(mysql_error()); if(mysql_num_rows($t) == 0) { echo '<td colspan=2>No Challeneges sent by you!</td></table>'; $h->endpage(); exit; } while($d = mysql_fetch_assoc($t)) { $b = mysql_query("SELECT * FROM users WHERE userid='{$d['challenged']}'") or die(mysql_error()); $h = mysql_fetch_assoc($b); echo ' <tr> <td>'.$h['username'].'</td> <td><a href="?viewchallengerecieved&id='.$d['id'].'">Delete</a></td>'; } echo '</td></table>'; $h->endpage(); exit; } if($_GET['donow'] == accept) { $id = $_GET['id']; $a = mysql_query("SELECT * FROM spar WHERE id='{$id}'") or die(mysql_error()); $f = mysql_fetch_assoc($a); if($f['challenged'] != $ir['userid']) { echo 'This challenge does not belong to you!'; $h->endpage(); exit; } $db->query("UPDATE users SET attacking={$ir['attacking']} WHERE userid=$userid"); event_add($f['challenger'], "{$ir['username']} Accepeted your challenge."); mysql_query("DELETE FROM spar WHERE id='{$f['id']}'") or die(mysql_error()); $h->endpage(); exit; } if($_GET['donow'] == decline) { $id = $_GET['id']; $a = mysql_query("SELECT * FROM spar WHERE id='{$id}'") or die(mysql_error()); $f = mysql_fetch_assoc($a); if($f['challenged'] != $ir['userid']) { echo 'This challenge does not belong to you!'; $h->endpage(); exit; } mysql_query("DELETE FROM spar WHERE id='{$f['id']}'") or die(mysql_error()); event_add($f['challenger'], "{$ir['username']} Declined your challenge."); echo 'You declined the challenge!'; $h->endpage(); exit; } echo '<a href="?challenge">Challenge Some one</a><br> <a href="?viewchallengesent">View Your Sent Challenge That Has Not Been Accepted/Declined</a><br> <a href="?viewchallengerecieved">View Your Recieved Challenged That Has Not Been Aceppted/Declined</a>'; $h->endpage(); ?>   If that is correct, please tell me. If you can, could any users help me with the one click attack?
  10. http://img594.imageshack.us/img594/8091/layoutma.png Here is a screenshot. Not bad might I add.
  11. Does anyone have the Nations Mod by MagicTallGuy? If you have something similiar to this please tell me or post a download link.
  12. When they reach a certain level, they get a new rank. X.X Im not good with the table adding. Would I have to add a column that is labeled rank and then add rank name, required level, rank image? That code looks like it could work if it was more detailed or more thought out. o.o
  13. Is there a way where you can set ranks depending on your race such as: Vampire: Level F Level E Level D Level C (etc..) Werewolf: Class F Class E Class D Class C (etc..) And it shows the user's race and what rank they are in that perticular race. An example is on the view user it would be:   Race: Vampire Rank: Level C Level: 20 Experience: 2015011 Clan: User is not in clan. As opposed to someone who has another race, that would have: Race: Werewolf Rank: Class C Level: 20 Experience: 200000 Clan: Demonsbane Pack I would like to know if I would have to edit the global_func.php for this to happen and how. **Side Note** Can someone post how to make race pictures that can be put on the viewuser page as well?
  14. Here are the problems I need help with, more like request though. 1. ?id problems.- I dont know how to do this, an example would be http://www.gameurl.com/?id=1 (How would I go about completing this?) 2. Game Layouts- Also when I try to use a layout or a test layout the game wont line up right. (Whats the correct code to change when doing the css, and html in the header?) If you could, could you please post the codes to these and answer my request?
  15. Okay I'll try to fix it.
  16. How do you id check it? I dont use this very often, and so I am not very good yet.
  17. You cannot register so use my younger brothers account. Username: Nero Password: eclipse After that you'll see the problem.
  18. http://www.bleach-rpg.ej.am
  19. I'm making a game and heres the problem. My header is this. When I log in, the index and any other pages are on the right instead of where they should be.Please help [fieldset]<?php class headers { function startheaders() { global $ir, $set; echo <<<EOF <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>{$set['game_name']}</title> <style type="text/css"> <!-- body { background-color: #222222; font-family: tahoma; font-size: 11px; color: #CCFFFF; } a { color: #FFFFFF; text-decoration: none; } #container { width: 800px; margin: auto; border: 2px solid #000000; background-color: #999999; clear: both; overflow: hidden; margin-bottom: 10px; } #banner { background-image: url(images/banner.png); width: 800px; height: 299px; } #menu { width: 800px; height: 17px; background-color: #333333; border-bottom: 2px solid #000000; border-top: 2px solid #000000; margin-bottom: 10px; padding-top: 3px; text-align: center; } #side { width: 200px; margin-left: 15px; margin-bottom: 15px; float: left; } #box { width: 200px; border: 2px solid #000000; background-color: #666666; margin-bottom: 5px; } #boxhead { width: 197px; height: 15px; background-color: #333333; border-bottom: 2px solid #000000; padding-left: 3px; } #content { width: 540px; border: 2px solid #000000; background-color: #666666; float: left; margin-left: 20px; margin-bottom: 10px; } .SubHeader { height: 15px; background-color: #333333; border-bottom: 2px solid #000000; padding-left: 3px; } #copyright { width: 800px; margin: auto; border: 2px solid #000000; background-color: #999999; clear: both; overflow: hidden; text-align: center; padding-top: 3px; padding-bottom: 3px; } --> </style></head> <body> <center> <table width="970" border="0" cellpadding="0" cellspacing="0" class="table2"> <tr> <td class="lgrad"></td> <td class="center"> EOF; } function userdata($ir,$lv,$fm,$cm,$dosessh=1) { global $db,$c,$userid, $set; $IP = ($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; $db->query("UPDATE users SET laston=unix_timestamp(),lastip='$IP' WHERE userid=$userid"); if(!$ir['email']) { global $domain; die ("<body>Your account may be broken. Please mail help@{$domain} stating your username and player ID."); } if($dosessh && ($_SESSION['attacking'] || $ir['attacking'])) { print "You lost all your EXP for running from the fight."; $db->query("UPDATE users SET exp=0,attacking=0 WHERE userid=$userid"); $_SESSION['attacking']=0; } $enperc=(int) ($ir['energy']/$ir['maxenergy']*100); $wiperc=(int) ($ir['will']/$ir['maxwill']*100); $experc=(int) ( $ir['exp']/$ir['exp_needed']*100); $brperc=(int) ($ir['brave']/$ir['maxbrave']*100); $hpperc=(int) ($ir['hp']/$ir['maxhp']*100); $enopp=100-$enperc; $wiopp=100-$wiperc; $exopp=100-$experc; $bropp=100-$brperc; $hpopp=100-$hpperc; $d=""; $u=$ir['username']; if($ir['donatordays']) { $u = "<font color=red>{$ir['username']}</font>";$d=""; } $gn=""; global $staffpage; $bgcolor = 'FFFFFF'; print <<<OUT <div id="box"> <table class = "SubHeader" width="200"><tr> <td align = "center">Character Notifications</td></tr></table> <table width = "" border = "0" cellpadding = "" cellspacing = "" class = ""> <tr align="left"><td>PM-Messages:</td><td>No unread messages</td></tr> <tr align="left"><td>Battle Arena:</td><td>You are not in battle</td></tr> <tr align="left"><td>Agni Kai:</td><td>No challenges</td></tr> <tr align="left"><td>Attacked:</td><td>No attacks</td></tr> <tr align="left"><td>Events:</td><td>You have no events</td></tr> <tr align="left"><td>Your Status:</td><td>You are awake</td></tr> <tr align="left"><td>Hospital:</td><td>Perfectly Healthy</td></tr> <tr align="left"><td>Level Up:</td><td>Claim Level</td></tr> </table> </div> <div id="box"> <table class = "SubHeader" width="200"><tr> <td align = "center">Character Status</td></tr></table> <table width = "" border = "0" cellpadding = "" cellspacing = "" class = ""> <tr> <td>Health: </td><td>/ </td> </tr> <tr> <td>Chi: </td><td>/ </td> </tr> <tr> <td>Stamina: </td><td>/ </td> </tr> <tr> <td></td> </tr> <tr> <td>Regen Rate: </td><td></td> </tr> <tr> <td></td> </tr> <tr> <td>Location: </td><td>.,OutSkirts</td> </tr> </table> </div> OUT; if($ir['fedjail']) { $q=$db->query("SELECT * FROM fedjail WHERE fed_userid=$userid"); $r=$db->fetch_row($q); die("<font color=red size=+1>You have been put in the {$set['game_name']} Federal Jail for {$r['fed_days']} day(s). Reason: {$r['fed_reason']}</font></body></html>"); } if(file_exists('ipbans/'.$IP)) { die("<font color=red size=+1>Your IP has been banned from {$set['game_name']}, there is no way around this.</font></body></html>"); } } function menuarea() { include "mainmenu.php"; global $ir,$c; $bgcolor = 'FFFFFF'; print '</td><td width="2" class="linegrad" bgcolor="#'.$bgcolor.'"></td><td width="80%" bgcolor="#'.$bgcolor.'" valign="top"> <center>'; if($ir['hospital']) { print "NB: You are currently in hospital for {$ir['hospital']} minutes. "; } if($ir['jail']) { print "NB: You are currently in jail for {$ir['jail']} minutes. "; } print "Donate to {$set['game_name']} now for game benefits! "; } function smenuarea() { include "smenu.php"; global $ir,$c; $bgcolor = 'FFFFFF'; print '</td><td width="2" class="linegrad" bgcolor="#'.$bgcolor.'"></td><td width="80%" bgcolor="#'.$bgcolor.'" valign="top"><center>'; } function endpage() { global $db; print <<<OUT </center> </td> </tr> </table></td> <td class="rgrad"></td> </tr> <tr> <td colspan="3"> <table cellpadding="0" cellspacing="0" border="0" width="100%"> <tr> <td class="dgradl"></td> <td class="dgrad"></td> <td class="dgradr"></td> </tr> </table> </td> </tr> </table> {$db->num_queries} queries</body> </html> OUT; } } ?>[/fieldset]
  20. Parse error: syntax error, unexpected '{' in /home/takeru/public_html/gangadmin.php on line 77 If I take that out then other errors come.
  21. Now it says something about { on line 77. Just post the correct code.
  22. I keep having an error when I use gangadmin.php It's always this problem. Parse error: syntax error, unexpected ')' in /home/????/public_html/gangadmin.php on line 73
  23. Re: [Mccodes v2]In battle!, new attack system[mccodes v2] I'm on my mom's computer and it won't allow me to do anything. I'll put it here from my computer.
  24. Re: [Mccodes v2]In battle!, new attack system[mccodes v2] Actually I've already started on it. I'm almost done with it. ^^
  25. Re: [Mccodes v2]In battle!, new attack system[mccodes v2] First you have to start actually doing it. xD
×
×
  • Create New...