If you register for free, you will be able to post threads, vote on polls and lots more. If you have problems with the registration or logging in, please contact the administrator.
Originally posted by NepentheZ:
<BLOCKQUOTE>Originally posted by Sir_Liam:
I would think that's illegal.
I wouldn't. Once you buy the game, you are free to do with it as you wish. Distributing is as your "own game" is a problem, but he said he would "Create his own game" - which is entirely legal.
As for "Hard-Coded". They are basically things in the game that you can not change, via any editor or external program. </BLOCKQUOTE>
Disassembling or reverse-engineering software is usually illegal in the UK, i think. I believe it mentions this specifically as forbidden in the license agreement, which removes any shred of doubt.
I would imagine they have taken measures to prevent easy decompilation into clean code, but then, even with the code in front of you, it would probably take weeks to understand what it all did.
In any case, it would be useless to anyone who wasn't fluent in C++.
Originally posted by NepentheZ:
<BLOCKQUOTE>Originally posted by Sir_Liam:
I would think that's illegal.
I wouldn't. Once you buy the game, you are free to do with it as you wish. Distributing is as your "own game" is a problem, but he said he would "Create his own game" - which is entirely legal.
As for "Hard-Coded". They are basically things in the game that you can not change, via any editor or external program. </BLOCKQUOTE>
You'd be wrong there i'm afraid, you aren't fere to do with it as you wish.
Originally posted by NepentheZ:
<BLOCKQUOTE>Originally posted by Sir_Liam:
I would think that's illegal.
I wouldn't. Once you buy the game, you are free to do with it as you wish. Distributing is as your "own game" is a problem, but he said he would "Create his own game" - which is entirely legal.
As for "Hard-Coded". They are basically things in the game that you can not change, via any editor or external program. </BLOCKQUOTE>
i think he would have to modify the executable which would be illigal.
Why is it illegal to create new leagues(from other countries), adjust how many people will be seating on the bench each game, or do whatever is illegal?
We can make London have only 5 citizens, which I doubt the UK government would like to see ever happen, we can swap teams in competitions, which I doubt some of them would want to happen, we can swap competitions themselves(like remove all teams and swap them with an inactive league just to play it, and then we can download it from somewhere(for free of course) since not all are bothered to try and do it. So why some features are uneditable and some are?
Many stuff that people would like to "mess around with" are not copyrighted, so why can't it be in the editor?
eg, I want to create 20 teams with no players but that are loaded with cash, that will not interfere with the game database directly, and I can't since there's no such option. I don't see how such thing would be against the law.
Originally posted by Booooooom:
Why is it illegal to create new leagues(from other countries), adjust how many people will be seating on the bench each game, or do whatever is illegal?
We can make London have only 5 citizens, which I doubt the UK government would like to see ever happen, we can swap teams in competitions, which I doubt some of them would want to happen, we can swap competitions themselves(like remove all teams and swap them with an inactive league just to play it, and then we can download it from somewhere(for free of course) since not all are bothered to try and do it. So why some features are uneditable and some are?
Many stuff that people would like to "mess around with" are not copyrighted, so why can't it be in the editor?
eg, I want to create 20 teams with no players but that are loaded with cash, that will not interfere with the game database directly, and I can't since there's no such option. I don't see how such thing would be against the law.
The stuff in the editor you can mess around with to your hearts content because SI have provided you the tools to modify it. The other stuff you cannot edit because it would require you to modify the game code (or change a compiled exe) which you are not allowed to do. What you change the game data to is not illegal, it's what you have to do to the game to make the change that's illegal.
If this stuff was made editable through the editor, then you would be free to edit it. The reason it's not editable is down to the difficulty of making it editable. Things like league structures are extremely complicated and making it user editable would mean that the game would have to cope with whetever weird and wonderful league structures any user could possibly come up with.
Originally posted by bigdunk:
Things like league structures are extremely complicated and making it user editable would mean that the game would have to cope with whetever weird and wonderful league structures any user could possibly come up with.
Well.. it's not THAT complicated, they could easily make it editable. But I see your point.. Some leagues would be absolutely insane...
Originally posted by Canabary:
<BLOCKQUOTE>Originally posted by bigdunk:
Things like league structures are extremely complicated and making it user editable would mean that the game would have to cope with whetever weird and wonderful league structures any user could possibly come up with.
Well.. it's not THAT complicated, they could easily make it editable. But I see your point.. Some leagues would be absolutely insane... </BLOCKQUOTE>
It's more complicated than you would think. Just take, for example, fixture scheduling - the game would have to be able to cope with scheduling fixtures for any number of leagues, cup competitions, european competitions etc all running at the same time for a set of clubs. In real life, English clubs need fixtures scheduling for the league, up to 3 cup competitions, and a european competition. If you could edit this structure, you could easily add more competitions, change the number of teams in each one, change the qualification rules and so on, and the game would still have to generate a correct schedule for each club. The game still struggles now to do this perfectly when it knows upfront all these settings for each club, imagine how much more complicated it would have to be to work if these settings could be changed at will.