Jump to content
MakeWebGames

Recommended Posts

Posted

Re: MC2 Codes - Are they worth it?

I have seen the admin panel of the MC2 Code and its not very extensive. It would only be about 10% easier to use and thats if you dont know how to code. If you know how to code then MC2 code is completely useless.

I say this because the MCcodes v1.1 is much more flexible and is a lot easier to modify than mc2code is and that comes from experience coding in both versions of the game engine.

Posted

Re: MC2 Codes - Are they worth it?

my admin panel is already loaded :) damnit dbs, stop selling your cars & pets mod let kids do it on their own..

Posted

Re: MC2 Codes - Are they worth it?

it's all to do with the bumph at the top,

for lite u need to knock off the crystal money format at least for the older version of lite but since the updated version has been out i'm pretty sure that all lite files are pretty much the same as v1.1 apart from the obvious gangs and certain market files.

and for v2 all u need to do is remove everything from </php to $h->menuarea(); and replace it with

 

<?php
include "sglobals.php";

 

or something like that

it's rteally that simple

Posted

Re: MC2 Codes - Are they worth it?

V2 also requires that when you call the global *variable* you must call $db as well, so where it says global $ir,$h,$c you need to have $db as well :)

Posted

Re: MC2 Codes - Are they worth it?

 

it's all to do with the bumph at the top,

for lite u need to knock off the crystal money format at least for the older version of lite but since the updated version has been out i'm pretty sure that all lite files are pretty much the same as v1.1 apart from the obvious gangs and certain market files.

and for v2 all u need to do is remove everything from </php to $h->menuarea(); and replace it with

 

<?php
include "sglobals.php";

 

or something like that

it's rteally that simple

so if i wanna change a v2 mod to lite i take all that off? and replace it by the other thingy?? or is it if you want to change a mod lower than v2 you do that?

Posted

Re: MC2 Codes - Are they worth it?

yeah also $_SESSION cannot be used, It selects from globals

say you used $userid=$_SESSION['userid']; wouldnt work. :)

so it all goes by $ir;

A favourite thing i use is $_SESSION['loggedin_time']; its a feature where it tells you when you logged in, :) just what i use :>

Posted

Re: MC2 Codes - Are they worth it?

 

yeah also $_SESSION cannot be used, It selects from globals

say you used $userid=$_SESSION['userid']; wouldnt work. :)

so it all goes by $ir;

A favourite thing i use is $_SESSION['loggedin_time']; its a feature where it tells you when you logged in, :) just what i use :>

This is off topic, but I noticed your sig.. How does AGE have anything to do with your coding skill level?

Posted

Re: MC2 Codes - Are they worth it?

 

This is off topic, but I noticed your sig.. How does AGE have anything to do with your coding skill level?

From what I've seen on here, it doesn't. But unfortunately, some user's age shows through in their posts.

Posted

Re: MC2 Codes - Are they worth it?

 

yeah also $_SESSION cannot be used, It selects from globals

say you used $userid=$_SESSION['userid']; wouldnt work. :)

so it all goes by $ir;

A favourite thing i use is $_SESSION['loggedin_time']; its a feature where it tells you when you logged in, :) just what i use :>

wtffffff?

Posted

Re: MC2 Codes - Are they worth it?

 

it's all to do with the bumph at the top,

for lite u need to knock off the crystal money format at least for the older version of lite but since the updated version has been out i'm pretty sure that all lite files are pretty much the same as v1.1 apart from the obvious gangs and certain market files.

and for v2 all u need to do is remove everything from </php to $h->menuarea(); and replace it with

 

<?php
include "sglobals.php";

 

or something like that

it's rteally that simple

so if i wanna change a v2 mod to lite i take all that off? and replace it by the other thingy?? or is it if you want to change a mod lower than v2 you do that?

yeah also $_SESSION cannot be used, It selects from globals

say you used $userid=$_SESSION['userid']; wouldnt work.

so it all goes by $ir;

A favourite thing i use is $_SESSION['loggedin_time']; its a feature where it tells you when you logged in, just what i use :>

am using lite version......now adding this all together....to make a v2 mod into lite u have to remove 's.global'? and place the everything inbetween <?php to menuarea?

and v2 cannot have $session? or it can but the others cant?

Posted

Re: MC2 Codes - Are they worth it?

Version 2.0 is written so you require the globals.php. That, among other things, generates the $ir variable.

You can still use $_SESSION variables if you wish, I use em all over.

Posted

Re: MC2 Codes - Are they worth it?

 

this more complicated than i thought :?

I can't imagine going from 2.0 to anything lower. It confuses me. But I can Upgrade to 2.0 very easily.

Posted

Re: MC2 Codes - Are they worth it?

I'm using source codes 1. something, don't even know. All good though, I re-did all the forumlas in my game and version 2 will be out soon :lol:

Posted

Re: MC2 Codes - Are they worth it?

The database queries are different in V2 ... its something like:

$db->query("SELECT ....");

and fetch_arrays are:

$db->fetch_row

Or something like that.

Posted

Re: MC2 Codes - Are they worth it?

 

The database queries are different in V2 ... its something like:

$db->query("SELECT ....");

and fetch_arrays are:

$db->fetch_row

Or something like that.

There's more than 1 way to skin a cat....

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...