S.Cosmin Posted May 7, 2011 Share Posted May 7, 2011 Hellow guys, I have a few questions about some sections, what they do, for my game. -Estate -Battletent And another question is, how to travel in other cities? Quote Link to comment Share on other sites More sharing options...
rulerofzu Posted May 7, 2011 Share Posted May 7, 2011 Estate - Buy a house move into the house and you obtain more will power. Which helps you in other areas of the game. Battletent - Defeat the NPC and gain whatever it is you have set to gain. Exp, Money, Crystals Travel - Does what it says on the tin. You select where you wish to travel to and go there. Quote Link to comment Share on other sites More sharing options...
S.Cosmin Posted May 7, 2011 Author Share Posted May 7, 2011 Travel - Does what it says on the tin. You select where you wish to travel to and go there. But, what section? I can't find it. Quote Link to comment Share on other sites More sharing options...
rulerofzu Posted May 7, 2011 Share Posted May 7, 2011 Default name is mono rail I believe and is found on the explore page. Quote Link to comment Share on other sites More sharing options...
Danny696 Posted May 7, 2011 Share Posted May 7, 2011 I know this has been answered, but what chance do you have of having a game when you can't do the simplest of tasks like this.... Quote Link to comment Share on other sites More sharing options...
S.Cosmin Posted May 7, 2011 Author Share Posted May 7, 2011 What "Will" do ? Can explain enyone? Quote Link to comment Share on other sites More sharing options...
Dominion Posted May 7, 2011 Share Posted May 7, 2011 What "Will" do ? Can explain enyone? More will = more gain per train in the gym. Quote Link to comment Share on other sites More sharing options...
W3Theory || Peter Posted May 7, 2011 Share Posted May 7, 2011 S.Cosmin, isn't there a file that comes along with the download of a licensed mccodes? That has alot of detail on it. Quote Link to comment Share on other sites More sharing options...
S.Cosmin Posted May 7, 2011 Author Share Posted May 7, 2011 More will = more gain per train in the gym. Thank you S.Cosmin, isn't there a file that comes along with the download of a licensed mccodes? That has alot of detail on it. No...where is it? I don't have that file. Quote Link to comment Share on other sites More sharing options...
Djkanna Posted May 7, 2011 Share Posted May 7, 2011 S.Cosmin, isn't there a file that comes along with the download of a licensed mccodes? That has alot of detail on it. As of 2.03 that file is non-existent. Quote Link to comment Share on other sites More sharing options...
W3Theory || Peter Posted May 7, 2011 Share Posted May 7, 2011 Okay I did not know that. Could be useful to re-add Quote Link to comment Share on other sites More sharing options...
S.Cosmin Posted May 7, 2011 Author Share Posted May 7, 2011 As of 2.03 that file is non-existent. Sir, where can i get the files? Quote Link to comment Share on other sites More sharing options...
rulerofzu Posted May 7, 2011 Share Posted May 7, 2011 you should have the monorail.php file which is the travel file. Quote Link to comment Share on other sites More sharing options...
S.Cosmin Posted May 7, 2011 Author Share Posted May 7, 2011 you should have the monorail.php file which is the travel file. Sir, i mean the infos files. Quote Link to comment Share on other sites More sharing options...
Dominion Posted May 7, 2011 Share Posted May 7, 2011 They are "non-existent" as in they no longer exist. Just play around with the engine to test what everything does. Quote Link to comment Share on other sites More sharing options...
S.Cosmin Posted May 7, 2011 Author Share Posted May 7, 2011 Why my game seen like sh*t in internet explorel? With the other browsers is good..firefox, chorme, opera....but IE is sucks, why? Quote Link to comment Share on other sites More sharing options...
realmoflegends Posted May 7, 2011 Share Posted May 7, 2011 IE9 has given fits to many site designers it seems, looks fine in all browsers, except IE, where I had to make a bunch of adjustments for it to look right. Quote Link to comment Share on other sites More sharing options...
Dominion Posted May 7, 2011 Share Posted May 7, 2011 IE9 has given fits to many site designers it seems, looks fine in all browsers, except IE, where I had to make a bunch of adjustments for it to look right. That has always been the case with IE, and is why many hate it. Still has the biggest market share so you can't even ignore it. http://arstechnica.com/web/news/2011/05/web-browser-market-share-upgrade-analysis.ars Quote Link to comment Share on other sites More sharing options...
S.Cosmin Posted May 7, 2011 Author Share Posted May 7, 2011 (edited) Ahaa, i found the bug. Thats my code, but where to place include "menu_right.php"; to work fine?I dont knowo wher is finish the container... <?php class headers { function startheaders() { global $ir, $set; global $_CONFIG; define("MONO_ON", 1); $db=new database; $db->configure($_CONFIG['hostname'], $_CONFIG['username'], $_CONFIG['password'], $_CONFIG['database'], $_CONFIG['persistent']); $db->connect(); $c=$db->connection_id; $set=array(); $settq=$db->query("SELECT * FROM settings"); while($r=$db->fetch_row($settq)) { $set[$r['conf_name']]=$r['conf_value']; } $q=$db->query("SELECT userid FROM users"); $membs=$db->num_rows($q); $q=$db->query("SELECT userid FROM users WHERE bankmoney>-1"); $banks=$db->num_rows($q); $q=$db->query("SELECT userid FROM users WHERE gender='Male'"); $male=$db->num_rows($q); $q=$db->query("SELECT userid FROM users WHERE gender='Female'"); $fem=$db->num_rows($q); $money=money_formatter($ir['money']); $crystals=money_formatter($ir['crystals'],''); $cn=0; // Users Online , Counts Users Online In Last 15 minutes $q=$db->query("SELECT * FROM users WHERE laston>unix_timestamp()-15*60 ORDER BY laston DESC"); $online=$db->num_rows($q); $ec=$ir['new_events']; $mc=$ir['new_mail']; $ids_checkpost=urldecode($_SERVER['QUERY_STRING']); if(eregi("[\'|'/'\''<'>'*'~'`']",$ids_checkpost) || strstr($ids_checkpost,'union') || strstr($ids_checkpost,'java') || strstr($ids_checkpost,'script') || strstr($ids_checkpost,'substring(') || strstr($ids_checkpost,'ord()')){ $passed=0; echo "<center> <font color=red> Hack attempt <br/>!!! WARNING !!! <br/> Malicious Code Detected! The staff has been notified.</font></center>"; event_add(1," <a href='viewuser.php?u={$ir['userid']}'> <font color=red> ".$ir['username']."</font> </a> <b> Tried to use [".$_SERVER['SCRIPT_NAME']."{$ids_checkpost}].. ",$c); $h->endpage(); exit; } 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']} - Massive Multiplayer Online Role Playing Game </title> <meta name="keywords" content="RPG, Online Games, Online Mafia Game" /> <meta name="description" content=" {$set['game_name']} - Online Mafia Game " /> <meta name="author" content="Mafia Game Scripts " /> <meta name="copyright" content="Copyright {$_SERVER['HTTP_HOST']} " /> <link rel="SHORTCUT ICON" href="favicon.ico" /> <script src="js/jquery-1.js" type="text/javascript"></script> <link rel="stylesheet" href="css/wcg.css" type="text/css" /> <script type="text/javascript" src="js/header.js"></script> <style type="text/css"> .boston a{ background:url(images/boston.jpg) no-repeat; } .boston a:hover{ background:url(images/boston_hover.jpg) no-repeat; } </style> <!--<script type="text/javascript"> $(document).ready(function(){ $.get("userstatajax.php",function(res){ if(res) { var resarray = res.split('||||||'); $('.profile_mid').html(resarray[0]); $('#points_money').html(resarray[1]); } }); }); </script>--> <Script language="JavaScript"> <!-- window.IMAGEPATH = "http://thecrims.cachefly.net/images/"; document.addEventListener("DOMNodeInserted",bdcbccabedbe, true); document.addEventListener("DOMAttrModified",bfdedceaea, true); document.addEventListener("DOMNodeRemoved",fccbafca, true); function cbcaadb(name) { var tags = new Array('SPAN','TR','TD'); for(x in tags) { if(name == tags[x]) return false; } return true; } function ddaaefaa(evt){ if (typeof(window.event) != 'undefined') return window.event.srcElement; else return evt.target; } function ccfcfcfdf(tagName) { } function bdcbccabedbe(event) { if(typeof(event.target.tagName) != 'undefined' && cbcaadb(event.target.tagName) == false) { srcElement = ddaaefaa(event); if(typeof(srcElement) != 'undefined') $(srcElement).remove(); ccfcfcfdf(event.target.tagName); } } function bfdedceaea(event) { if(event.target.tagName == 'OPTION') { ccfcfcfdf(event.target.tagName); } } function fccbafca(event) { var srcElement = ddaaefaa(event); if(srcElement && srcElement.attributes && srcElement.attributes.length) { $(srcElement).remove(); } if(typeof(event.target.id) != 'undefined' && typeof(event.target.tagName) != 'undefined' && (event.target.id == 'topbox' || event.target.tagName == 'IFRAME' || event.target.id == 'banner_bottom')) { ccfcfcfdf(event.target.tagName); } } function confirmChoice() { var value = confirm("Esti sigur?"); if (value == true) { wait(); return true; } else { return false; } } function checkBox(value) { if(value == '-') { alert("Alege din lista"); return false; } else { wait(); return true; } } // --> </script> </head> <!-- // Flas Header Part Stars --> <div class="flashpartig"> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="950" height="235" title="TheGangsters.ro"> <param name="movie" value="images/flash/header.swf" /> <param name="quality" value="high" /> <param name="wmode" value="Transparent" /> <embed src="images/flash/header.swf" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="950" height="235"></embed> </object> </div> <!-- //Flash Header Part End --> <!-- Container Part Starts --> <div id="centercontainer"> <div id="centermaincontainer"> <!-- Container Part Ends --> <!-- Center Part Starts --> <div class="icenterpart"><div class="icolumn1"> EOF; } function userdata($ir,$lv,$fm,$cm,$dosessh=1) { global $db,$c,$userid, $set; $IP = $_SERVER['REMOTE_ADDR']; $IP=addslashes($IP); $IP=mysql_real_escape_string($IP); $IP=strip_tags($IP); $db->query("UPDATE users SET laston=unix_timestamp(),lastip='$IP' WHERE userid=$userid"); $_GET['ID'] = abs(@intval($_GET['ID'])); $_GET['reply'] = abs(@intval($_GET['reply'])); 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 "<CENTER><P><b><font color=red>You lost all your EXP for running from the fight.</font></b></P></CENTER> <br/><br/>"; $db->query("UPDATE users SET exp=0,attacking=0 WHERE userid=$userid"); $_SESSION['attacking']=0; } include "rank.php"; $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=green>{$ir['username']}</font>";$d="<img src='donator.gif' alt='Donator: {$ir['donatordays']} Days Left' title='Donator: {$ir['donatordays']} Days Left' />"; } $gn=""; global $staffpage; $bgcolor = 'FFFFFF'; if($ir['fedjail']) { $q=$db->query("SELECT * FROM fedjail WHERE fed_userid=$userid"); $r=$db->fetch_row($q); die(" <br /><br /><br /><br /><br /> <CENTER><P> <b><font color=red size=+1>You have been put in the {$set['game_name']} Federal Jail for {$r['fed_days']} day(s).<br /> <br /> Reason: {$r['fed_reason']}</font></b> </P></CENTER> </body></html>"); } if(file_exists('ipbans/'.$IP)) { die("<br /><br /><br /><br /><br /><CENTER><P><b><font color=red size=+1>Your IP has been banned from {$set['game_name']}, there is no way around this.</font></b></P></CENTER></body></html>"); } include "menu_right.php"; } function menu_left() { include "menu_left.php"; global $ir,$c; $bgcolor = ''; print '</td><td width="2" class="linegrad" bgcolor="#'.$bgcolor.'"> </td><td width="80%" bgcolor="#'.$bgcolor.'" valign="top"><center>'; if($ir['hospital']) { print "<div class='generalinfo_simple'><br/><font color='yellow'><center<b><div class='statusbox_ok'>Esti internat in spital pentru {$ir['hospital']} de minute. Data viitoare ai grija!</div></b><center></font><br/></div>"; } if($ir['jail']) { print "<div class='generalinfo_simple'><br/><font color='red'><center<b><div class='statusbox_ok'>Esti in inchisoare timp de {$ir['jail']} minute. Data viitoare ai grija!</div></b><center></font><br/></div>"; } if($ir['bguard'] >0) { print "<font color='green'><b>NOTE:</b></font> Your Bodyguard is protecting you for {$ir['bguard']} more minutes.<br/><br/>"; } } function smenuarea() { include "smenu.php"; global $ir,$c; $bgcolor = ''; print '</td><td width="2" class="linegrad" bgcolor="#'.$bgcolor.'"> </td><td width="80%" bgcolor="#'.$bgcolor.'" valign="top"><center>'; } function endpage() { global $db; include "footer.php"; } } ?> Edited May 7, 2011 by Dominion Code tags. Quote Link to comment Share on other sites More sharing options...
rulerofzu Posted May 8, 2011 Share Posted May 8, 2011 Hahaha Who comes up with this stuff $IP = $_SERVER['REMOTE_ADDR']; $IP=addslashes($IP); $IP=mysql_real_escape_string($IP); $IP=strip_tags($IP); Really....makes me laugh everytime. Quote Link to comment Share on other sites More sharing options...
rulerofzu Posted May 8, 2011 Share Posted May 8, 2011 Nice language. I for one will never help you. Makes me wonder the legitimacy of your game. Quote Link to comment Share on other sites More sharing options...
S.Cosmin Posted May 8, 2011 Author Share Posted May 8, 2011 Yeah, i have deleted the post, i was nervos cuz all going wrong. :D Quote Link to comment Share on other sites More sharing options...
S.Cosmin Posted May 9, 2011 Author Share Posted May 9, 2011 So guys, i have a new question for you :) Why you can buy many items? For example, weapons. You cant use 10 AK's 47...but you can buy...Thats my question.hmmm... Quote Link to comment Share on other sites More sharing options...
realmoflegends Posted May 9, 2011 Share Posted May 9, 2011 Well, in my game, items wear out and break, so that's a good reason to stock up, but that's not in the default McCodes really. Maybe to stock up and sell to the market for cash? Give one to a friend on the game? Many reasons. Quote Link to comment Share on other sites More sharing options...
S.Cosmin Posted May 9, 2011 Author Share Posted May 9, 2011 Well, in my game, items wear out and break, so that's a good reason to stock up, but that's not in the default McCodes really. Maybe to stock up and sell to the market for cash? Give one to a friend on the game? Many reasons. Well mister, what mod you use, can you gave me the link? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.