Jump to content
MakeWebGames

Recommended Posts

Posted

Im sure with anything php related you can bet on that since I dont think there is anything 100% secure. You just gotta watch user input. Im no security expert by any means so dont take my word for it and rule of thumb is and I think everyone here would agree is dont trust your userbase, there is always some schmuck that will try

Posted

You can make them work, but honestly if you read around it seems people have been having trouble with both the base engine, and converting even with the tutorial. I would suggest starting with mcc free (assuming you defiantly want mccodes), and looking at other options before buying anything.

Posted (edited)

Well it does appear simply to be copy and paste people who have asked for help on the forum or in chat (I have not been as active in chat the last month or so) have had difficulty. Simply do a search on the engine.

One example of such threads include a poll –

http://makewebgames.io/showthread.php/39803-Redux-Installation-of-ne-Mods

So as I said before I would start with the free version if you’re going with mccodes. Also there is never any harm in shopping around. I would also recommend basic programming experience if you haven't already got any. This would mean starting with open source code, and making a more full decision later to ensure it's what you should be using to get your project where you want it.

Edited by Dominion
Posted

Doesn't change the fact new members of the forum, those who have paid their money to buy the engine, have had to ask for help converting both free mods, and fixing errors. I am not trying to be rude here. Just trying to show that your view is not shared by all. I have personally never tried it, only given some support to those who have asked.

Posted

You have a right to your opinion Dominion, all scripts have their bugs and issues. Personally i find redux simple to install and convert mods, some people asked for help at the beginning to convert v1 to v2 so i can see the issues.

We just updated redux to fix a few bugs so anyone with redux please visit mccodes.com and download the newest version 2.5.6c.

Posted

Ithink its pretty simple as well even for a scrub like myself but sometimes I hit a snag and cant figure out dor the life of me what I possibly missed since I dont like to "find and replace" cause sometimes that little feature gets a little trigger happy and replaces stuff with something that it shouldnt so keep that in mind too. For example lets just say you want to convert over preferences for whatever reason you have, are you just going to find and replace preferences.php? Probably shouldnt since you have serveral actions, functions, or cases whatever you want to call them. If you do use find and replace I suggest the slow way. Heres an example to look out for:

echo '<a href="preferences.php?action=sigchange">Change Sig</a>

Would not be

	echo '<a href="'.gen_url('preferences',true).'"?action=sigchange>Change Sig</a>';

What it should be is

	echo '<a href="'.gen_url('preferences',true).'&action=sigchange">Change Sig</a>';

So make sure to change the "?action=action" to a "&action=action" and place that in between the '" at the end or vice versa "' <- kinda looks the same lol but its opposite haha

Posted

I got a question though if you dont mind helping real quick, im trying to covert a mod over and in just one spot I cant figure out what im doing wrong cause it keeps popping up a critical error. I dont have any of the code on me cause im on my phone but any help is appreciated.

Posted

We do honor the support of converting v2.0.x mods to v2.5.x (Redux). Send in a suppor ticket asking for help and we will help you. Even over this forums so in future it can be a useful resource for someone else.

We are even honoring v2.x.x modules to be converted to v3.0.x - ATM, its dead easy! ..is all I'm going to say for now..

Posted

Both of them are products of MCC so yes i will help you with any issues your having on this occasion and anyone else but after you do it once im sure you wouldn't need support again (NOTE: i will not convert it for you only supply information on how it's done and help you with any issues your having during the conversion)

Posted

alright i guess ill put in a ticket but i think it would be better to help over the forums so that other people wouldnt have to bother you for support of a stupid thing like this. then you can work on releasing that V3 ;)

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