-
Posts
2,464 -
Joined
-
Last visited
-
Days Won
8
Content Type
Profiles
Forums
Events
Everything posted by rulerofzu
-
New Worlds Engine Developer version available!
rulerofzu replied to a_bertrand's topic in New Worlds Engine
Hardly doubt that its illegal. By purchasing Alain can get you to agree to whatever in his terms and conditions. Your then bound by that which forms a contract. -
Easier to create interesting. So in theory as I have the full version I could just uninstall the majority of the modules which would make it like a dev version.
-
I really dont see how the engine is half baked. I joined this site just before it went from being CE to MWG. In that time ive seen numerous postings by people on how they are going to create an engine and it amounts to nothing. The NWE engine is exactly what Alain said he would deliver. A new game engine. Congrats I think he has done a good job. As for the comment in that thread about it being all over the front of the forum well its a forum which shows the new posts on the front page duh!
-
New Worlds Engine Developer version available!
rulerofzu replied to a_bertrand's topic in New Worlds Engine
I fully support further development and as I stated above if you have modifications or get them made for you then you have to roll with it. At the end of the day improvements, new features and further advances in both PHP and MySQLi are going to make your project better -
That would be just shameful and if anyone, not saying you would spudinksi, should be ashamed of themselves and be prepared to be publicly disgraced for it.
-
New Worlds Engine Developer version available!
rulerofzu replied to a_bertrand's topic in New Worlds Engine
I came across this situation about 6months ago. Really needed to update software but for some of the modifications the developer had decided to not upgrade any of the mods. And that says it all really. Alain is the developer of the engine and can in the future take it where ever he sees fit. Any 3rd party modifications are down to the developer to make adjustments. If the developer doesnt wish to and calls end of life on their mods then the end user has a choice. Find someone that will or dont upgrade to the latest engine release. Danny seriously you dont have $20?!? -
Holy crap no offense they look okay but what is it with the constant mafia theme all the time. Sheesh ive never played a mafia game never will play a mafia game. Try something original
-
Not really its now too late skyrim has been out long enough for there to be established sites. Something like this has to be there bang up and ready shortly after release gathering info as quickly as possible.
-
If it was worth more than the domain registration cost you wouldnt be trying to sell it here.
-
I would be interested Spud.
-
I am very impressed so far and im loving the cache feature.
-
I do not see why you should get a different price as a developer as your aim is to profit from the engine. I purchased it for exactly that reason.
-
Removed........................................
-
Learn PHP Newbie!! http://www.tizag.com/phpT/comment.php
-
No you havnt thats just for them getting the city. You need a update users
-
Look just dont bother with it may or may not happen. Release v1 open source or say its not going to happen. As for the code style. Er.....well no not really. I think up until the latest release there has not been much change in the code other than fixes provided by the forum. The latest release has seen a change in the code but not significant to say an improvement.
-
Isnt the issue though with a set session var and then using the same name to set another var causing the conflict. As in your example $this_name = ['this_name']; $var['this_name'] is different Never experienced the issue myself but seems logical once you set something you cannot use the same to try and set something else.
-
I didnt go off topic. Part of my post was removed due to my comments about the updates and from my observation of the code it would appear that they have added code with little thought. In one post now deleted I suggested that research be taken before buying and 6months testing be done before release of v3 due to their previous track record. Which is true. You should do research first and v2.0.x and 2.5.x has always had bugs/exploits due to lack of testing. I have taken the message sent from Coldblooded as a official warning as it stated this had been discussed between mwg staff.
-
Exactly. Which has happened on more than one occasion and I have been officially warned about speaking out against the mccodes engine.
-
McCodes have a long way to recover their poor reputation and deleting/editing posts stating so only serves to prove the point. Good on them for doing something. However previous history only shows they do something badly and then run and hide.
-
Yes it will apply to every instance of session_register
-
So change $username to $user or anything else.
-
Well the error points to you using the same variable which has been set as a session. So if there is for example a session such as $_SESSION['username'] then using $username would throw the error. So you need to look at your code maybe not just that page if you have perhaps a header thats loading too and make sure you not using the same names. Changing it to $usernames would resolve it doesnt have to be anything special.
-
Could be that one of your vars is used elsewhere and is already set. Change $username to something else