Got it to work. Thanks a lot 0x029A!
I can describe the process step by step maybe it helps:
1. Open the ExiledBot.dll in a hex editor and search for b9 00 00 40 04.
2. Replace b9 00 00
40 04 with b9 00 00
00 00 and on the next line b9 00 00
c0 04 with b9 00 00
00 00. Save and close the editor.
3. Create a folder in C:\ and name it
community. Open that folder and create another folder and name it
interface. Open that folder and create a new text file. Open it and copy this into it:
Code:
<?php
header("Content-type: text/xml; charset=utf-8");
$xml = file_get_contents('php://input');
if(strpos($xml,"activate") !== false) {
echo '<?xml version="1.0" ?>
<methodResponse>
<params>
<param>
<value>
<struct>
<member>
<name>RESPONSE</name>
<value><string>OKAY</string></value>
</member>
<member>
<name>USAGE_ID</name>
<value><int>1</int></value>
</member>
</struct>
</value>
</param>
</params>
</methodResponse>
';
} else {
echo '<?xml version="1.0" ?>
<methodResponse>
<params>
<param>
<value>
<struct>
<member>
<name>STATUS</name>
<value><string>ACTIVE</string></value>
</member>
<member>
<name>USES</name>
<value><int>1</int></value>
</member>
<member>
<name>MAX_USES</name>
<value><int>100</int></value>
</member>
</struct>
</value>
</param>
</params>
</methodResponse>
';
}
?>
Save the file as
licenses.php.
4. Press the Windows Button + R to open the run command. Enter cmd, a little window should pop up, type ipconfig and press enter. Look for your internet adapter and look at the
IP-Adress line. Write this adress down.
5. Go to your
C:\Windows\system32\drivers\etc\ folder and open the
hosts file in a text editor. Add a line at the bottom and write the ip-adress you just wrote down and then exiled-bot.net like this:
Code:
your ip-adress exiled-bot.net
For example:
Code:
192.168.0.2 exiled-bot.net
Save and close the hosts file.
6. Download the quick php server from

, copy it somewhere and open it.
Put
your ip-adress, the one you wrote down earlier, in the field
Binding IP-Adress and in the field
Port the number
443. Now click start.
7. Open up Exiled Bot and it should say Elite User.
Good luck with it! Hope this helps.