Jump to content
MakeWebGames

Recommended Posts

Posted

Re: Converting V1 mods to V2

Nah i thought it would be easy for people to see here. alot of people are asking me for v2 mods and stuff.

Its very easy all u have to do is rename include global_func.php to include globals.php and cut all the bits upto $h->menuarea(); let me show u:

<?php

session_start();

require "globals.php";

then it should just show the script at the bottom

Now stop paying people to convert mods for money lol.

Posted

Re: Converting V1 mods to V2

This thread's going nowhere, so here it is.

FROM v1 to v2:

On the page

FIND <?php

take EVERYTHING from that point until (And including)

$h->menuarea();

 

REPLACE with

include "globals.php";

 

 

Use GREP (Find and replace) to FIND:

global $ir

REPLACE WITH

global $db,$ir

Do this for ALL variations of global $ir,$c,$h etc.

Once done, your mod SHOULD technically work.

Posted

Re: Converting V1 mods to V2

Now that's much better. :)

There are of course exceptions, occationally, depending on the code you're looking at.

Posted

Re: Converting V1 mods to V2

 

Now that's much better. :)

There are of course exceptions, occationally, depending on the code you're looking at.

 

Yes, true. Thanks for the support UCC. :)

Posted

Re: Converting V1 mods to V2

 

LAMO!!!

Lamo? You are a lamo

you make me nervous. I remember a former guy on these forums with kila/killa in his name that had trouble spelling simple acronyms as well...

Posted

Re: Converting V1 mods to V2

 

LAMO!!!

Lamo? You are a lamo

you make me nervous. I remember a former guy on these forums with kila/killa in his name that had trouble spelling simple acronyms as well...

 

Yeah, I remember him... bad spelling, and worse news.

Posted

Re: Converting V1 mods to V2

 

lol, how do you turn v2 into v1?

i also lol'd decepti0n

to convert v2 to v1

do the v1 to v2 conversion backwards :D

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...