How can I play erepublik like turks?

Day 5,385, 13:47 Published in Cyprus Cyprus by Isr heil

evet kankiler malum sahsin annesi aradi diyor evladim ortaliga meze oldum lutfen beni kurtar ben de tabii her turk erkegi gibi dardaki bayana pardon kadina yardim etmem lazim diyerek asagidaki scripti yazdim bunu tampermonkeye ekleyin bir daha ne post ekranini ne de mesaj ekranini gorun alsin onlari malum sahis harfine noktasina kadar bir tarafina ....


this article is dedicated to you know who's mother.
if you add this code blocks on tampermonkey, you will play erepublik like us cause you know who doesnt love his mother and he always want to hear bad words against his mother so turkish players never use the post screen or message screen. anyway, if you want to play like us, you must add it on tampermonkeyxd

// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.erepublik.com/en
// @icon https://www.google.com/s2/favicons?sz=64&domain=erepublik.com
// @grant none
// @run-at document-end
// =😕UserScript==

(function () {
'use strict';
const list = ["messagesAjaxContainer", "citizenFeed", "articleComments", "subscribe_comments"];

for (const item of list) {
let element = document.getElementById(item);
if (typeof element !== 'undefined' && element !== null)
element.style.display = "none";
}

})();