“Good luck finding any Forrest code that was stolen”
– a prominent member of the KF2 community
Hey everyone, I’m Carl, I’m a player in the “Killing Floor 2” game, a “Controlled Difficulty” mod player, a KF2 modder, and a KF2 server hoster. Here I’m going to try my luck at finding the stolen code and expose Tamari’s servers as a stolen code profiteering operation and provide tangible evidence proving this. As a programmer outside of KF2 I know a few things about it. Anyone can follow my steps and I encourage everyone to do so, to either further confirm or to refute my findings. One need not to be a programmer to understand all that, as I’ll lead you through using laymen’s terms and explaining it down to little details. This is important, because Tamari and FMX rebut this exposé by simply claiming that I’m a mental person, there is no any proof and everything I post here is lies. They, however, do not back that up with any tangible facts. To the contrary, all I say is backed up by tangible facts and moreover you yourself can easily verify it by following step-by-step instructions. That’s going to be quite a long read because of the huge amount of wrongdoings found in Tamari’s operation, so to make it manageable this will be just the first post in a series.
A quick rundown of this longread
There’s a coop zombie shooting game out there called “Killing Floor 2”
Modders make mods for it
Some servers on which players play online are community hosted
Some of these community servers are called “Tamari’s” and offer modded experience
Tamari and FMX collect donations from players to run their operation
Their operation relies on stolen code from multiple GPL licensed and proprietary mods
This is bad for the game, the modders and the community because it disincentivizes the modders from modding and stifles the further mod development
Code theft is unethical and unfair, especially when donations (in any form) are collected from the operation that relies on code theft
This is also illegal and can be pursued through legal action in a number of Western countries
Evidence of code similarity from decompiled mods is presented in screenshots as well as reproducible steps for everyone to verify the claims made
Tamari’s servers background
Skip it if you are familiar with the matter. If not, “Tamari” is a nickname of a veteran KF2 player who hosts about 2-3 dozens of KF2 community game servers in all world locations. His servers are heavily modded by a well known KF2 modder “Forrest Mark X” (FMX for short) who jointly runs the operation with Tamari. They have been running this operation since 2020 as far as I remember. They collect donations from their players. A good share of KF2 veteran community in North America plays on their servers. Here’s what they have to say about their operation in their own words:
The core of Tamari’s servers gaming experience relies on the heavily modified “Controlled Difficulty” mod and adds nice to have features on top, such as improved HUD, improved scoreboard, zed time counters, improved chatbox, teammate HP bars, expanded custom prestige levels and such. There are also different ways to play the game, such as “ZED Wars”, “True Endless”, etc. While the “Controlled Difficulty” seems to run mostly on the server side, a lot of features related to HUD must be present client side, so they are all shipped to all their servers players as a KF2 content hub workshop subscription item. The biggest by functionality piece is a compiled UScript bytecode file ZEDModifications.u that is downloaded by every new player who joins their servers or by every player when there’s an update to their mod. The total size of their mods is around 0.5 GB.
The problem: a good share of their mods is creatively “borrowed”
Well, turns out that they run their operation relying on other modders code that was stolen and/or used in violation of the licenses the modders put forth with their code to protect it and establish legal ways to use it. The allegations about this situation have been floating around for a while. There is a KF2 player, known as “fanta”, who is a “Controlled Difficulty” developer, modder and KF2 server hoster. On September of 17, 2022, after not having played the game for quite a while, he archived his mods, both “Controlled Difficulty ChokePoints Edition” and “CustomWeapons”, which essentially meant that they were out of support and not were being developed anymore. With that, he provided this note, I quote:
Some people have asked me for source code for the build and i will only say one thing about it. People have been decompiling and stealing from this build without giving a ♥♥♥♥ for years now, every single other CD build has some amount of stolen code from this version. For some reason it’s a common and acceptable practice in this community but in reality it’s wrong in many ways, therefore i wont be sharing source code for this community. If you want something from this build do it the primitive way like others and just steal it.
I felt a bit upset about the community that was being accused here of tolerating the situation, as I’m a member of it as well, but I neither felt guilty, nor I felt the player group I usually play with had anything to do with it. Did we steal the code? No. Did we accept this practice? Also no. So I decided to look a bit closer into this situation as I wasn’t aware of what was going on. As I’ve been banned on Tamari’s servers since early 2020 for bogus reasons, a story I’m going to share some other day, I had no idea and could only speculate. So I asked a friend to join Tamari’s servers and check the mods that get downloaded from the workshop. These are the two workshop items that their servers rely on:
They are “unlisted”, which means that anyone with a link can download them, which makes it possible for KF2 players joining their servers to download these mods automatically to their PC when they join Tamari’s servers, but these mods are not searchable in the KF2 content hub workshop.
But as I understand now, fanta was largely right about the state of this community and I was wrong. One doesn’t really have to be a programmer to go “hmmm…” about this. If you ever played on Tamari’s servers (if not why are you even reading this, haha) have you ever wondered how come that the gaming experience on Tamari’s servers resembles other well known mods WITHOUT these mods actually being downloaded to your KF2 cache? “Unofficial Mod” by modder [insert name here]? “Yet Another Scoreboard” by modder GenZmey? “FriendlyHUD” by modder peelz and some others you’ll read about below? All these authors released their respective mods with complete source code for everyone to use or further modify them CONTINGENT on adhering to the GNU’s GPLv3 license, which is a decades old, well-known license that protects the right of people to always be in position to modify the GPLv3 protected code for their needs. Did Tamari and FMX actually take the source code of all these mods, modified it, incorporated into their larger project without adhering to the license, without sharing the modified source code back to the community and without conveying the license? Yes, they did. And the community said nothing. Moreover, the community kept rewarding them with donations. Not only that, they’ve also decompiled and stole the code from some proprietary projects as well, for which the source code isn’t available in public use.
As for Tamari, he’s up to this very moment keeps denying the stolen code situation. I’m writing this to redeem the KF2 modders community reputation, prove the situation exists, educate players on free software, and destroy the reputation of Tamari’s servers in the court of public opinion.
KF2 engine and compilation background
Skip it if you are a modder yourself and know all that. Unlike in goode and olde times, these days game developers do not develop their games from scratch. They rely on “engines”, which are collections of building blocks specifically designed to make games from. KF2 is no exception and relies on licensed “Unreal Engine 3” engine, UE3 for short. When Epic Games worked on it, everyone was impressed by a big success of the Java programming language developed by Sun Microsystems and everyone wanted to repeat their success. The core idea behind Java is the compilation process is split into two parts: at first the Java source code is compiled into a “Java Virtual Machine” code, which is called Java bytecode at the time of compilation and then the Java bytecode gets both interpreted and just-in-time compiled (depending on cost/benefit analysis) at run time. This “Java Virtual Machine” is a pure abstract concept that physically doesn’t exist and is emulated on physical computers. This is done so Java programs can run on any hardware platform for which JVM emulator was created. This allows for tremendous portability in terms of both software and programming skills as they become platform agnostic — a Java programmer can develop for IBM mainframes, for IBM medium computer lineup and for “microcomputers” as well, such as AMD64 architecture (which our gaming PCs use) or Itanium, the same stands for a compiled Java program — it can run anywhere. This is probably the #1 reason KF2 server software exists both for Windows and Linux.
UE3 engine isn’t much different from JVM in the way it works. The language syntax of UnrealScript or UScript and overall approach are very similar as well. UScript gets compiled into UE3 bytecode which then gets executed on the UE3 virtual machine. But there’s an important feature that allows for easy decompilation of UE3 bytecode (as well as any other similar bytecode, e.g. Java or C#), which is the fact that variable names, function names and overall language structure are preserved in the bytecode, making the decompilation process such that it produces the decompiled code very close to the original source code. This is very unlike traditional programming languages, such as C, which are compiled into the hardware platform native code and are worth being disassembled only if the source code isn’t accessible. But assembly language is very hard to program with as all the virtual memory operations are manual and also the variable and function names are lost during compilation and pretty much can never be obtained from compiled software by regular consumers. In simple cases, the decompiled UE3 bytecode is so good that it can be recompiled back by UE3 compiler without any modifications.
Compilation is an inherently lossy process in most cases and a good share of information is lost. But the amount is different depending on the language compilation approach and for UScript there’s typically much more information is preserved to make good enough decompilation possible.
And, of course, there’s a free decompiler exists for UE3 bytecode, the “UE Explorer” by Eliot Van Uytfanghe, which can be freely downloaded here. All that means that any client-side KF2 mod can be decompiled to the decompiled UE3 bytecode which is VERY CLOSE to the source code, even if the source code isn’t available. This is how FMX and Tamari get the code of proprietary KF2 mods for which the source code hasn’t been shared publicly and that’s how we are going to dissect their mod as well to see what can be found inside.
Zedternal Reborn KF2 mod code status: theft
In order to keep this reading less dry, I’m going to intermingle the theory with something tangible and interesting, so here’s a good example of code theft.
Zedternal Reborn is a well-known mod for KF2 that expands the endless mode with various features and introduces the RPG elements into the game. It has >7K subscribers and >600 players favorited this mod. Here’s a description of it in its maintainers words:
Originally Zedternal mod was developed by Mathieu Wuebec, aka “Mr.Wuebec”, who released its source code as unlicensed on his discord. When he left the game and stopped responding, Fleet Killer and Cruz Controlled, the current maintainers of the project, picked up the sources, improved on them, fixed the issues, of which the most important one was that the mod was crashing because of one of the TWI game updates. The new project was called “Zedternal Reborn”. They have released the project under the GNU GPLv3 license, which means that anyone who modifies it and releases as a fork or uses it in a larger project MUST also release the complete source of their fork/larger project under GPLv3.
Well, guess what, the Zedternal Reborn code, protected under GPLv3, is present in Tamari’s and FMX’s mod. Here are the easily reproducible steps to confirm this, which assume you are on MS Windows.
Go to the Zedternal Reborn mod workshop page and click “Subscribe”. Wait for your Steam client to download it (it has to be running), depending on your download priorities it can take time or require a relaunch. You can track the progress in the the Library > Downloads section of the steam client.
Press a key combination Win + R to launch the “Run” window and enter this path %programfiles(x86)%\Steam\steamapps\workshop\content\232090\2058869377\BrewedPC, hit enter to navigate to the steam workshop folder of Zedternal Reborn in Windows Explorer.
If you associated the “.u” file extension with UE Explorer during the installation double click on the ZedternalReborn.u file to open it in UE Explorer, or copy the path to the file in Windows Explorer, launch UE Explorer, go to “File”, “Open File…” menu, paste the path to the file and open it. Click the “Objects” tab and select the highlighted class.
Note the areas highlighted in red.
Download the Tamari’s ZEDModifications.u from here. It’s the Tamari’s mod version retrieved from the Steam workshop on 1/16/2023 which I rehosted on my website, because one could imagine Tamari and FMX would engage in covering their tracks by refactoring the foreign code or removing it, so the current version of their mod at the time of the reading may not contain all the problematic code. Open it in UE Explorer.
Note the areas highlighted in red.
Here is the question: how come the code structure, class names and variable names are so similar here?
Why all these class names in Tamari’s mod start with WM, which coincidentally are the initials of Mathieu Wuebec? Why they resemble 1:1 the class names and variable names, the order of variables declared, as well as the order of variables from Zedternal Reborn? Could it be that FMX and Tamari, completely independently from Mathieu Wuebec, Cruz Controlled and Fleet Killer, came up with the same code structure, class names and variable names?
And the answer to this would be no from any reasonable person. These two code snippets on the screenshots had to come from one source. And this source is Zedternal Reborn. It is improbable to suggest that two different programmers would come up with the code so similar. Instead, the most likely explanation here is Tamari and FMX copied the source code of the Zedternal Reborn project, modified it, incorporated it into a bigger proprietary project, without adhering to the license, without giving back to the community, without honoring the rights of appropriate copyright holders, which were expressed in tying the GPLv3 license to their project release. Then, collected donations from players to run their operation which is based on foreign code from other authors who did not agree to their mods being used this way, per license they tied to their mods.
And that’s just one example of the beginning of just one class, as there are A LOT of classes, variables and functions have the same or very similar structure, order and names in both projects, the Zedternal Reborn and ZEDModifications.u.
No surprise that this was convincing enough for Zedternal Reborn maintainers to approach FMX and demand compliance. Overall, very professional behavior so far from them and everything that I’ve learnt about this mod leaves an impression of professionalism, the way they conduct themselves when presented with evidence, how they document it, how they put well worded change notes when they release updates to their mod and so on.
You can go and check their discord and find this public exchange yourself. So you not only have me and fanta, who are supposedly bad guys, mental assholes and misinformation spreaders, whose case is insane, according to Tamari’s smear campaign. You have Zedternal Reborn maintainers agreeing with the arguments, accepting this evidence and acting upon it. Are they also insane? Are they also spreading misinformation? Is this all a conspiracy against the truly innocent victims Tamari and FMX?
How bad is it to violate the GPL license?
What exactly constitutes GPL violation and how bad it is? It’s bad, it’s illegal, GPL conditions are enforceable legally under Copyright Law in many countries. But let’s review that question as applied to our situation.
GPL’s notice full quote:
Permissions of this strong copyleft license are conditioned on making available complete source code of licensed works and modifications, which include larger works using a licensed work, under the same license. Copyright and license notices must be preserved. Contributors provide an express grant of patent rights.
The idea behind protecting software projects with GPL is to protect the rights of their authors, the rights of the users who wish to modify these projects and the notion of working collectively on difficult problems being the best way to move the human civilization forward. Let’s break down each of these.
It’s natural for an author to want their creation to live. Humans are mortal, but their contributions to society may be not so much and definitely have higher chances to outlive their creators, if these creations are especially good. Software projects die often, become abandonware or become completely lost. One way to ensure the project lives even after its author exhausted their potential to work on it is to ensure that other people can maintain the project, advance it, fix the bugs and so on. They can’t do that easily enough, if the source code of the project isn’t available. Also, the project has to be protected from a malicious profiteer, who can hijack the project, modify the source to address most glaring issues, never release the source code for it and pretend that it’s their project. The story is as old as the hills. Needless to say that such a situation hurts the project and prevents its advancement if there are potential contributors exist who wish to work on advancing it, but the source code isn’t available to them. To address this, the GPL license maintains, that a modified project retains the license in full and, if released, must also have the source code for it made available, under the same license. Thus, by releasing their projects under GPL, such authors ensure that the chances are the highest that their project will live a long and a happy life.
This also ensures that the rights of users to modify the project as they see fit are protected. Say, how often, when using some especially egregious piece of software that likes to shove the opinions of its creators down your throat, you wished that you can just modify this small thing about it to make yourself happy, but you can’t? That’s often the case with MS Windows, for example. Or Killing Floor 2 game, since we are at it. Such situations have good outcomes, if there’s source code of such a software product available, so if you are annoyed enough you can get the source code, figure out the place where it doesn’t do the thing you need, modify it, compile it and there you go — you can use it the way YOU, and not someone else, prefer. And the availability of such source code is guaranteed to you by the GPL, if the product was licensed under it. But if not — you are out of luck and probably is locked into an inferior software product you have no hope to modify because it’s not free!
Not only that, but humans are finite in everything: their lives, their abilities, their work potential. Difficult problems the humanity faces can only be solved when working together, as working together can partially address the individual human limitations problem. This requires many things and among them is ability to advance the tools we have to solve these difficult problems the way we see fit, as inevitably some of us will have better ideas than others on how to advance these tools. We have to be in position to advance the tools needed to solve the difficult problems the humanity faces, if you wish, it’s a question of life and death of the human civilization. Everything that gets in the way of our ability to fix broken things is detrimental. Many proprietary commercial licenses or closed source licenses don’t allow potential contributors to advance the software products and thus hold the humanity back. There’s an argument that developing software has to be profitable to make people choose to engage in it, which is true, but this does not counter the fact that many proprietary software projects, while profitable for those making them, don’t do the best job at advancing the humanity forward the way some potential contributors see fit. Why not allow everyone capable to try and see who advances it best?
I hope 3 arguments above show that, arguably, free software licenses, such as GPL, do indeed help to achieve all these good things, which are ensuring that software projects live and get advanced forward, they don’t get locked by selfish profiteers, and do a better job at solving the difficult problems the humanity faces. Now with that, who are those people who take the free software, modify it, incorporate it into their projects from which they extract profits, refuse to adhere to the license and refuse to release the source code back to the community? These people engage in behaviors that are bad for society, in our case, are bad for the KF2 community.
Are GPL violations illegal?
Moreover, GPL violations are illegal. If one takes the source code of the GPL licensed project, modifies it and/or incorporates into a bigger project, releases this project, but does not provide access to the complete source code of the bigger project back to the community, this makes such activity illegal under the Copyright Law.
The author of such a GPL licensed project is the copyright holder for it, unless they transferred their rights to someone else, and if they released their project under GPL, all and any use of such a project by other parties is contingent on complying with the license. Which, as I’ve shown above, requires that the complete source code of any modifications of it is released with the project itself. But what if the violator doesn’t adhere to the license? There’s a standard course of actions:
A “cease and desist” message, e.g. over a chat message or email to inform the violator that they are violating the license and must either comply with the license conditions or remove the protected code from their project;
Seeking legal help from the “Free Software Foundation” — they have pretty good lawyers who oftentimes volunteer for a good cause and are very persuasive;
Bringing the case to the court of law.
If you don’t think this is serious, think again. There were plenty of high profile cases won, some claim that there’s 100% success ratio of enforcing GPL on non-compliant offenders across all countries of the Western World. Here are a few examples:
Fortinet, a firewall appliance vendor, after a long history of violations, after failing to negotiate the matter out of court, after failing to sign a cease and desist obligation, was indicted in German court in 2007 and was forced stop distributing its FortiOS which contained the stolen GPL licensed code — this means NO SALES, eventually they were forced to comply by making the complete source code available;
After the issue was brought to the court in the US against Cisco Systems, Inc. for GPL violations, Cisco, having grim prospects, decided to settle the matter with FSF outside of the court in 2009 by complying with FSF demands;
In 2018 the issue was brought to the court by CoKinetic against Panasonic who allegedly used Linux kernel in one of its embedded systems without adhering to the GPL license. The issue was settled out of court, as it typically happens.
As you can see, only the super stubborn companies wait for the indictment. And these are high profile cases that get publicity because of the impact and the amount of money involved, but our case is rather simple and I doubt it will ever get such publicity, but what I don’t doubt is that it’s winnable, like all of the above.
Does a GPL violation constitute code theft?
Yes, it does. The code is intellectual property. The author is the copyright holder and is the owner of this property. A use of intellectual property, such as modifying or incorporating the code, in violation of the license the property owner put forth to protect their property rights, is theft.
This particular term has been in use in the open source community in similar cases. Consider this example that also provides a good hint into how GPL works:
I said the app includes stolen code. It doesn’t matter if it’s 30 lines or 30 million lines: because it includes GPL code and you distributed the app, the entire thing needs to be GPL. If you release the entire app’s code, as I think you said you would, then that resolves the license violation.
https://ma.tt/2016/10/wix-and-the-gpl/
Consider another example:
“A paper to be presented at the upcoming academic conference Automated Software Engineering describes a new method to detect code theft and could be used to detect GPL violations in particular. While the co-called birthmarking method is demonstrated for Java, it is general enough to work for other languages as well. The API Benchmark observes the interaction between an application and (dynamic) libraries that are part of the runtime system. This captures the observable behavior of the program and cannot be easily foiled using code obfuscation techniques, as shown in the paper (PDF). Once such a birthmark is captured, it can be searched for in other programs. By capturing the birthmarks from popular open-source frameworks, GPL-violating applications could be identified.”
Is the “theft” term even applicable to the copied code?
Yes, it is. Yes, it’s easy to copy the code, the amount of energy spent is almost zero, so it makes one wonder, if both persons retain a copy of the code in the end, does this constitute property theft?
Intellectual property (IP) is a category of property that includes intangible creations of the human intellect. There are many types of intellectual property, and some countries recognize more than others. The best-known types are patents, copyrights, trademarks, and trade secrets. The modern concept of intellectual property developed in England in the 17th and 18th centuries. The term “intellectual property” began to be used in the 19th century, though it was not until the late 20th century that intellectual property became commonplace in the majority of the world’s legal systems.
The main purpose of intellectual property law is to encourage the creation of a wide variety of intellectual goods. To achieve this, the law gives people and businesses property rights to the information and intellectual goods they create, usually for a limited period of time. This gives economic incentive for their creation, because it allows people to benefit from the information and intellectual goods they create, and allows them to protect their ideas and prevent copying. These economic incentives are expected to stimulate innovation and contribute to the technological progress of countries, which depends on the extent of protection granted to innovators.
Wikipedia does a decent job to define it, but the main thing I wanted to emphasize here is work. Programming is hard, takes a lot of time and intellectual resources to drive even a relatively small project to completion. Would it be fundamentally fair if someone had to spend so much time and skill developing the project, if anyone could just copy and use it for free any way they want it? It would not, and such an unfair society would drag behind other societies where intellectual property rights would be protected such that the author of it can be rewarded.
Some authors are willing to put effort in developing relatively small projects for free for various reasons. They may enjoy doing it and live above the subsistence level anyway, and may be willing to do it because of the philanthropic intentions. So they aren’t concerned about getting paid, but still most authors are concerned about how their products are used. It is fundamentally fair for a society to protect the rights of intellectual property authors to determine the ways their property can be used by others. Some want to share it for free — fine. Others want to charge for use or charge a share for any profits made with the help of it — I can respect that as well. And a good thing is that the perpetrators that are being exposed here seem to live in the God blessed US of A, where intellectual property rights are respected by the society and thus violations of such rights can be punished either through legal action in the court of law or through naming and shaming in the court of public opinion.
There are major differences, however, between intellectual and tangible property, stemming from the ease of making copies of the intellectual property, which brings us to the next question, which is the abuse of this ease through proprietary licensing.
Big vendor proprietary licensors vs free software licensors
I’m not here to defend the big vendors who make fortunes by exploiting the fact that intellectual property is protected and easy to make copies of at the same time. This puts them into a position when they create once and sell millions of times the same thing with close to zero effort, unlike, say, car manufacturers who have to manufacture and sell each individual car. This puts them into a position when they don’t have to worry much about logistics, storage, shipping and so on, something that car manufacturers have to do. I’m not here to defend predatory DLC practices and such. There’s a big difference between proprietary software that gets probably too big of an advantage from the intellectual property situation and free software. Even Tripwire Interactive probably makes too much in terms of profits. John Gibson himself, the former president and CEO of Tripwire Interactive, said on Tucker Carlson’s show that regular employees were making enough to buy homes in just a few years of work at TWI. I’m not here to argue that their licenses or DLC practices are fair and we should all honor their intellectual property rights without a question.
Modders who protect their mods with GPL are in a completely different league. The amount of effort they put is sometimes comparable to what smaller studios put to make games. But modders are almost never in position to make money from their mods, it’s actually directly prohibited by KF2 EULA. They create these mods so we can enjoy playing them and do it for free. It is in our best interest, as both gamers and modders, as both consumers and contributors, to ensure that modding is promoted and quality mods are rewarded. Can we all do at least one little thing for them and respect the rights of the mod authors they put forth with their code to protect it from predatory practices and ensure their mods live long and happy lives?
TWI themselves most likely recognize this abusive relationship with modders situation when they make excuses for ripping them off in their EULA:
Tripwire Interactive got its start as a developer because of the support Epic Games provides to the Mod community and we wholeheartedly support the Modding of KILLING FLOOR 2. But we need to retain all of our ownership rights in KILLING FLOOR 2 and any works derived from KILLING FLOOR 2. That’s just the way it is.
That’s just the way it is, folks! At least they were honest enough to admit this conflict of interest situation right in their EULA. Why did they need to retain all of their ownership rights the way they did with their license? In order to make money, including the money they make indirectly through the success of mods to the game. Just check the first page of the gametracker.com I’ve taken just a few months ago:
These are the most popular KF2 community servers which participate in the gametracker.com rating. How many of them are unmodded? Exactly 1 (one), the one on the 15th spot. And even that is an assumption as the people behind this server may run some server-side only mods which aren’t as easy to detect as nothing gets downloaded. Which means that the modded KF2 experience wins the popularity vote over vanilla KF2 experience and by a huge margin at it. These players who play on these modded servers are more likely to be hardcore long retention players who put a lot of hours into it and who are more likely than casuals to invest in DLCs. This all is an unfortunate situation the modders find themselves in with this game. The modders put the effort in and TWI gets all the money from it.
Unlike these predatory licensing practices described above, the GPL license primarily protects the rights of modders to always be in position to modify the mod’s code for their needs, including versions of the mod that were taken earlier and modified by other authors. It requires that any modder who either modified this mod or incorporated it into a bigger mod MUST release the COMPLETE source code of their modified and/or bigger project under the same GPLv3 license. Legally, any project that uses even a tiny bit of GPLv3 licensed code becomes GPLv3 licensed. Here’s an entry from FSF FAQ on GPL talking exactly about this point:
A system incorporating a GPL-covered program is an extended version of that program. The GPL says that any extended version of the program must be released under the GPL if it is released at all.
Say, Alice releases some software product under GPL. Bob takes the sources, modifies it and compiles it for his own needs. It’s okay for him to do it and use it this way privately. However, the moment he decides to release this modified software product (i.e. upload to the workshop for people to subscribe to it), he also MUST release its complete source code and convey that the product is under GPLv3 license.
This is done so Charlie, who wants to develop the project even further, doesn’t have to fall back to Alice’s initial version and can start where Bob left off, that allows software to be kept up to date and not become abandonware. As long as someone capable is there to keep it going and there’s demand, this allows the software to live.
This has been a problem with the “Controlled Difficulty” mod development and inability to pick up at a point where the previous modder left the CD off has resulted in divergent and inconsistent builds all over the place. I really hope this gets resolved in the future and a good step here would be to release the most complete source code under GPL. In part, this unfortunate situation is a result of Blackout’s overlooking the licensing situation and not sharing the source code under GPL. If he did that, it’s very likely that we would have just one single and feature complete version of “Controlled Difficulty” with multiple contributors. Licensing issues may seem subtle and insignificant in the short run, but long term make a huge difference.
Thus, I’m not trying to convince you to go out of your way to buy all KF2 DLCs at $10 per each weapon or buy Windows 10 Pro Edition licenses for every family member in your household. I’m trying to convince you to invest into the modding future by respecting the rights of modders and the ways they protect the rights of the modding community as a whole. The GPL license here is just a tool to achieve that. Free software licenses protect the community. Proprietary software licenses protect the profits of big vendors. And conversely, disrespect those, who don’t respect the modders rights, who steal the code and profiteer from it.
FriendlyHUD KF2 mod code status: theft
Getting back to the evidence. FriendlyHUD is a mod for KF2 by peelz that displays the health/armor bars of one’s teammates on the HUD and also one of the first to introduce to KF2 the idea of showing the max amount of HP that will be healed over time right on the HP bar, something that TWI themselves implemented later. It has >8K subscribers and >800 favorites. Here’s the link of its workshop item:
It was released initially under GPL by peelz and its code was stolen, modified and incorporated into the Tamari’s and FMX ZEDModifications.u project in violation of the GPL license. When I contacted peelz about it, he admitted that my description of the situation was accurate, but he had retired from KF2 long time ago and wanted none of the drama that would follow an attempt to enforce the GPL license on FMX and Tamari. Instead of doing it he changed the license to LGPL. The only major difference of LGPL as compared to GPL is that LGPL allows for incorporation into bigger projects which may be kept proprietary, but it still maintains, that the code MUST NOT be modified, because if it is, the modified version MUST be released under LGPL as well, including its complete source code.
But, to make it tangible, lets do an exercise and confirm that FriendlyHUD was both modified and incorporated into ZEDModifications.u in violation of the license.
Go to the FriendlyHUD mod workshop page and click “Subscribe”. Wait for your Steam client to download it (it has to be running), depending on your download priorities it can take time or require a relaunch. You can track the progress in the the Library > Downloads section of the steam client.
Press a key combination Win + R to launch the “Run” window and enter this path %programfiles(x86)%\Steam\steamapps\workshop\content\232090\1819268190\BrewedPC, hit enter to navigate to the steam workshop folder of FriendlyHUD in Windows Explorer.
If you associated the “.u” file extension with UE Explorer during the installation double click on the FriendlyHUD.u file to open it in UE Explorer, or copy the path to the file in Windows Explorer, launch UE Explorer, go to “File”, “Open File…” menu, paste the path to the file and open it. Click the “Objects” tab and select the highlighted class.
Note the class name, variable names and the overall order of Script operators.
Download the Tamari’s ZEDModifications.u from here. It’s the Tamari’s mod version retrieved from the Steam workshop on 1/16/2023 which I rehosted on my website, because one could imagine Tamari and FMX would engage in covering their tracks by refactoring the foreign code or removing it, so the current version of their mod at the time of the reading may not contain all the problematic code. Open it in UE Explorer.
Note the class name, variable names and the overall order of UScript operators.
The question is: why do they look so similar? Did FMX come up with such a class name “FriendlyHUDMutator” by himself or he copied it from somewhere? Is it just a coincidence?
Of course not. The most plausible explanation is this: FMX and Tamari took the source code of the FriendlyHUD mod, modified it (as it is clear that there are some slight differences), incorporated into their mod, without adhering to the license that peelz tied to his project to protect his rights and rights of other modders and the community as a whole. This constitutes code theft, which FMX and Tamari both did and proceeded to collect donations from their players. Every time you see the health/armor bars on your HUD while playing on Tamari’s — you are relying on the stolen code running in the background. And that’s just a scratch on the surface, just one class and the beginning of it, there’s plenty of others as can be seen on just this screenshot.
Code similarity analysis basics
One quote and link above hinted at this already, but let me explain here in laymen’s terms how to do the code similarity analysis. That’s going to be another theoretical dry reading paragraph, feel free to skip if you aren’t interested.
Every programming language is somewhat similar to “Lego” toy construction sets. Some sets are more detailed and some are less detailed. The more detailed the toy construction set is, the less the likelihood that two independent kids working on their own ideas end up assembling the same structure down to a single brick or detail. It’s pretty much improbable. Well, programming languages are quite similar to very detailed “Lego” toy construction sets.
Moreover, imagine that kids working on their individual projects must have assigned names to each brick (say, had to write down the names on the bricks) and each bigger collection of bricks assembled for one purpose using their imagination. This makes the chances that the two kids would have assembled the two identical structures with all the names of the bricks being identical even lower than already pretty much non-existent probability.
But that’s what happens with “code theft” or “code plagiarism” cases. It’s a huge problem, for example, in universities on computer sciences programs, as students engage in copying each others work and just fetching something from the internet all the time. In the university I am familiar with, AFAIR, the submitted work had to reach just about 10% code similarity score in order to be rejected because of plagiarism. You could have 89% of the code submitted not marked for plagiarism, meaning that just 11% of your code was “borrowed”, and still had your work rejected.
Pretty much any university I know either builds an in-house code similarity analysis system or outsources it to someone else, one of the most famous one is the “MOSS” system of the Stanford University which is available for anyone to use free of charge. These are complex systems though, basically black boxes, which aren’t as clear how they work and may leave an impression of uncertainty to their results. For clarity of the Tamari’s operation case, I use very simple straight forward and easily verifiable basic observations. I encourage the reader though to follow up on this unexplored route, set up your MOSS access and have it analyze the classes or whole projects for similarity and report the results. But back to the basic code similarity observations.
Building block names. These are variable names, constant names, class names, function names — something that the programmer has to assign names to. Because of the human biodiversity, no humans are identical and they are very likely to come up with different names for pretty much any building block. Even one single block name coincidence is a red flag, but if we have many coinciding, they almost guaranteed had to come from one source for both analyzed code snippets. This is especially true for complex variable names that contain multiple natural language words. Good examples of it are names like ‘bShowZedTimeExtensionHUD’ or ‘MedicPendingLockOnColor’;
Order of operators. While for some steps in the execution flow of the program it’s important what positions they are on related to each other, for most it doesn’t matter, which step gets executed first, which gets executed second and so on. It’s similar to the addition operations in math, say, 1+2+3=6 and 3+2+1=6. In complex enough equations it becomes unlikely that different people working on them independently would use the operations in the same order, when the order didn’t matter;
The branching tree. This is the most advanced technique of the three. The names are relatively easy to change without affecting the program flow, but the flow itself, with all the cycles and if/then branches is very hard to refactor. Every program has its unique footprint of branching the execution flow dependent on unique conditions and is very hard to refactor. This technique is less convincing and that’s why I’m not going to use it, as building block names similarity is bulletproof stupidly simple and easy to follow.
You’ve seen already these techniques in use in 2 examples above, involving the stolen “Zedternal Reborn” code and the stolen “FriendlyHUD” code. Let’s break the flow of the dry theory with yet another example.
UnofficialMod KF2 mod code status: theft
UnofficialMod is a mod for KF2 by [Insert Name Here] that introduces some QoL and HUD improvements, such as zed time extension counters, dropped weapon info and ownership functionality, ability to prohibit other players from picking up your weapon and so on. It has almost 500 subscribers and >100 favorites. Here’s the link of its workshop item:
It was released under GPL by [Insert Name Here] and its code was stolen, modified and incorporated into the Tamari’s and FMX ZEDModifications.u project in violation of the GPL license. I’m still working on contacting the author of this mod (if you could help connecting us this would be highly appreciated), but given that he has retired from the game and probably doesn’t want to hear about it anymore, I’m not sure if I ever reach them. The copyright holder’s cooperation is required in order to initiate the legal action steps outlined above. However, the court of public opinion doesn’t require that and it’s enough to show the code similarity here to establish the theft situation and proceed to naming and shaming Tamari and FMX as stolen code profiteers, and everyone who donates to their operation and players who consistently play on their servers as stolen code situation enablers.
Note that the original UnofficialMod version published by its author is abandonware at this point and crashes the game, because of the questionable TWI updates that break the “userland”. So much for their claimed wholehearted support for modding in this game. There are working versions of UnofficialMod though available on the workshop, that were fixed and uploaded by other modders. Let’s analyze the last official version of it.
Go to the UnofficialMod mod workshop page and click “Subscribe”. Wait for your Steam client to download it (it has to be running), depending on your download priorities it can take time or require a relaunch. You can track the progress in the the Library > Downloads section of the steam client.
Press a key combination Win + R to launch the “Run” window and enter this path %programfiles(x86)%\Steam\steamapps\workshop\content\232090\1502948617\BrewedPC, hit enter to navigate to the steam workshop folder of UnofficialMod in Windows Explorer.
If you associated the “.u” file extension with UE Explorer during the installation double click on the UnofficialMod.u file to open it in UE Explorer, or copy the path to the file in Windows Explorer, launch UE Explorer, go to “File”, “Open File…” menu, paste the path to the file and open it. Click the “Objects” tab and select the highlighted class.
Note the compiled project name UnofficialMod.u, note variable names and the overall order of UScript operators in the highlighted area.
Download the Tamari’s ZEDModifications.u from here. It’s the Tamari’s mod version retrieved from the Steam workshop on 1/16/2023 which I rehosted on my website, because one could imagine Tamari and FMX would engage in covering their tracks by refactoring the foreign code or removing it, so the current version of their mod at the time of the reading may not contain all the problematic code. Open it in UE Explorer.
Note the class name, variable names and the overall order of UScript operators.
There are slight differences between the two, but both the variable names and the order of operators unquestionably show that they were very likely taken from the same source and this source is the GPL licensed UnofficialMod source code.
Why the small differences? Because the UnofficialMod was digested by their operation about 3 years ago and since then has been refactored and built upon to the point of when not that many traces are left in terms of building block names. But the branching logic, the order of operators and the functionality didn’t change much. Every time you use the “dp” commands on Tamari’s servers to prevent others from picking up your weapons you are actually invoking the functions of the code stolen from other authors in violation of their rights that they protected with the help of the GPL license. Every time while playing on Tamari’s servers when you check the zed time expiration icons on the HUD, you actually are looking at the results of the stolen code running in the background.
This will be the destiny of all the other stolen code mods, if you don’t stop Tamari and FMX from doing their thing. They will be slowly digested, refactored down to no resemblance with the original.
What’s interesting about the UnofficialMod is the depth of integration, unlike with most other stolen mods. At this point it will be pretty hard to remove the licensed UnofficialMod code from the ZEDModifications.u., especially if attempted in good faith.
Controlled Difficulty ChokePoints Edition mod code status: theft
Controlled Difficulty ChokePoints (CDCP for short) edition is one of the most feature complete and modern CD builds available. It’s authored by fanta. It has currently 193 subscribers and 39 favorites. Anyone can subscribe and run it locally or subscribe their servers and run on KF2 servers. Tamari’s CD build, conversely, isn’t available outside of his servers. The source code for CDCP project was never released for public use under any license. It’s not available to general public. Fanta was in his right of doing it, as he based his build on the original Blackout’s source code, which is unlicensed and thus in the public domain [see errata section]. It’s natural, however, to release the source code of the project when one retires from the game, as I’ve argued above, to ensure that the project can be maintained by someone else, so the project can live a long and a happy life. Fanta didn’t do that, however, in part, because of how offended he felt about the stolen code profiteering situation and the fact that the community tolerates it. I hope that this web site and this exposé of Tamari’s operation will bring this to an end. Here’s the workshop item page:
Unlike with other mods, what was stolen from CDCP was “Harder”/”Nightcore” zeds, which are mainly data, not code. The data, unlike the code, is much easier to recreate using the “cleanroom” approach without the code theft, so it’s relatively easy to argue that it was the “cleanroom” that was taking place, not the code theft. Some functionality, however, was coded and I’ve found at least one improbable similarity which is a piece of strong evidence for the code theft situation as opposed to the “cleanroom” redesign. Check this out yourself.
Go to the Controlled Difficulty ChokePoints Edition mod workshop page and click “Subscribe”. Wait for your Steam client to download it (it has to be running), depending on your download priorities it can take time or require a relaunch. You can track the progress in the the Library > Downloads section of the steam client.
Press a key combination Win + R to launch the “Run” window and enter this path %programfiles(x86)%\Steam\steamapps\workshop\content\232090\2052571175\BrewedPC, hit enter to navigate to the steam workshop folder of Controlled Difficulty ChokePoints Edition in Windows Explorer.
If you associated the “.u” file extension with UE Explorer during the installation double click on the Controlled_Difficulty.u file to open it in UE Explorer, or copy the path to the file in Windows Explorer, launch UE Explorer, go to “File”, “Open File…” menu, paste the path to the file and open it. Click the “Objects” tab and select the highlighted class.
Note the compiled project name Controlled_Difficulty.u, note variable and function names and the overall order of UScript operators in the highlighted area.
Download the Tamari’s ZEDModifications.u from here. It’s the Tamari’s mod version retrieved from the Steam workshop on 1/16/2023 which I rehosted on my website, because one could imagine Tamari and FMX would engage in covering their tracks by refactoring the foreign code or removing it, so the current version of their mod at the time of the reading may not contain all the problematic code. Open it in UE Explorer.
Note the compiled project name ZEDModifications.u, note variable and function names and the overall order of UScript operators in the highlighted area.
This may not look like a big deal and as blatant as the previously described violations at first, but the probability of this thing being developed independently is almost as low as the previous cases. But I admit that it was pretty hard to find this one, probably because FMX and Tamari treated this case differently than the others as they knew that the allegations of the stolen code exist and they wanted to ensure that no obvious traces are left, such as classes that would start with “CD” letters and so on. This assumes that the amount of the stolen code was much higher than available for analysis right now, but by now it has been refactored/reworked to the point where not that much is left. Since we are at it, I would appreciate if you shared the older versions of ZEDModifications.u, from 2021 or 2022 you may have somewhere in your backups, as there may be more evidence from the times before the rework. Feel free to comment here or reach out on Steam.
Another issue with “Harder” and “Nightcore” zeds is they are mostly data, as opposed to code, which as I mentioned previously, is relatively easy to reengineer as opposed to steal. Consider this example which is a “harder” gorefast. Doesn’t introduce any new functionality, just alters some values in the “defaultproperties” data section:
Some “Nightcore” zeds though introduce a little bit of new functionality and “bChainsawed” related functionality is the player losing moving speed if they get hit by a Scrake’s chainsaw. This functionality does not exist in the vanilla game and had to be created from scratch. I’ve interviewed fanta on this and according to him, he came up with this exact functionality, this exact function name and this exact variable name, when implementing the “Nightcore” zeds. That’s why we have this function in CDCP. But why do we have this exact function in ZEDModifications.u? Did FMX and Tamari come up with this independently and it’s just a coincidence? The chances that Tamari and FMX could come up with these exact same variable and function names, the functionality itself and the function itself are pretty much zero. The only difference in implementation is that FMX calls the function to update the movement speed from this function itself, while fanta probably does it from somewhere in the parent function from which the EndChainsawDebuff is called.
Just to make sure, here’s a result of searching for this string through all suspected codebases of dozens of mods including the CDCP and ZEDModificaitons.u for this variable:
As you can see, I get hits only in CDCP and ZEDModifications codebases. Nowhere else out of dozens of KF2 mods I’ve analyzed this variable can be found.
Here’s a search through the entire UScript Tripwire source code of the whole KF2 game, zero hits:
Here’s a search through the entire Google database of all cached words and their combinations in the entire world:
Zero hits. That’s how improbable it is that someone else could’ve come up with such a word combo. Just one word. But we have multiple pieces of coinciding things here: variable name, function name, function contents, functionality itself. Thus, this thing had to come from one source and this source is CDCP.
Know this: every time you play a game on Tamari’s servers, you are playing on the servers that run the code stolen from regular modders and gamers who tried to protect their creations and the rights of other modders by licensing them under GPL. Every time you play on Tamari’s with “Harder” or “Nightcore” zeds, you are directly relying on the stolen code. Shame on you. If you donate — it’s beyond pale. They aren’t stealing from some proprietary software billionaire. They aren’t stealing from TWI whose regular employees were buying homes in a few years of work there. They are stealing from modders who get nothing for their work, who do it for us for free just to improve our gaming experience, they are stealing the work of people like you and me.
Natural law vs codified law
Stealing the code from CDCP by decompiling and recompiling may or may not be legal. There was no license attached to this project. Depending on jurisdiction and circumstances the decompilation may or may not be illegal, but in the US in most cases it’s legal. Recompilation is a different story. The fact that it’s not illegal does not make it ethical though. Theft is still theft, as long as someone else’s property is abused in a way that wasn’t authorized by the property owner.
Codified law isn’t arbitrary, instead, it is based mostly on the natural law, which is widely established practices communities develop to deal with conflicts that are believed to be mostly beneficial for the community. The natural law typically can’t be enforced by the legal systems unless it’s also codified.
Intellectual property rights are fairly new to the mankind, mainly because prior to roughly the second half of the 20th century there was no way to create and exchange information so easily without tying it physically to some media, such as books, etc, so it was convenient to tie the value of information creations to physical media. Because the phenomenon is rather new, not all ways to interact with it were thought through properly and codified in law. This latency of the codified law not always following quickly enough the developments in intellectual property shouldn’t be a reason to claim that if something isn’t illegal therefore it’s okay to do it.
The effort was still put into creating the property which was then abused by another party against the wishes of the property owner, not explicitly expressed in a legal way. Obviously, neither Tamari nor FMX ever reached out to fanta to check if he’s okay with such a use. “Harder”/”Nightcore” zeds are a relatively big part of the changes introduced by CDCP to the bare Blackout’s CD. Let’s do rough back of the napkin calculations here of the amount of effort put.
Consider a regular (not TWI) game developer salary in the US. Let’s say, that the developer is a wagie. Roughly we have 2K work hours per year. This gets our developer to a $36/hour wage. Say, fanta spent 200 hours developing CDCP. Not counting gaming time, which is necessary to make correct balance decisions. Let’s just assume that he magically knew how to advance the game balance-wise. Let’s say that “Harder”/”Nightcore” zeds comprise 1/4 of the effort, thus, they took 50 hours to develop. This puts the amount of effort roughly in the $1,800 range to develop “Harder”/”Nightcore” zeds and that’s likely the absolute bottom of the required effort.
But fanta hasn’t spent that time wageslaving for a soulless corporation at a soul-crushing job as software developer, as he could’ve. Instead, he worked on this mod for free, just so we, the community of KF2 players, could have more fun playing this game. How did we reward him for his efforts? By donating to the stolen code profiteers and playing on said profiteers servers, validating these people’s shameless code theft. Fanta’s work was shamelessly stolen from him, modified, incorporated into a bigger project in order to collect donations.
There’s probably also a lesson here, both for fanta and Blackout. If they released their mods under GPL, instead of releasing them unlicensed, there would be 1) a legal course of actions available to ensure the mod is used the way the author wanted 2) a chance that someone honest picks up the mod maintenance.
YetAnotherScoreboard KF2 mod status: theft
“YetAnotherScoreboard” is a mod by GenZmey. It replaces the default in-game KF2 scoreboard with an extended and customizable scoreboard. >500 subscribers, >80 favorites. Hilariously, GenZmey based his work on GPL-licensed FMX’s mod called “ClassicHUD”, more on this later. It was released under GPL by GenZmey and had its code stolen, modified and incorporated into the Tamari’s and FMX ZEDModifications.u project in violation of the GPL license.
I’ve been in contact with GenZmey for a while and worked with him on establishing the situation. He agreed that the information I’ve provided is accurate and was taking his time to decide what to do with it as he was busy with retiring from gaming and decommissioning his own KF2 server operation. Also, there’s a war going on over there and there’s a literal military draft. While that was happening, FMX reached out to him preemptively and, according to GenZmey, promised to fix the things going forward. I totally welcome this move by FMX, let’s see how it develops.
Go to the Yet Another Scoreboard mod workshop page by clicking the link above and click “Subscribe”. Wait for your Steam client to download it (it has to be running), depending on your download priorities it can take time or require a relaunch. You can track the progress in the the Library > Downloads section of the steam client.
Press a key combination Win + R to launch the “Run” window and enter this path %programfiles(x86)%\Steam\steamapps\workshop\content\232090\2521826524\BrewedPC, hit enter to navigate to the steam workshop folder of Yet Another Scoreboard in Windows Explorer.
If you associated the “.u” file extension with UE Explorer during the installation double click on the YAS.u file to open it in UE Explorer, or copy the path to the file in Windows Explorer, launch UE Explorer, go to “File”, “Open File…” menu, paste the path to the file and open it. Click the “Objects” tab and select the highlighted class.
Note the compiled project name YAS.u, note variable and function names and the overall order of UScript operators in the highlighted area.
Download the Tamari’s ZEDModifications.u from here. It’s the Tamari’s mod version retrieved from the Steam workshop on 1/16/2023 which I rehosted on my website, because one could imagine Tamari and FMX would engage in covering their tracks by refactoring the foreign code or removing it, so the current version of their mod at the time of the reading may not contain all the problematic code. Open it in UE Explorer.
Note the compiled project name ZEDModifications.u, note variable and function names and the overall order of UScript operators in the highlighted area.
While there are slight differences due to digestion of the foreign code into a bigger project, the similarity is obvious. Go ahead and google the “DrawTextShadowHVCenter” word and report your findings. Such function names are great for such analysis, because they are comprised of multiple words and the chance that two independent humans can come up with something like that are pretty much zero. This is just 1 random function I chose from a list of dozens coinciding function names that exist in both YAS.u and ZEDModifications.u project and nowhere else, including the “ClassicHUD” mod, which YAS was initially based on. Anyone can easily expand on this by choosing some other coinciding function or variable name out of dozens and hundreds and find similarities.
Yes, YAS is based on FMX’s own ClassicHUD, so I’ve analyzed only variables and function names that are present in both YAS and ZEDModifications, but not in ClassicHUD. FMX obviously is in his own right to reuse his older functions from the ClassicHUD. And, to repeat this a bit, just compare the appearance.
From Tamari’s server:
From the workshop item description of the Yet Another Scoreboard mod:
This screencap from the YAS description on the workshop misses the custom content of the YAS which is located below the scoreboard. On Tamari’s servers they channel !cdstats output there, but one can put pretty much anything in this area.
Every time you check the scoreboard on Tamari’s servers to see what’s going on you are actually invoking the functions of the code stolen from other authors in violation of their rights that they protected with the help of the GPL license. Good job, I hope you feel great about it, keep it up.
It may worth expanding a bit here, as both GenZmey and Tamari & FMX, until recently, were in quite a similar position with each other. Both were major KF2 server hosters, running more then a dozen servers each. Both were active modders and pretty productive ones at that. Except only one thing. Answer me this question: why Tamari and FMX are in position to run GenZmey’s mods on their servers, while GenZmey can’t run FMX mods on his servers? And the answer is obvious, because Tamari and FMX steal the code and don’t give their modifications back. Tamari’s gaming experience is only available for those, who play on Tamari’s servers and cannot be had otherwise. Why?
FMX contributions under GPL history
This naturally brings us to the question why aren’t they giving much back. FMX isn’t new to modding and released a good number of mods under GPL himself, so it’s hard to argue that he doesn’t know what it means or how it works. Let’s check his github contributions history and see if we can notice any patterns. Consider these set of screencaps of FMX activity, calculated by a number of code uploads per year, year after year, starting with 2016, taken from his github page located here. Most of his contributions are KF2 related.
Something clearly happened in 2019 and there could have been many factors that contributed to the abrupt decrease of activity on github. But hear out my speculation what that may have been.
Github is a web service that runs behind the scenes the “Git” software, which is a version control software developed by the amazing Linus Torvalds which should have been awarded a Nobel prize long time ago. Basically it’s a huge world-wide mainly open-source code repository. It’s natural for people who share the code of their projects under GPL or other free and/or open-source software to upload their code there, it’s free for this purpose and very convenient. It’s not so convenient for managing the proprietary code though. Or, at least, one can manage the proprietary code, but not share it.
We also know that Tamari started his server operation around 2019/2020 timeframe.
We also know that Tamari’s servers mainly run FMX mods or mods that were “borrowed” and adopted by FMX into their main mod.
We also know that the modded experience on Tamari’s servers kept being improved during all the time since the start of their operation.
My speculation is Tamari convinced FMX to work proprietarily and turn it into a joint operation between the two. The goals here could have been many and different, but one of them is also well known and apparent — to collect donations from players. Whether it was an ego thing, or was it a donations thing, or something else, but I think that they really wanted their operation to be the best of a kind, to provide the best modded experience in this game possible. Too bad, they decided to play dirty, to do it in an unfair way, by engaging in code theft and by not sharing their mods back, so their competitors couldn’t run similar servers. Could it have been the reason FMX stopped contributing any open source mods? I say it’s very likely.
That’s why I don’t have much grudge against FMX. In all that story I think he’s more of a misguided individual. Tamari — not so much.
Unofficial KF2 patch situation
Since we are at it, notice a few contributions from FMX in late 2022. These are a so called “Unofficial KF2 Patch” release and further updates to it. I’ve written about it in my Steam group. The way this mod was released resembles this whole stolen code operation situation pretty well. Here’s how it developed:
FMX releases the patch. It incorporates modified free software mods. Some are these same mods that are abused on Tamari’s: FriendlyHUD, YetAnotherScoreboard and so on;
I and maybe others about which I can only speculate confront FMX on this. He admits the situation and addresses it by tying all these previously incorporated and modified mods as independent mods his mod relies on and gets his mod users automatically subscribed to the original versions of these mods, which resolves the issues with the GPL license and makes his mod clean regarding the GPL violations of these dependent mods;
He releases the source code of the Unofficial KF2 Patch, although not complete, but that’s a good start.
Although he didn’t do the right thing at the beginning and it took pressure for him to do the right thing — he eventually did it right. Somewhat late, yes, as all that had been in use on Tamari’s for a long time before he decided to share anything back with the community at least in a form of the ready to use workshop item. I hope that he approaches his stolen code problem on Tamari’s in the same way he did with the Unofficial KF2 Patch, specifically, detaches the GPL licensed mods from his own mods, subscribes his users to these mods independently, if these mods need to be modified — he modifies them and releases newer versions under GPL.
Possible and impossible alternative explanations of the situation
Tamari keeps denying the stolen code situation. Ridiculous, but okay. Some may say: “Well, yeah, the code similarity is pretty convincing. Just can’t be that it was a coincidence. It had to come from one place. But maybe it’s the opposite — all these people stole the code from Tamari and FMX!”
If it was the case, it would be likelier that people who engage in code theft would have stolen it from other modders as well. But did they? They didn’t. Moreover, [Insert Name Here] and peelz retired roughly at the time Tamari was starting his operation. They haven’t updated their mods since then. What they were to gain if they did steal? Nothing, makes no sense. GenZmey’s reputation is impeccable. Solid record of publishing everything he develops under GPL. Fanta? Here’s a nice story about it. As I mentioned above he’s the author of CDCP mod which he developed from the initial Blackout’s CD unlicensed source code. But at the time he started working on it, there was a much more feature rich “Eternal” build of CD, developed by Hunter. Why not start from Eternal? Good idea, from what I know fanta or people from his group approached Hunter and he told them no. CD Eternal is proprietary. Tough luck! Well, guess what, did fanta go and just rip the Eternal build off and steal the code? No. He took a “no” like a man and started from the ancient Blackout’s build and worked from there and contributed an impressive amount of functionality, CDCP is roughly 3 times bigger than Blackout’s original CD if counted in the lines of code. Nobody blamed him for any code theft as far as I know and nobody pointed out even functionality similarities between Eternal and CDCP builds, except the obvious common base by Blackout. After all that, would he just go and steal from Tamari and FMX? Seems unlikely. Zedternal Reborn maintainers reputation is, as far as I know, impeccable. They seem pretty professional, document their project very well, and release it under GPL, as every KF2 modder should.
The only other remaining possible explanation is just a coincidence. FMX and Tamari are 100% honest people and just it so happened that literally hundreds of function names and variable names and class names and operator order and branching are matching between theirs and half a dozen of other projects. If you believe that I have a nice bridge to sell you.
I also know that FMX talks to the authors of some of the mods mentioned here and promises to cooperate in order to make the things straight with the licensing, e.g. check the screencap above from the Zedternal Reborn maintainers discord. That implies that he admits the situation and plans to take steps to address these issues.
Scripts to analyze the variable and function names similarity
Yeah, I went ahead and composed a crude script for this. Below are the PowerShell scripts for finding similar function names and variable names. Then I open them in LibreOffice calc and do additional magic such as removing duplicates, pivoting and such.
$firstvarmatches=get-childitem -recurse -include *.uc -path "C:\Program Files (x86)\Eliot\UE Explorer\Exported\YAS"|select-string -pattern "var"|select-object line -expandproperty line
$secondvarmatches=get-childitem -recurse -include *.uc -path "C:\Program Files (x86)\Eliot\UE Explorer\Exported\ZEDModifications"|select-string -pattern "var"|select-object line -expandproperty line
$matcharray=@()
foreach ($firstvarmatch in $firstvarmatches){
$firststringarray=$firstvarmatch -split ' '
$firstlastword=$firststringarray[$_.length-1]
foreach ($secondvarmatch in $secondvarmatches) {
$secondstringarray=$secondvarmatch -split ' '
$secondlastword=$secondstringarray[$_.length-1]
if ($firstlastword -eq $secondlastword) {
$matcharray+=New-Object -typename psobject -Property @{
firstvarname=$firstlastword
secondvarname=$secondlastword
}
}
}
}
$matcharray|export-csv -NoTypeInformation -path c:\temp\varnames-yas.csv
If you run them, do your due care and change the file paths and file names. Again, these are crude and there are very obvious ways they could have been optimized, but it’s not worth the effort as they are supposed to be run once for each pair of codebases and they do it quickly enough. The end result looks like this.
The foreign code table
Here’s a table I use to track down the situation and it’s still work-in-progress at this point, it’s clickable if you need to zoom it in on your device. This also does some basic calculations on the foreign code share in this project. I assume here that some of the mods are reused in full, e.g. the UnofficialMod or YetAnotherScoreboard, which is very likely to be the case. A more accurate approach would be to calculate by the share of coinciding function names and lines of code in each function, but this script isn’t ready yet and may be not even needed at this point, as I think that the effort that was already put into exposing the stolen code operation should be convincing enough. But if not, I can work on this more. As you can see there’s a lot of question marks there.
Well poisoning: the impact on collecting donations
Now, consider this. Let’s suppose that you think: “Yeah, I’m probably convinced. Those visual similarities always nagged me a bit. And those allegations. And these screencaps kind of prove it, don’t they? They do, but now what?”
Good question. Now the donations well is very well poisoned so to speak. Suppose you were one of the Tamari’s donators. And you are an honest person deeply appalled by this code theft situation and even more so by Tamari’s hypocrisy. You’ll think twice next time before you decide to donate to any other server operation to support its further development, because who knows after all that, right?
So if people like myself (no plans to do it) or, say, GenZmey decided to set up a donations shop to help us with the server bills (hundreds $ per year for premium VMs as unlike pretty much any other service, online gaming is VERY sensitive to any network/performance disruptions) or to feel rewarded for modding work or just volunteer time so we can delegate some work on keeping the operation up — it’s very likely that the players would be LESS likely to donate or contribute or volunteer because they, after learning all that, will become MORE hesitant about spending their resources on such operations.
Good job, Tamari, I’d like to thank you from all the server hosters in this community, who may have thought about it, but now our prospects aren’t as bright.
Well poisoning: the impact on KF2 modders and veterans
Now, consider fanta’s retirement. Or GenZmey’s retirement. After all the hours put and all the work they’ve done. Why did they? Well, it’s typical that there are many factors, some are more important, others less, but a simple question — does it make the modders more likely to retire if they witness their mods stolen, ripped off literally through decompiling and recompiling and then abused in collecting donations? Does it make them more likely to withdraw from the community that tolerates this?
Do we have a veteran modders mass retirement epidemic just because of that one thing? So whenever you see someone from the list of the authors of the affected mods retiring please know that Tamari’s and FMX played their role in it.
But in some cases they asked the authors if they can use their code!
Yes, I know that FMX asked, for example, GenZmey, if he can use his code. Hey man, can I use your code? Yes, sure, go ahead. Does such an exchange mean that now FMX’s hands are not tied by the license and he can do with this code whatever he wants? Of course not. It all means that just yes — go ahead and use it CONTINGENT ON COMPLYING WITH THE LICENSE CONDITIONS. Period.
Conclusion
I hope that it was enough to prove the situation with a very high bar for the evidence quality. It really is this way and the description above is pretty accurate. Moreover, it’s just a scratch on the surface, there’s probably more to it that I wasn’t able to find and maybe I’ve missed some mods that were also ripped off. It’s a shame that instead of working on modding this game together and inspiring each other with our diverse approaches to modding we have to engage in this cannibalistic war that doesn’t benefit anyone.
Still, wrong decisions were made. Bad deeds were done. Facts became known. This had to be exposed for the benefit of the whole community, as a learning experience on how licensing works and what constitutes code theft, as a learning experience on respecting other modders and the rights they have over their intellectual property and as a warning for others not to make similar mistakes.
I realize that most gamers won’t ever read this as they often can’t be bothered to read even the server name they join to play the game in a lot of cases. I am just going to hope that people will keep referring to this story in DMs and chats, so more players become aware, especially those that donate and/or play on Tamari’s.
Some don’t care about the intellectual property theft or any property theft whatsoever and would have done the same if they were in position to do that. If they didn’t listen to fanta, will they listen to me? Of course not.
Others will just brush it off with “didn’t have time to read it thoroughly, but Tamari told me that Carl is an asshole and his case is insane, so I’m good to go here”.
One of the most annoying things in this story is Tamari’s hypocrisy. Up to this very moment he denies the stolen code situation. Despite FMX already working with the authors behind the scenes to address the licensing issues. Despite all these code similarities found and presented to the authors of these mods who did their own research and found this description of the situation to be accurate. Despite that Tamari himself probably planned all that years ago and being a mastermind behind this operation. Instead, he engages in a smear campaign against me and fanta and puts pressure on his frequenters with his authority. He bans people from his discord/servers for discussing the stolen code situation in other forums. According to Tamari it’s me who steals the code and plans to steal it, which is the backwards reasoning for them to not share the code back with the community, because if they did I would steal it. What kind of reasoning is this? There’s zero evidence of me stealing the code, of course, and my reputation in this game is impeccable. According to Tamari it’s me who is an asshole here and whose case is insane. Tamari and his acolytes go out of their way to read my post history on steam and dig any dirt they can find. For example, I’m a “misogynist” because according to what they’ve found I share some Christian church views on the question on if women are equal to men, haha. Or that I’m a “white supremacist” because I use the word “white”, haha. Turns out that’s a white supremacist dog whistle. Well, in reality these are just smear words.
All that is cringe nonsense and nothing else, but a common tactic of this type of people, I quote: “Accuse your opponent of what you are doing, to create confusion and to inculcate voters against evidence of your own guilt.” That’s exactly what he’s doing here. If I were you I would start questioning what else he may have lied about, if he lies about this?
What’s important is what happened in reality and what is true. It’s important to share the truth and that’s what I do here. I’ve verified all the claims made here to a somewhat good degree of certainty and found no major inconsistencies. I’ve interviewed probably up to a dozen various players who were either mod authors or seemed to know about the subject the most. I’ve even tried to befriend FMX on day X to confront him about this situation, but he declined my friend request. Who knows, if he accepted, this story may have ended up not being shared. But he didn’t. People who value the truth, the whole truth and nothing but the truth should read this and make their own mind about it. People who are fed up with all the corruption in this world and are looking to make things straight. Moreover, all of that can be independently verified and some of that was already independently verified by the contacted mod authors and found to be accurate.
This is just the first part, we are far from the end. Amazingly enough, this stolen code situation isn’t actually the biggest drama of all times in the KF2 community, as even more ridiculous and sinister things have happened which I’m going to expose later, stay tuned and bookmark this website.
Errata
It was pointed out to me by a KF2 veteran, who these days prefers to be called “Lucid”, that an unlicensed open-sourced project doesn’t count as “public domain” code. Moreover, I was referred to Blackout’s own conditions on the way their project can be used, which may or may not be counted as a custom license in a court of law. Here’s what they had to say about this in their own words:
Thanks for asking. I understand that, regardless of what I want or say, the source for CD is open and the code can be extracted from the .u package. So people can technically do what they please with it. But I appreciate and prefer being asked just like this.
I followed up with OldSchool on steamchat to hear a bit about his plans. It sounds like he’s combining multiple mutators and gametypes. It’s an ambitious noncommercial project. You have my permission to use CD on it.
I do prefer when people acknowledge my work and ideally make their own modified code open-source in the same way CD is open-source. That’s not a hard requirement, because I’m not crazy enough to waste resources trying to enforce a legal license on CD. It is only a suggestion.
If someone else comes across this thread later, thinking about using CD for their own, separate project, please do get in touch with me. I’m generally permissive; basically, as long as you’re not trying to rip off CD and charge or monetize people to play my code, I’m probably going to say yes.
They basically admit here that technically there’s a possibility of their code being taken and used by someone else. Technical possibility doesn’t imply that it is legal or ethical to do that. And this definitely would be against the clearly stated intention of the author if their mod was used in such a way.
They clearly wanted any modifications to their project to be done in these specific ways:
A modification to Blackout’s “Controlled Difficulty” is preferred by its author to be open-source, but Tamari’s operation isn’t;
If such a modification is made, Blackout prefers if he’s contacted with a request for explicit permission to use it in a proposed way, it’s not clear if Tamari did it;
Blackout explicitly mentions that they aren’t likely to permit a use of their code, if the modification project based on CD is a ripoff and monetizes it.
Tamari and FMX clearly don’t adhere to the requirement of making any modifications open-source and I’ll let the reader decide if Tamari’s use of CD satisfies the other intended uses of the CD project and would Blackout have permitted such a use.
Blackout also mentions that they aren’t crazy enough to waste resources trying to enforce a legal license on someone’s abuse of the CD code. Well, I might be, let’s see how it develops!
8 thoughts on “Tamari’s servers: the stolen code profiteering”
how dare you censor me carl.. (cooper henderson again)
The Admins troll too much by changing rules etc, And ruin people’s gameplay, That’s a shame. Since it’s the Best server to play precision perk in my opinion.
Was pretty obvious that he had some dirt on him because I kept seeing more and more additions over time from servers that had them exclusively, also explains why I don’t see a lot of veteran players on his servers for exactly that reason, it’s all meshed together and ripped out of its actual function for specific servers, teams and players.
Forrest and Tamari acting high and mighty, especially in combination of their reputation which gives them a free mob to throw at others at will, really puts the cherry on top.
Quite the long read that took me a few days, but very worth your time of you want to understand the scope of how scummy Tamari (and his servers) truly are.
how dare you censor me carl.. (cooper henderson again)
who up stealing they code
I dindu nuffin, never stole code.
Any update on stolen codes and stuff Carl?
Almost time!
The Admins troll too much by changing rules etc, And ruin people’s gameplay, That’s a shame. Since it’s the Best server to play precision perk in my opinion.
Was pretty obvious that he had some dirt on him because I kept seeing more and more additions over time from servers that had them exclusively, also explains why I don’t see a lot of veteran players on his servers for exactly that reason, it’s all meshed together and ripped out of its actual function for specific servers, teams and players.
Forrest and Tamari acting high and mighty, especially in combination of their reputation which gives them a free mob to throw at others at will, really puts the cherry on top.
Quite the long read that took me a few days, but very worth your time of you want to understand the scope of how scummy Tamari (and his servers) truly are.