<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Forums - Modeling]]></title>
		<link>https://elijahketchersid.com/forums/</link>
		<description><![CDATA[Forums - https://elijahketchersid.com/forums]]></description>
		<pubDate>Wed, 13 May 2026 14:01:36 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[[Archive] Field of View editor for 32-bit WoW clients.]]></title>
			<link>https://elijahketchersid.com/forums/thread-8824.html</link>
			<pubDate>Tue, 04 Nov 2025 12:44:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://elijahketchersid.com/forums/member.php?action=profile&uid=1">fosley</a>]]></dc:creator>
			<guid isPermaLink="false">https://elijahketchersid.com/forums/thread-8824.html</guid>
			<description><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: fosley • Posted: 2025-11-04T13:44:42.218398</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/963838-field-of-view-editor-32-bit-wow-clients.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>							I built a probably-terrible editor that modifies a few bytes in the Wow.exe client program to modify the field of view. I've got it working on Vanilla 1.12.1, TBC 2.4.3, Wrath 3.3.5a, and MoP 5.4.8 32-bit. I don't currently have a Cata client or server setup to test, or anything newer than MoP. And it doesn't work on 64-bit stuff yet.<br />
<br />
I put it up on GitHub, here: <a href="https://github.com/fosley/WowFovChanger" target="_blank" rel="noopener" class="mycode_url">WowFovChanger</a>.<br />
<br />
Or you can download it here: <a href="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/80251d1645881903-field-of-view-editor-32-bit-wow-clients-wowfovchanger-zip" target="_blank" rel="noopener" class="mycode_url">WowFovChanger.zip</a><br />
<br />
1. Open the executable, click the [...] button in the upper-right.<br />
<br />
2. Browse to your Wow.exe executable and open it.<br />
<br />
3. If it matches a version I added to the list, it will tell you the filesize and version, as well as get the current FoV. FoV is listed in degrees, which are very approximate, and raw units.<br />
<br />
4. Vanilla and TBC seem to have a different scale than later clients, and default to about 65° compared to new clients that are closer to 80°, but the default data accounts for that so you should be able to just type your desired FoV.<br />
<br />
5. A bunch of info shows up when you select a supported executable so you can see it, but it isn't necessary unless you're trying to compare things.<br />
<br />
6. Enter an FoV in the "New FoV" textbox at the bottom, in degrees. Degrees are horizontal, done on a 16:9 setup. If you have a different ratio it will probably throw things off, but you can still play with it.<br />
<br />
Warning: I didn't put a lot of effort into error checking, so use at your own risk. The program does make a backup copy before it tries to change anything, so hopefully it won't do any permanent damage. I didn't put any checks in place, so you can probably do stupid things like -1million° FoV, which probably won't work well. I would expect values between about 5 and 170° would work, but I didn't really push the limits to find out. 20° and 110° worked for me on all clients.<br />
<br />
If you bork it, you can just hit Default then Apply and it should set the exact bytes the program started with and get you on track.<br />
<br />
I got a bunch of the info from other threads <a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-memory-editing/396751-fov-wow.html" target="_blank" rel="noopener" class="mycode_url">here</a> and <a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/617657-vanilla-1-12-tbc-2-4-3-permanent-fov-fix-patched-wow-exe.html" target="_blank" rel="noopener" class="mycode_url">here</a>, so thanks to everyone who posted useful information there.<br />
<br />
There was some misinformation though. The FoV value is a 32-bit, single-precision float, in little endian format. Which is 4 bytes. The first 8 bytes given on the other thread were useful in finding the 4 bytes I needed, but you don't need to modify 8 or 10 bytes of data. That's also why people were having trouble converting to a meaningful float value from hex. I find it interesting that the default values are all pi/2, but I couldn't do anything useful with that information. It's not like they did 2pi radians for a circle and pi/2 radians is 90°, unless there's some other conversion factor I'm not seeing.<br />
<br />
The program uses a .dat file in its folder to figure out where to look, so if you can find offsets for other 32-bit clients, you can edit the file to make the program look there. If you post them here, I'll try to edit the GitHub file so it has more targets for more people. But I'm lazy and probably won't check this site a bunch, so maybe post them on GitHub. Not that I check GitHub much either.</blockquote>
]]></description>
			<content:encoded><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: fosley • Posted: 2025-11-04T13:44:42.218398</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/963838-field-of-view-editor-32-bit-wow-clients.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>							I built a probably-terrible editor that modifies a few bytes in the Wow.exe client program to modify the field of view. I've got it working on Vanilla 1.12.1, TBC 2.4.3, Wrath 3.3.5a, and MoP 5.4.8 32-bit. I don't currently have a Cata client or server setup to test, or anything newer than MoP. And it doesn't work on 64-bit stuff yet.<br />
<br />
I put it up on GitHub, here: <a href="https://github.com/fosley/WowFovChanger" target="_blank" rel="noopener" class="mycode_url">WowFovChanger</a>.<br />
<br />
Or you can download it here: <a href="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/80251d1645881903-field-of-view-editor-32-bit-wow-clients-wowfovchanger-zip" target="_blank" rel="noopener" class="mycode_url">WowFovChanger.zip</a><br />
<br />
1. Open the executable, click the [...] button in the upper-right.<br />
<br />
2. Browse to your Wow.exe executable and open it.<br />
<br />
3. If it matches a version I added to the list, it will tell you the filesize and version, as well as get the current FoV. FoV is listed in degrees, which are very approximate, and raw units.<br />
<br />
4. Vanilla and TBC seem to have a different scale than later clients, and default to about 65° compared to new clients that are closer to 80°, but the default data accounts for that so you should be able to just type your desired FoV.<br />
<br />
5. A bunch of info shows up when you select a supported executable so you can see it, but it isn't necessary unless you're trying to compare things.<br />
<br />
6. Enter an FoV in the "New FoV" textbox at the bottom, in degrees. Degrees are horizontal, done on a 16:9 setup. If you have a different ratio it will probably throw things off, but you can still play with it.<br />
<br />
Warning: I didn't put a lot of effort into error checking, so use at your own risk. The program does make a backup copy before it tries to change anything, so hopefully it won't do any permanent damage. I didn't put any checks in place, so you can probably do stupid things like -1million° FoV, which probably won't work well. I would expect values between about 5 and 170° would work, but I didn't really push the limits to find out. 20° and 110° worked for me on all clients.<br />
<br />
If you bork it, you can just hit Default then Apply and it should set the exact bytes the program started with and get you on track.<br />
<br />
I got a bunch of the info from other threads <a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-memory-editing/396751-fov-wow.html" target="_blank" rel="noopener" class="mycode_url">here</a> and <a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/617657-vanilla-1-12-tbc-2-4-3-permanent-fov-fix-patched-wow-exe.html" target="_blank" rel="noopener" class="mycode_url">here</a>, so thanks to everyone who posted useful information there.<br />
<br />
There was some misinformation though. The FoV value is a 32-bit, single-precision float, in little endian format. Which is 4 bytes. The first 8 bytes given on the other thread were useful in finding the 4 bytes I needed, but you don't need to modify 8 or 10 bytes of data. That's also why people were having trouble converting to a meaningful float value from hex. I find it interesting that the default values are all pi/2, but I couldn't do anything useful with that information. It's not like they did 2pi radians for a circle and pi/2 radians is 90°, unless there's some other conversion factor I'm not seeing.<br />
<br />
The program uses a .dat file in its folder to figure out where to look, so if you can find offsets for other 32-bit clients, you can edit the file to make the program look there. If you post them here, I'll try to edit the GitHub file so it has more targets for more people. But I'm lazy and probably won't check this site a bunch, so maybe post them on GitHub. Not that I check GitHub much either.</blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Archive] rEdox Packet Editor]]></title>
			<link>https://elijahketchersid.com/forums/thread-8823.html</link>
			<pubDate>Tue, 04 Nov 2025 12:44:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://elijahketchersid.com/forums/member.php?action=profile&uid=1">MrNothing</a>]]></dc:creator>
			<guid isPermaLink="false">https://elijahketchersid.com/forums/thread-8823.html</guid>
			<description><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: MrNothing • Posted: 2025-11-04T13:44:42.175252</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/140017-redox-packet-editor.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>							: <span style="text-decoration: underline;" class="mycode_u">rEdox Packet Editor<br />
</span><br />
<br />
This is an extended version of WPE that is very usefull in many ways<span style="text-decoration: underline;" class="mycode_u"><br />
please note that i am not the one who made this program<br />
<br />
all credit goes to:<span style="font-weight: bold;" class="mycode_b">rEdox</span></span> from the Cheat Engine forums.<br />
<br />
<span style="font-style: italic;" class="mycode_i"><span style="font-weight: bold;" class="mycode_b"><br />
FEATURES:</span></span><br />
<br />
-Record's Winsock 1.1, 2.0 and WSA<br />
<br />
-Create Process, Start Process with auto-hook.<br />
<br />
-Hotkey's, such as start recording, stop recording.<br />
<br />
-Setting's adjustable. such as Winsock 1.1, 2.0 and WSA<br />
<br />
-Automated Calculator, Decimal, Char, Bin, Hex and string.<br />
<br />
-Custom Filter, Edit everything you want. Litelary.<br />
<br />
-Connection's, Record redirect connection's.<br />
<br />
-Note, Useful for saving bytes.<br />
<br />
-1 Delay send speed, WPE only supports 100 and higher.<br />
<br />
DOWNLOAD link: <a href="http://w15.easy-share.com/1699750000.html" target="_blank" rel="noopener" class="mycode_url">Download rpE-Filter.zip, upload your files and earn money.</a><br />
<br />
enjoy!</blockquote>
]]></description>
			<content:encoded><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: MrNothing • Posted: 2025-11-04T13:44:42.175252</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/140017-redox-packet-editor.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>							: <span style="text-decoration: underline;" class="mycode_u">rEdox Packet Editor<br />
</span><br />
<br />
This is an extended version of WPE that is very usefull in many ways<span style="text-decoration: underline;" class="mycode_u"><br />
please note that i am not the one who made this program<br />
<br />
all credit goes to:<span style="font-weight: bold;" class="mycode_b">rEdox</span></span> from the Cheat Engine forums.<br />
<br />
<span style="font-style: italic;" class="mycode_i"><span style="font-weight: bold;" class="mycode_b"><br />
FEATURES:</span></span><br />
<br />
-Record's Winsock 1.1, 2.0 and WSA<br />
<br />
-Create Process, Start Process with auto-hook.<br />
<br />
-Hotkey's, such as start recording, stop recording.<br />
<br />
-Setting's adjustable. such as Winsock 1.1, 2.0 and WSA<br />
<br />
-Automated Calculator, Decimal, Char, Bin, Hex and string.<br />
<br />
-Custom Filter, Edit everything you want. Litelary.<br />
<br />
-Connection's, Record redirect connection's.<br />
<br />
-Note, Useful for saving bytes.<br />
<br />
-1 Delay send speed, WPE only supports 100 and higher.<br />
<br />
DOWNLOAD link: <a href="http://w15.easy-share.com/1699750000.html" target="_blank" rel="noopener" class="mycode_url">Download rpE-Filter.zip, upload your files and earn money.</a><br />
<br />
enjoy!</blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Archive] [HACK] The Hitchhiker's Hack 3.3.5 Calabazin Mod Version]]></title>
			<link>https://elijahketchersid.com/forums/thread-8822.html</link>
			<pubDate>Tue, 04 Nov 2025 12:44:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://elijahketchersid.com/forums/member.php?action=profile&uid=1">Calabazin</a>]]></dc:creator>
			<guid isPermaLink="false">https://elijahketchersid.com/forums/thread-8822.html</guid>
			<description><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Calabazin • Posted: 2025-11-04T13:44:42.073244</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/483502-hack-hitchhikers-hack-3-3-5-calabazin-mod-version.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite><span style="font-weight: bold;" class="mycode_b">Original Author of the Program: </span> Bob_74<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Name of the Program: </span> The Hitchhiker's Hack 3.3.5 Calabazin Mod Version<br />
<br />
First of all, my english may suck, so bare with me, please!<br />
<br />
<span style="text-decoration: underline;" class="mycode_u"><span style="font-weight: bold;" class="mycode_b">A little background</span>:</span><br />
<br />
Im still playing 3.3.5 and i been using this hack for a long time but it was all flickering and lagging and it lacked some tools.<br />
<br />
Thankfully its SourceCode got into my hands and i started modding it and it ended up in this.<br />
<br />
I have tested it just a little and i MIGHT fix some of it issues in the near future, but for now i hand it to you all =)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Description of the program: </span><br />
<br />
Basically it does the very same thing than Hitchhiker's 3.3.5, but with some lightweight-ish GUI and some modifications to it too.<br />
<br />
As far of memory writing security i can't ensure anything as i chop off a lot of the original code and just left the features i use the most.<br />
<br />
You can:<br />
<br />
<span style="font-weight: bold;" class="mycode_b">·Fly<br />
·SpeedHack<br />
·Teleport Lists<br />
·Track stuff<br />
·Go through stuff<br />
·Wallclimb<br />
·Stop Falling<br />
</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">My Custom Features</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Multi TP List Managment </span>&lt;- This might sound cooler than it really is; it means that you can swap between TP lists without exiting the program.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Search   </span>                        &lt;- Now you can Search for string in the TP list. Cool right?<br />
<br />
<span style="font-weight: bold;" class="mycode_b">PrevTP &amp; NextTP </span>           &lt;- Useful when you need to farm - You click on a TP on the list and you just can surf back and forth<br />
<br />
<span style="font-style: italic;" class="mycode_i">HotKeys</span><br />
<br />
F5 &lt;- Prev TP<br />
<br />
F6 &lt;- Next TP<br />
<br />
F7 &lt;- Quick add TP<br />
<br />
<span style="font-style: italic;" class="mycode_i">Things to keep in mind</span><br />
<br />
.- TP list is saved when you swap to another or when you close the progra<br />
<br />
.- The lists provided in the .rar are both tHHH format compatible, so you dont need to use the WEH List checkbox<br />
<br />
.- Always keep a backup of your lists<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Disclaimer</span><br />
<br />
I share this, but this is <span style="font-weight: bold;" class="mycode_b">NOT</span> my full creation, i just edited somebody else's work and i <span style="font-weight: bold;" class="mycode_b">DO NOT</span> take any credit for it.<br />
<br />
And use this at your onw risk. I do not take any responsibility for whatever happens to your account for using this.<br />
<br />
Thanks to the Internet for the SourceCode and enjoy it!<br />
<br />
If you find any bug or error, you may try pming me for a solution but i dont promise to fix them soon.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Knowkn Issues</span><br />
<br />
- It doesnt get along with more than one wow.exe open<br />
<br />
- It might just blow up !! <img src="https://www.ownedcore.com/forums/images/smilies/cool.gif" loading="lazy"  alt="[Image: cool.gif]" class="mycode_img" /><br />
<br />
- IMPORTANT: to fix a bug it put some duct tape on it so it MAY show map id 1 when its really not ! (cheers <img src="https://elijahketchersid.com/forums/images/smilies/tongue.png" alt="Tongue" title="Tongue" class="smilie smilie_5" />)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">PIC</span><br />
<br />
<a href="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/18524d1404863198-hack-hitchhikers-hack-3-3-5-calabazin-mod-version-i36wvti-jpg" target="_blank" rel="noopener" class="mycode_url"><img src="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/18524d1443817492t-hack-hitchhikers-hack-3-3-5-calabazin-mod-version-i36wvti-jpg" loading="lazy"  alt="[Image: 18524d1443817492t-hack-hitchhikers-hack-...36wvti-jpg]" class="mycode_img" /></a><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Virus Scan Link</span><br />
<br />
<a href="https://www.virustotal.com/en/file/616deeca2018a03e0f9632d7a3f68f42ec501716e820524b4c949ee68b019582/analysis/1405904368/" target="_blank" rel="noopener" class="mycode_url">v0.4 VT Scan</a><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Download link to the program:</span><br />
<br />
.rar Content:<br />
<br />
/TPLIST/00.ini<br />
<br />
/TPLIST/For HHH WEHTeleportList.txt<br />
<br />
/TPLIST/Original thhh_TPlist.ini<br />
<br />
/The Hitchhiker's Hack 3.3.5 - Calabazin's Mod version 0.4.exe<br />
<br />
<a href="https://mega.co.nz/#!BcwDxTII!DDjcb8zvJzadv5_6RFxpabs3f5QZW0ruGQSdWYpG2Sk" target="_blank" rel="noopener" class="mycode_url">Download File (v0.4)</a><br />
<br />
Code:<br />
v.04 is here!<br />
·user interface changes<br />
·user interface bug fixes<br />
·MAPID 1 bug fix<br />
<br />
v0.3 release<br />
·fix search bar ( 75% done )<br />
·fix problem with failing to load proper xyz coords of tps with same name<br />
·minor improvements<br />
<br />
v0.2<br />
·fix big issues on TPlist add/edit/delete/save functions<br />
·fix some tabindexes<br />
·no TP LISt is alphabetical<br />
<br />
v0.1 Release version<br />
·super buggi version !</blockquote>
]]></description>
			<content:encoded><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Calabazin • Posted: 2025-11-04T13:44:42.073244</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/483502-hack-hitchhikers-hack-3-3-5-calabazin-mod-version.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite><span style="font-weight: bold;" class="mycode_b">Original Author of the Program: </span> Bob_74<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Name of the Program: </span> The Hitchhiker's Hack 3.3.5 Calabazin Mod Version<br />
<br />
First of all, my english may suck, so bare with me, please!<br />
<br />
<span style="text-decoration: underline;" class="mycode_u"><span style="font-weight: bold;" class="mycode_b">A little background</span>:</span><br />
<br />
Im still playing 3.3.5 and i been using this hack for a long time but it was all flickering and lagging and it lacked some tools.<br />
<br />
Thankfully its SourceCode got into my hands and i started modding it and it ended up in this.<br />
<br />
I have tested it just a little and i MIGHT fix some of it issues in the near future, but for now i hand it to you all =)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Description of the program: </span><br />
<br />
Basically it does the very same thing than Hitchhiker's 3.3.5, but with some lightweight-ish GUI and some modifications to it too.<br />
<br />
As far of memory writing security i can't ensure anything as i chop off a lot of the original code and just left the features i use the most.<br />
<br />
You can:<br />
<br />
<span style="font-weight: bold;" class="mycode_b">·Fly<br />
·SpeedHack<br />
·Teleport Lists<br />
·Track stuff<br />
·Go through stuff<br />
·Wallclimb<br />
·Stop Falling<br />
</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">My Custom Features</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Multi TP List Managment </span>&lt;- This might sound cooler than it really is; it means that you can swap between TP lists without exiting the program.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Search   </span>                        &lt;- Now you can Search for string in the TP list. Cool right?<br />
<br />
<span style="font-weight: bold;" class="mycode_b">PrevTP &amp; NextTP </span>           &lt;- Useful when you need to farm - You click on a TP on the list and you just can surf back and forth<br />
<br />
<span style="font-style: italic;" class="mycode_i">HotKeys</span><br />
<br />
F5 &lt;- Prev TP<br />
<br />
F6 &lt;- Next TP<br />
<br />
F7 &lt;- Quick add TP<br />
<br />
<span style="font-style: italic;" class="mycode_i">Things to keep in mind</span><br />
<br />
.- TP list is saved when you swap to another or when you close the progra<br />
<br />
.- The lists provided in the .rar are both tHHH format compatible, so you dont need to use the WEH List checkbox<br />
<br />
.- Always keep a backup of your lists<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Disclaimer</span><br />
<br />
I share this, but this is <span style="font-weight: bold;" class="mycode_b">NOT</span> my full creation, i just edited somebody else's work and i <span style="font-weight: bold;" class="mycode_b">DO NOT</span> take any credit for it.<br />
<br />
And use this at your onw risk. I do not take any responsibility for whatever happens to your account for using this.<br />
<br />
Thanks to the Internet for the SourceCode and enjoy it!<br />
<br />
If you find any bug or error, you may try pming me for a solution but i dont promise to fix them soon.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Knowkn Issues</span><br />
<br />
- It doesnt get along with more than one wow.exe open<br />
<br />
- It might just blow up !! <img src="https://www.ownedcore.com/forums/images/smilies/cool.gif" loading="lazy"  alt="[Image: cool.gif]" class="mycode_img" /><br />
<br />
- IMPORTANT: to fix a bug it put some duct tape on it so it MAY show map id 1 when its really not ! (cheers <img src="https://elijahketchersid.com/forums/images/smilies/tongue.png" alt="Tongue" title="Tongue" class="smilie smilie_5" />)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">PIC</span><br />
<br />
<a href="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/18524d1404863198-hack-hitchhikers-hack-3-3-5-calabazin-mod-version-i36wvti-jpg" target="_blank" rel="noopener" class="mycode_url"><img src="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/18524d1443817492t-hack-hitchhikers-hack-3-3-5-calabazin-mod-version-i36wvti-jpg" loading="lazy"  alt="[Image: 18524d1443817492t-hack-hitchhikers-hack-...36wvti-jpg]" class="mycode_img" /></a><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Virus Scan Link</span><br />
<br />
<a href="https://www.virustotal.com/en/file/616deeca2018a03e0f9632d7a3f68f42ec501716e820524b4c949ee68b019582/analysis/1405904368/" target="_blank" rel="noopener" class="mycode_url">v0.4 VT Scan</a><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Download link to the program:</span><br />
<br />
.rar Content:<br />
<br />
/TPLIST/00.ini<br />
<br />
/TPLIST/For HHH WEHTeleportList.txt<br />
<br />
/TPLIST/Original thhh_TPlist.ini<br />
<br />
/The Hitchhiker's Hack 3.3.5 - Calabazin's Mod version 0.4.exe<br />
<br />
<a href="https://mega.co.nz/#!BcwDxTII!DDjcb8zvJzadv5_6RFxpabs3f5QZW0ruGQSdWYpG2Sk" target="_blank" rel="noopener" class="mycode_url">Download File (v0.4)</a><br />
<br />
Code:<br />
v.04 is here!<br />
·user interface changes<br />
·user interface bug fixes<br />
·MAPID 1 bug fix<br />
<br />
v0.3 release<br />
·fix search bar ( 75% done )<br />
·fix problem with failing to load proper xyz coords of tps with same name<br />
·minor improvements<br />
<br />
v0.2<br />
·fix big issues on TPlist add/edit/delete/save functions<br />
·fix some tabindexes<br />
·no TP LISt is alphabetical<br />
<br />
v0.1 Release version<br />
·super buggi version !</blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Archive] dMorph for Wrath of the Lich King 3.3.5а]]></title>
			<link>https://elijahketchersid.com/forums/thread-8821.html</link>
			<pubDate>Tue, 04 Nov 2025 12:44:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://elijahketchersid.com/forums/member.php?action=profile&uid=1">zdohdds</a>]]></dc:creator>
			<guid isPermaLink="false">https://elijahketchersid.com/forums/thread-8821.html</guid>
			<description><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: zdohdds • Posted: 2025-11-04T13:44:41.970623</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/626663-dmorph-wrath-of-lich-king-3-3-5-a.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Dmorph it's program for change your appearance for version 3.3.5a 12340rev.<br />
<br />
* Updated beta 1.0.3 ( May 5th, 2018 ) *<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Requirements</span><br />
<br />
Just extract and run injector.exe while in-game in Windows mode (as Administrator).<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Usage Examples</span><br />
<br />
To morph into another race (Human, in this case):<br />
<br />
Code:<br />
.race 1<br />
Race IDs:<br />
<br />
Code:<br />
1  -- Human<br />
2  -- Orc<br />
3  -- Dwarf<br />
4  -- Night Elf<br />
5  -- Undead<br />
6  -- Tauren<br />
7  -- Gnome<br />
8  -- Troll<br />
9  -- Goblin<br />
10 -- Blood Elf<br />
11 -- Draenie<br />
<span style="font-weight: bold;" class="mycode_b">WARNING</span><br />
<br />
For the next race haven't models without gear:<br />
<br />
Code:<br />
- Dwarf Female<br />
- NightElf Female<br />
- Draenei Male<br />
- Undead Male<br />
- Undead Female<br />
- Troll Female<br />
To swap genders after a race morph:<br />
<br />
Code:<br />
.gender<br />
To morph an item (where 1 is the the <a href="http://wowprogramming.com/docs/api_types#inventoryID" target="_blank" rel="noopener" class="mycode_url">inventory slot ID</a>):<br />
<br />
Code:<br />
.item 1 2955<br />
To morph yourself into the Thrall:<br />
<br />
Code:<br />
.morph 4527<br />
To scale yourself:<br />
<br />
Code:<br />
.scale 0.4<br />
<span style="font-weight: bold;" class="mycode_b">WARNING</span><br />
<br />
For entering floating point numbers use the sign point (use a decimal point, not a decimal comma)<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><a href="https://darksectordds.github.io/" target="_blank" rel="noopener" class="mycode_url">Download Here</a></span><br />
<br />
Thanks to everyone in the memory section.<br />
<br />
Sorry for my bad English.</blockquote>
]]></description>
			<content:encoded><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: zdohdds • Posted: 2025-11-04T13:44:41.970623</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/626663-dmorph-wrath-of-lich-king-3-3-5-a.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Dmorph it's program for change your appearance for version 3.3.5a 12340rev.<br />
<br />
* Updated beta 1.0.3 ( May 5th, 2018 ) *<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Requirements</span><br />
<br />
Just extract and run injector.exe while in-game in Windows mode (as Administrator).<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Usage Examples</span><br />
<br />
To morph into another race (Human, in this case):<br />
<br />
Code:<br />
.race 1<br />
Race IDs:<br />
<br />
Code:<br />
1  -- Human<br />
2  -- Orc<br />
3  -- Dwarf<br />
4  -- Night Elf<br />
5  -- Undead<br />
6  -- Tauren<br />
7  -- Gnome<br />
8  -- Troll<br />
9  -- Goblin<br />
10 -- Blood Elf<br />
11 -- Draenie<br />
<span style="font-weight: bold;" class="mycode_b">WARNING</span><br />
<br />
For the next race haven't models without gear:<br />
<br />
Code:<br />
- Dwarf Female<br />
- NightElf Female<br />
- Draenei Male<br />
- Undead Male<br />
- Undead Female<br />
- Troll Female<br />
To swap genders after a race morph:<br />
<br />
Code:<br />
.gender<br />
To morph an item (where 1 is the the <a href="http://wowprogramming.com/docs/api_types#inventoryID" target="_blank" rel="noopener" class="mycode_url">inventory slot ID</a>):<br />
<br />
Code:<br />
.item 1 2955<br />
To morph yourself into the Thrall:<br />
<br />
Code:<br />
.morph 4527<br />
To scale yourself:<br />
<br />
Code:<br />
.scale 0.4<br />
<span style="font-weight: bold;" class="mycode_b">WARNING</span><br />
<br />
For entering floating point numbers use the sign point (use a decimal point, not a decimal comma)<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><a href="https://darksectordds.github.io/" target="_blank" rel="noopener" class="mycode_url">Download Here</a></span><br />
<br />
Thanks to everyone in the memory section.<br />
<br />
Sorry for my bad English.</blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Archive] (AzerothCore) Autobackup script]]></title>
			<link>https://elijahketchersid.com/forums/thread-8820.html</link>
			<pubDate>Tue, 04 Nov 2025 12:44:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://elijahketchersid.com/forums/member.php?action=profile&uid=1">Aldebaraan</a>]]></dc:creator>
			<guid isPermaLink="false">https://elijahketchersid.com/forums/thread-8820.html</guid>
			<description><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Aldebaraan • Posted: 2025-11-04T13:44:41.945373</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/1088806-azerothcore-autobackup-script.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite><span style="font-weight: bold;" class="mycode_b">What does this do?</span><br />
<br />
It backups all characters in the list every X seconds. It requires my <a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/1040384-azerothcore-powershell-scripts-character-guild-export-import.html" target="_blank" rel="noopener" class="mycode_url">backup/restore scripts ((AzerothCore) Powershell scripts for character and guild export/import)</a> since you need their functions to backup/restore things.<br />
<br />
More info in the github.<br />
<br />
<a href="https://github.com/AldebaraanMKII/WoW-character-autobackup-script" target="_blank" rel="noopener" class="mycode_url">Link</a></blockquote>
]]></description>
			<content:encoded><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Aldebaraan • Posted: 2025-11-04T13:44:41.945373</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/1088806-azerothcore-autobackup-script.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite><span style="font-weight: bold;" class="mycode_b">What does this do?</span><br />
<br />
It backups all characters in the list every X seconds. It requires my <a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/1040384-azerothcore-powershell-scripts-character-guild-export-import.html" target="_blank" rel="noopener" class="mycode_url">backup/restore scripts ((AzerothCore) Powershell scripts for character and guild export/import)</a> since you need their functions to backup/restore things.<br />
<br />
More info in the github.<br />
<br />
<a href="https://github.com/AldebaraanMKII/WoW-character-autobackup-script" target="_blank" rel="noopener" class="mycode_url">Link</a></blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Archive] Lua Unlocker (1.12.1, 2.4.3 & 3.3.5a)]]></title>
			<link>https://elijahketchersid.com/forums/thread-8819.html</link>
			<pubDate>Tue, 04 Nov 2025 12:44:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://elijahketchersid.com/forums/member.php?action=profile&uid=1">greenthing</a>]]></dc:creator>
			<guid isPermaLink="false">https://elijahketchersid.com/forums/thread-8819.html</guid>
			<description><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: greenthing • Posted: 2025-11-04T13:44:41.846571</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/602692-lua-unlocker-1-12-1-2-4-3-3-3-5a.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>							This is a simple Lua unlocker for the versions already mentioned in the title (1.12.1, 2.4.3 &amp; 3.3.5a). Extending it with support for other versions <a href="https://github.com/0xd4d/dnSpy" target="_blank" rel="noopener" class="mycode_url">should be easy</a>.<br />
<br />
Uses a hardware breakpoint at the start of the function, skips all the protection by adding the full length of the function minus the return instruction and changes the value of the EAX register to 1.<br />
<br />
No further explanation should be necessary. If you don't know what this is, then you don't need it. <img src="https://www.ownedcore.com/forums/images/smilies/rolleyes.png" loading="lazy"  alt="[Image: rolleyes.png]" class="mycode_img" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Credit(s):</span><br />
<br />
Apoc (Hardware Breakpoints copy pasta for C# @ <a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-memory-editing/400991-release-c-hwbp-hooks-clean-way.html" target="_blank" rel="noopener" class="mycode_url">[Release] C# HWBP Hooks - The clean way</a>)<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><a href="https://goo.gl/tRZNtv" target="_blank" rel="noopener" class="mycode_url">Click to download</a></span></blockquote>
]]></description>
			<content:encoded><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: greenthing • Posted: 2025-11-04T13:44:41.846571</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/602692-lua-unlocker-1-12-1-2-4-3-3-3-5a.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>							This is a simple Lua unlocker for the versions already mentioned in the title (1.12.1, 2.4.3 &amp; 3.3.5a). Extending it with support for other versions <a href="https://github.com/0xd4d/dnSpy" target="_blank" rel="noopener" class="mycode_url">should be easy</a>.<br />
<br />
Uses a hardware breakpoint at the start of the function, skips all the protection by adding the full length of the function minus the return instruction and changes the value of the EAX register to 1.<br />
<br />
No further explanation should be necessary. If you don't know what this is, then you don't need it. <img src="https://www.ownedcore.com/forums/images/smilies/rolleyes.png" loading="lazy"  alt="[Image: rolleyes.png]" class="mycode_img" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Credit(s):</span><br />
<br />
Apoc (Hardware Breakpoints copy pasta for C# @ <a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-memory-editing/400991-release-c-hwbp-hooks-clean-way.html" target="_blank" rel="noopener" class="mycode_url">[Release] C# HWBP Hooks - The clean way</a>)<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><a href="https://goo.gl/tRZNtv" target="_blank" rel="noopener" class="mycode_url">Click to download</a></span></blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Archive] (AzerothCore) Powershell scripts for character and guild export/import]]></title>
			<link>https://elijahketchersid.com/forums/thread-8818.html</link>
			<pubDate>Tue, 04 Nov 2025 12:44:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://elijahketchersid.com/forums/member.php?action=profile&uid=1">Aldebaraan</a>]]></dc:creator>
			<guid isPermaLink="false">https://elijahketchersid.com/forums/thread-8818.html</guid>
			<description><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Aldebaraan • Posted: 2025-11-04T13:44:41.725070</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/1040384-azerothcore-powershell-scripts-character-guild-export-import.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite><a href="https://github.com/AldebaraanMKII/WoW-character-and-guild-export-import-scripts" target="_blank" rel="noopener" class="mycode_url">GitHub - AldebaraanMKII/WoW-character-and-guild-export-import-scripts: Powershell scripts to export/import world of warcraft characters and guilds</a><br />
<br />
This currently only works on AzerothCore.<br />
<br />
You may ask yourself: Why not just use the .pdump command?<br />
<br />
The .pdump command works most of the time. But it has several disavantages:<br />
<br />
1. You need to know the name of all the characters you want to transfer. With the script you only need to know the account name.<br />
<br />
2. No info is displayed for these characters. If you want to know more details about them, you need to log in into the account to see them for yourself.<br />
<br />
3. You need to run the account/world server. With this, you only need to run the database.<br />
<br />
4. The .pdump command doesn`t transfer guilds (let alone any items in its bank).<br />
<br />
5. The .pdump command doesn`t transfer transmog and reagent bank module data.<br />
<br />
Instructions<br />
<br />
1. Install Powershell 7<br />
<br />
2. Install SimplySQL and PSSQLite modules:<br />
<br />
Code:<br />
Install-Module -Name SimplySql, PSSQLite -Force<br />
3. Extract the <a href="https://github.com/AldebaraanMKII/WoW-character-and-guild-export-import-scripts/archive/refs/heads/main.zip" target="_blank" rel="noopener" class="mycode_url">scripts folder</a>  somewhere<br />
<br />
4. Open "(Config) Backup scripts" with notepad++ or another text editor and check/update the following:<br />
<br />
Code:<br />
# Define source connection details<br />
# source = database from which you will backup the characters/guilds from<br />
&#36;SourceServerName = "127.0.0.1"<br />
&#36;SourcePort = 3306<br />
&#36;SourceUsername = "root"<br />
&#36;SourcePassword = "test"<br />
&#36;SourceDatabaseAuth = "acore_auth"<br />
&#36;SourceDatabaseCharacters = "acore_characters"<br />
&#36;SourceDatabaseWorld = "acore_world"<br />
<br />
# Define target connection details<br />
# target = database from which you will restore the characters/guilds to<br />
&#36;TargetServerName = "127.0.0.1"<br />
&#36;TargetPort = 3306<br />
&#36;TargetUsername = "root"<br />
&#36;TargetPassword = "test"<br />
&#36;TargetDatabaseAuth = "acore_auth"<br />
&#36;TargetDatabaseCharacters = "acore_characters"<br />
&#36;TargetDatabaseWorld = "acore_world"<br />
<br />
# Paths to executables<br />
&#36;mysqldumpPath = "E:\Games\WoW Server Files\My Repack\mysql\bin\mysqldump.exe"<br />
&#36;mysqlPath = "E:\Games\WoW Server Files\My Repack\mysql\bin\mysql.exe"<br />
Source is the database you're exporting the data from.<br />
<br />
Target is the database you're importing the data to.<br />
<br />
Paths to executables is the path to the mysql executables, which are required to export the .sql files used by the scripts. Those executables are typically included in a repack`s mysql/bin folder. If you don`t have them, install MySQL server 8.4.<br />
<br />
5. If you`re exporting characters/guilds, open the MySQL database that contain those characters/guilds.<br />
<br />
6. If you`re importing characters/guilds, open the MySQL database that you want to transfer them to.<br />
<br />
7. Go into the folder you extracted the scripts to, right click &gt; PowerShell 7 &gt; Open Here<br />
<br />
8. type the name of the script like this:  ./"Backup scripts.ps1"<br />
<br />
9. Follow the instructions in the console.<br />
<br />
IMPORTANT: Make sure only the mysql database is open when you export/import your characters or guild! Trying to export/import while the auth/world server is running can lead to issues, like several items missing from the character inventory or duplicate entries in the database!</blockquote>
]]></description>
			<content:encoded><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Aldebaraan • Posted: 2025-11-04T13:44:41.725070</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/1040384-azerothcore-powershell-scripts-character-guild-export-import.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite><a href="https://github.com/AldebaraanMKII/WoW-character-and-guild-export-import-scripts" target="_blank" rel="noopener" class="mycode_url">GitHub - AldebaraanMKII/WoW-character-and-guild-export-import-scripts: Powershell scripts to export/import world of warcraft characters and guilds</a><br />
<br />
This currently only works on AzerothCore.<br />
<br />
You may ask yourself: Why not just use the .pdump command?<br />
<br />
The .pdump command works most of the time. But it has several disavantages:<br />
<br />
1. You need to know the name of all the characters you want to transfer. With the script you only need to know the account name.<br />
<br />
2. No info is displayed for these characters. If you want to know more details about them, you need to log in into the account to see them for yourself.<br />
<br />
3. You need to run the account/world server. With this, you only need to run the database.<br />
<br />
4. The .pdump command doesn`t transfer guilds (let alone any items in its bank).<br />
<br />
5. The .pdump command doesn`t transfer transmog and reagent bank module data.<br />
<br />
Instructions<br />
<br />
1. Install Powershell 7<br />
<br />
2. Install SimplySQL and PSSQLite modules:<br />
<br />
Code:<br />
Install-Module -Name SimplySql, PSSQLite -Force<br />
3. Extract the <a href="https://github.com/AldebaraanMKII/WoW-character-and-guild-export-import-scripts/archive/refs/heads/main.zip" target="_blank" rel="noopener" class="mycode_url">scripts folder</a>  somewhere<br />
<br />
4. Open "(Config) Backup scripts" with notepad++ or another text editor and check/update the following:<br />
<br />
Code:<br />
# Define source connection details<br />
# source = database from which you will backup the characters/guilds from<br />
&#36;SourceServerName = "127.0.0.1"<br />
&#36;SourcePort = 3306<br />
&#36;SourceUsername = "root"<br />
&#36;SourcePassword = "test"<br />
&#36;SourceDatabaseAuth = "acore_auth"<br />
&#36;SourceDatabaseCharacters = "acore_characters"<br />
&#36;SourceDatabaseWorld = "acore_world"<br />
<br />
# Define target connection details<br />
# target = database from which you will restore the characters/guilds to<br />
&#36;TargetServerName = "127.0.0.1"<br />
&#36;TargetPort = 3306<br />
&#36;TargetUsername = "root"<br />
&#36;TargetPassword = "test"<br />
&#36;TargetDatabaseAuth = "acore_auth"<br />
&#36;TargetDatabaseCharacters = "acore_characters"<br />
&#36;TargetDatabaseWorld = "acore_world"<br />
<br />
# Paths to executables<br />
&#36;mysqldumpPath = "E:\Games\WoW Server Files\My Repack\mysql\bin\mysqldump.exe"<br />
&#36;mysqlPath = "E:\Games\WoW Server Files\My Repack\mysql\bin\mysql.exe"<br />
Source is the database you're exporting the data from.<br />
<br />
Target is the database you're importing the data to.<br />
<br />
Paths to executables is the path to the mysql executables, which are required to export the .sql files used by the scripts. Those executables are typically included in a repack`s mysql/bin folder. If you don`t have them, install MySQL server 8.4.<br />
<br />
5. If you`re exporting characters/guilds, open the MySQL database that contain those characters/guilds.<br />
<br />
6. If you`re importing characters/guilds, open the MySQL database that you want to transfer them to.<br />
<br />
7. Go into the folder you extracted the scripts to, right click &gt; PowerShell 7 &gt; Open Here<br />
<br />
8. type the name of the script like this:  ./"Backup scripts.ps1"<br />
<br />
9. Follow the instructions in the console.<br />
<br />
IMPORTANT: Make sure only the mysql database is open when you export/import your characters or guild! Trying to export/import while the auth/world server is running can lead to issues, like several items missing from the character inventory or duplicate entries in the database!</blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Archive] [WEH Guide] Usage of WEH 5.0.4.5 and Up]]></title>
			<link>https://elijahketchersid.com/forums/thread-8817.html</link>
			<pubDate>Tue, 04 Nov 2025 12:44:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://elijahketchersid.com/forums/member.php?action=profile&uid=1">Lucent~</a>]]></dc:creator>
			<guid isPermaLink="false">https://elijahketchersid.com/forums/thread-8817.html</guid>
			<description><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Lucent~ • Posted: 2025-11-04T13:44:41.611992</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/240066-weh-guide-usage-of-weh-5-0-4-5-up.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>							DISCLAIMER~<br />
<br />
I do not own nor did I create WowEmuHacker (WEH) for Emulated World of Warcraft servers (Private Servers). I am not responsible for the program nor am I obligated to fix every problem associated with WEH.<br />
<br />
If you have any question please go to the support board at <a href="http://www.deathsoft.com/forum/index.php?showtopic=7144" target="_blank" rel="noopener" class="mycode_url">www.deathsoft.com</a><br />
<br />
------INSTALLATION------<br />
<br />
First, Download the appropriate file in correspondence to your WoW version.<br />
<br />
<a href="http://www.deathsoft.com/board/index.php?action=dlattach;topic=1201.0;attach=737" target="_blank" rel="noopener" class="mycode_url">2.1.3</a><br />
<br />
<a href="http://www.deathsoft.com/board/index.php?action=dlattach;topic=1201.0;attach=738" target="_blank" rel="noopener" class="mycode_url">2.2.3</a><br />
<br />
<a href="http://www.deathsoft.com/board/index.php?action=dlattach;topic=1201.0;attach=739" target="_blank" rel="noopener" class="mycode_url">2.3.0</a><br />
<br />
<a href="http://www.deathsoft.com/board/index.php?action=dlattach;topic=1201.0;attach=740" target="_blank" rel="noopener" class="mycode_url">2.3.2</a><br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?act=attach&amp;type=post&amp;id=1856" target="_blank" rel="noopener" class="mycode_url">2.4.0 through 3.0.9</a><br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?act=attach&amp;type=post&amp;id=1942" target="_blank" rel="noopener" class="mycode_url">3.1.1 3.1.1a</a><br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?act=attach&amp;type=post&amp;id=1956" target="_blank" rel="noopener" class="mycode_url">3.1.2 and 3.1.3</a><br />
<br />
Unzip it to any folder; An empty folder would be best.<br />
<br />
----------STARTING WoW Emulation Hacker (WEH) ---------<br />
<br />
To actually start the program how it's supposed to be and make sure it works, make sure your WoW patch version and WEH release version correspond with one another<br />
<br />
EXAMPLE: WoW version 3.0.9 and WEH 5.0.4.5<br />
<br />
Okay, now open World of Warcraft first. Once it fully loads and you can login, you may now open WEH.<br />
<br />
--------TROUBLE SHOOTING--------<br />
<br />
If you are having trouble on getting WeH to start please read the following.<br />
<br />
if not skip past this section and continue on with USING WEH<br />
<br />
<span style="text-decoration: line-through;" class="mycode_s">WeH is not currently designed to function on a MAC OS, Linux or Ubuntu etcetera...<br />
<br />
if you use one then I'm afraid you will not be able to use WeH</span><br />
<br />
MAC, Linux Ubuntu etc. users rejoice! Thanks to Invisibility for his interesting idea to use WINE HQ<br />
<br />
				Get this -&gt; <a href="http://www.winehq.org/" target="_blank" rel="noopener" class="mycode_url">WineHQ - Run Windows applications on Linux, BSD, Solaris and Mac OS X</a><br />
<br />
Then Download -&gt; they point you what you must do for downloading and installing <img src="https://www.ownedcore.com/forums/images/smilies/wink.png" loading="lazy"  alt="[Image: wink.png]" class="mycode_img" /><br />
<br />
Tested and working on this Linux distributions -&gt; Ubuntu,Debian,Fedora, Mandriva,OpenSuse,<br />
<br />
Tested and working on PCBSD !<br />
<br />
Tested and working on Mac OS X <img src="https://www.ownedcore.com/forums/images/smilies/wink.png" loading="lazy"  alt="[Image: wink.png]" class="mycode_img" /><br />
<br />
Here is guide for Mac OS X -&gt; <a href="http://davidbaumgold.com/tutorials/wine-mac/" target="_blank" rel="noopener" class="mycode_url">Installing Wine on Mac OS X</a><br />
<br />
some users may experience difficulty running WeH on windows vista.<br />
<br />
you will need to run it as administrator to get it to work properly<br />
<br />
to do this, right-click the .exe and select run as administrator.<br />
<br />
other windows users might experience similar issues<br />
<br />
try doing the following if it is not opening correctly<br />
<br />
Right-Click on the .exe file that was unzipped.<br />
<br />
Select Properties from the drop-down menu, then click on the<br />
<br />
compatibility tab.<br />
<br />
Now check the "Run this program..." option, then in the drop-down menu below it, select "Windows 98 / Windows Me". This is usually required to be done for Windows XP, or at least has on two of my computers.<br />
<br />
----------USING WEH----------<br />
<br />
---GOTO LOCATION---<br />
<br />
This is fairly easy to figure out.<br />
<br />
simply put in the correct coordinates and press the "GO" button.<br />
<br />
for a downloadable list of Locations look at the bottom of this guide.<br />
<br />
------------------------------------------<br />
<br />
---TELEPORT LIST---<br />
<br />
This list allows you to add, remove and edit location coordinates in an organized manner.<br />
<br />
------------------------------------------<br />
<br />
---GOTO CORPSE---<br />
<br />
This handy function teleports you directly to your lifeless rotting corpse.<br />
<br />
(I don't really use this one much, cause..you know...I'm so leet...i don't die....*cough* &gt;_&gt;)<br />
<br />
------------------------------------------<br />
<br />
---SPEEDHACKING---<br />
<br />
This is an extremely useful tool when you're in a hurry.<br />
<br />
Adjust the slider to fit your desired speed.<br />
<br />
Normal Speed: 7.00<br />
<br />
Aspect of the Cheetah Speed: 9.06<br />
<br />
Wisp Speed: 10.50<br />
<br />
Epic Level Mount Speed: 14.00<br />
<br />
For 200% (Just above Epic Flyers) it is 21.00<br />
<br />
Be very careful using this one, most servers now have anti-speed hacking security measures and will log you out (Minimum) or ban you (Maximum) if caught.<br />
<br />
most servers give you three chances to "redeem your wicked ways" before they ban you though.<br />
<br />
------------------------------------------<br />
<br />
---TRACKINGS---<br />
<br />
This feature allows tracking for any class, even the lonely priest can now stalk himself some new friends or foes! =D<br />
<br />
Currently this feature allows two types of tracking followed by different sub-types therein.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Hunter Tracking Modes</span><br />
<br />
01 - Nothing<br />
<br />
02 - Everything (literally)<br />
<br />
03 - Beasts (Animals, cats, dogs, critters etcetera.)<br />
<br />
04 - Demons (Voidwalkers, Felstalkers, Imps etcetera.)<br />
<br />
05 - Dragonkin (Dragonspawn, Whelps, DRAGONS!)<br />
<br />
06 - Elementals (Fire, Water, Earth, Wind....er.... HEART! [LOL] i think that's it.)<br />
<br />
07 - Giants (Ogres, Giants, tall..things)<br />
<br />
08 - Humanoids (Players, NPCs, Any type of creature resembling a Human in shape, figure and form.)<br />
<br />
09 - Misc. ( I'm not sure, maybe pets? Help on this would be appreciated)<br />
<br />
10 - Undead (Forsaken, Ghouls, Zombies etcetera.)<br />
<br />
11 - Slimes (Self-explanatory)<br />
<br />
12 - Machines (Robots, Harvesters, constructs etcetera.)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Herbs, Minerals, Treasure</span><br />
<br />
01 - Nothing<br />
<br />
02 - Everything (Self-explanatory)<br />
<br />
03 - Herbs<br />
<br />
04 - Minerals<br />
<br />
05 - Treasures<br />
<br />
06 - Herbs and Minerals<br />
<br />
07 - Herbs and Treasures<br />
<br />
08 - Minerals and Treasures<br />
<br />
09 - Herbs and Minerals and Treasures<br />
<br />
------------------------------------------<br />
<br />
---WALL CLIMB---<br />
<br />
This one is very simple, when turned on, it allows your character<br />
<br />
to run over mountains and some walls as if they were flat ground.<br />
<br />
I can't explain it much better than that.<br />
<br />
------------------------------------------<br />
<br />
---NO FALL DAMAGE---<br />
<br />
Turns off (or on) fall damage you take when falling from a great height. In my experience this doesn't work 100% every time. I've fallen from great heights and taken full damage, no damage, or a very small amount of damage.<br />
<br />
------------------------------------------<br />
<br />
---TELEPORT TO PLANE---<br />
<br />
Places you on an equal ground level and disables landscapes.<br />
<br />
It's only a visual effect, so if you use it and walk towards a hill, your character will react as if there is a hill there.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Uses: </span>Make yourself invisible to everyone including GMs, Kill someone when you are mind controlling them as a priest, they will T2P but since they don't have WEH they just fall through the ground and die. XD<br />
<br />
------------------------------------------<br />
<br />
---FLYMODE---<br />
<br />
This is probably the second most useful feature of WEH.<br />
<br />
When enabled it will put you into the air a few feet above where you were standing, and you'll be able to "swim" through the air, and fly anywhere.<br />
<br />
This is visable to other players, so avoid using it in populated areas.<br />
<br />
When disable, you'll be standing in the air, and if you move, you will fall.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">NOTE: Fly Mode CANNOT be effectively used in mid-air, you must be standing still to use it!!!<br />
works well when combined with speedhack to get you places. <img src="https://www.ownedcore.com/forums/images/smilies/wink.png" loading="lazy"  alt="[Image: wink.png]" class="mycode_img" /></span><br />
<br />
------------------------------------------<br />
<br />
---WALK ON WATER---<br />
<br />
This function works just like the Water Walking shaman spell, but it cannot be dispelled and it lasts until you turn it back off.<br />
<br />
Very useful if you don't want to swim across that annoying lake in your way, if you want to play around on the ocean, or if you want to blaspheme with your friends! =D<br />
<br />
------------------------------------------<br />
<br />
---HYPER MODE---<br />
<br />
This greatly speeds up the WoW client, and is effectively just a speed hack. It has no noticeable effect on any kind of cooldowns.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">NOTE: use this at your own risk, there has been a few reports of this messing up peoples' computers.</span><br />
<br />
------------------------------------------<br />
<br />
---PLACE TO PLACE TELEPORTING---<br />
<br />
Once enabled you do CTRL + NUMPAD 1 2 or 3 and it stores that location in temp memory<br />
<br />
you can then teleport between these points by just hitting NUMPAD 1 2 3 (depending on which ones you stored locations at)<br />
<br />
------------------------------------------<br />
<br />
---ALLOW MODEL HACKS---<br />
<br />
Allows you to use custom model hacking / editing patches.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">NOTE: works just like the ModelEditFix program.</span><br />
<br />
------------------------------------------<br />
<br />
---GRAVITY CONTROL---<br />
<br />
This messes with the gravity and allows you to jump to great heights.<br />
<br />
This can be used when fly hacking is disabled on some servers.<br />
<br />
Other than that, it has little use.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">NOTE: CANNOT BE USED WITH WOW VERSIONS AFTER 3.0.3!</span><br />
<br />
------------------------------------------<br />
<br />
---CHANGE MODEL SIZE---<br />
<br />
Change the size of your character model, from a miniscule spec to an annoying, over enlarged titan!<br />
<br />
Note that this is strictly clientside based. This means that you and only you can see the effects of this, no-one else.<br />
<br />
------------------------------------------<br />
<br />
---NO CLIP---<br />
<br />
This one can be slightly misleading. It allows you to nudge yourself a<br />
<br />
few feet forward, however you MUST make a hotkey in WEH for "No Clip Action" be sure and make it one you don't often use, and no "Letter Keys" as they're used for typing. (You wouldn't want to be sending a friend a PM and then suddenly burst through a wall and fall off the edge of the universe again would you?)<br />
<br />
You can use No Clip to get by ANY walls, even game objects, and landscape. Be careful not to fall below the ground.<br />
<br />
------------------------------------------<br />
<br />
---INCREASE XYZ---<br />
<br />
Increases the value of the corresponding axis value. X is width, Y is Length, and Z is Height.<br />
<br />
------------------------------------------<br />
<br />
---DECREASE XYZ---<br />
<br />
Decreases the corresponding axis value. X is width, Y is length and Z is Height.<br />
<br />
------------------------------------------<br />
<br />
---AIR JUMP---<br />
<br />
This feature allows you to double jump / climb in the air or over objects using jump rather then flying<br />
<br />
------------------------------------------<br />
<br />
---WATER BREATHING---<br />
<br />
As the name says this option will allow you to breath underwater. This option also enables you to stay mounted in water.<br />
<br />
You Might also find this option allows you to do some other things as well.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">NOTE: This Option is NO LONGER AVAILABLE IN WEH</span><br />
<br />
------------------------------------------<br />
<br />
---FACTION---<br />
<br />
This feature allows you to change your Faction ID to the corresponding selected value.<br />
<br />
01 - Creature<br />
<br />
Blood Elf<br />
<br />
BloodSail Buccaneers<br />
<br />
Demon<br />
<br />
Dranei<br />
<br />
Dwarf<br />
<br />
Gnome<br />
<br />
Human<br />
<br />
Night Elf<br />
<br />
Orc<br />
<br />
Tauren<br />
<br />
Troll<br />
<br />
Undead<br />
<br />
---ROSETTA STONE---<br />
<br />
This useful feature will allow you to speak in the same language that GMs use, making it so that every player can understand you. Yes, even those Alliance can understand what you mean by "ZugZug Kek"<br />
<br />
------------------------------------------<br />
<br />
---SETUP HOTKEYS---<br />
<br />
Allows you to hotkey WEH controls to keys on your keyboard.<br />
<br />
------------------------------------------<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Credits</span><br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?showuser=2" target="_blank" rel="noopener" class="mycode_url">Devalina</a> for making the WoW Emu Hacker program, and dealing with all the idiotic and annoying questions she always gets.<br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?showuser=29540" target="_blank" rel="noopener" class="mycode_url">Lucent</a> for writing this awesome guide (Yes, I am very conceited XD)<br />
<br />
Khadji for getting me into WoW and teaching me my first WoW Exploit all those years ago.<br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?showuser=53237" target="_blank" rel="noopener" class="mycode_url">Invisibility</a> for his awesome Idea to use WINE HQ so that MAC/LINUX/UBUNTU Users can enjoy WEH too. <img src="https://www.ownedcore.com/forums/images/smilies/smile.png" loading="lazy"  alt="[Image: smile.png]" class="mycode_img" /><br />
<br />
<a href="http://&amp;quot;http://www.deathsoft.com" target="_blank" rel="noopener" class="mycode_url">Deathsoft</a> for providing such a wonderful community and opportunities to share exploits.<br />
<br />
<a href="http://www.mmowned.com/forums/members/exiled1120.html" target="_blank" rel="noopener" class="mycode_url">Exiled1120</a> for suggesting putting each download up.<br />
<br />
To Be Expected:<br />
<br />
A few more updates including tips and tricks on the use of these functions<br />
<br />
and more content possibly should Devalina ever choose to do so. <img src="https://www.ownedcore.com/forums/images/smilies/smile.png" loading="lazy"  alt="[Image: smile.png]" class="mycode_img" /><br />
<br />
EDIT(S):Multiple edits done to ensure easiness to understand, fix spelling mistakes, upload realmlist,add people to credits, blah blah blah.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">IF I LEFT ANYTHING OUT AT ALL, OR MISSED ANYTHING, OR MESSED UP, PLEASE LET ME KNOW SO THAT I MAY RECTIFY THE PROBLEM <img src="https://www.ownedcore.com/forums/images/smilies/smile.png" loading="lazy"  alt="[Image: smile.png]" class="mycode_img" /> send me a PM, no emails. </span><br />
<br />
 Before anyone says I stole this, leeched it what have you, I am the writer of this guide and the original Lucent~/Warlord Gorguts/Gorguts/Valken/Belisarius of Deathsoft.com. Any flaming posts will be disregarded and/or reported for harrassment.<br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?act=attach&amp;type=post&amp;id=1899" target="_blank" rel="noopener" class="mycode_url">Download .doc version of this guide</a><br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?act=attach&amp;type=post&amp;id=1922" target="_blank" rel="noopener" class="mycode_url">Download realmlist.txt with custom Eternion WoW spots.</a></blockquote>
]]></description>
			<content:encoded><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Lucent~ • Posted: 2025-11-04T13:44:41.611992</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/240066-weh-guide-usage-of-weh-5-0-4-5-up.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>							DISCLAIMER~<br />
<br />
I do not own nor did I create WowEmuHacker (WEH) for Emulated World of Warcraft servers (Private Servers). I am not responsible for the program nor am I obligated to fix every problem associated with WEH.<br />
<br />
If you have any question please go to the support board at <a href="http://www.deathsoft.com/forum/index.php?showtopic=7144" target="_blank" rel="noopener" class="mycode_url">www.deathsoft.com</a><br />
<br />
------INSTALLATION------<br />
<br />
First, Download the appropriate file in correspondence to your WoW version.<br />
<br />
<a href="http://www.deathsoft.com/board/index.php?action=dlattach;topic=1201.0;attach=737" target="_blank" rel="noopener" class="mycode_url">2.1.3</a><br />
<br />
<a href="http://www.deathsoft.com/board/index.php?action=dlattach;topic=1201.0;attach=738" target="_blank" rel="noopener" class="mycode_url">2.2.3</a><br />
<br />
<a href="http://www.deathsoft.com/board/index.php?action=dlattach;topic=1201.0;attach=739" target="_blank" rel="noopener" class="mycode_url">2.3.0</a><br />
<br />
<a href="http://www.deathsoft.com/board/index.php?action=dlattach;topic=1201.0;attach=740" target="_blank" rel="noopener" class="mycode_url">2.3.2</a><br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?act=attach&amp;type=post&amp;id=1856" target="_blank" rel="noopener" class="mycode_url">2.4.0 through 3.0.9</a><br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?act=attach&amp;type=post&amp;id=1942" target="_blank" rel="noopener" class="mycode_url">3.1.1 3.1.1a</a><br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?act=attach&amp;type=post&amp;id=1956" target="_blank" rel="noopener" class="mycode_url">3.1.2 and 3.1.3</a><br />
<br />
Unzip it to any folder; An empty folder would be best.<br />
<br />
----------STARTING WoW Emulation Hacker (WEH) ---------<br />
<br />
To actually start the program how it's supposed to be and make sure it works, make sure your WoW patch version and WEH release version correspond with one another<br />
<br />
EXAMPLE: WoW version 3.0.9 and WEH 5.0.4.5<br />
<br />
Okay, now open World of Warcraft first. Once it fully loads and you can login, you may now open WEH.<br />
<br />
--------TROUBLE SHOOTING--------<br />
<br />
If you are having trouble on getting WeH to start please read the following.<br />
<br />
if not skip past this section and continue on with USING WEH<br />
<br />
<span style="text-decoration: line-through;" class="mycode_s">WeH is not currently designed to function on a MAC OS, Linux or Ubuntu etcetera...<br />
<br />
if you use one then I'm afraid you will not be able to use WeH</span><br />
<br />
MAC, Linux Ubuntu etc. users rejoice! Thanks to Invisibility for his interesting idea to use WINE HQ<br />
<br />
				Get this -&gt; <a href="http://www.winehq.org/" target="_blank" rel="noopener" class="mycode_url">WineHQ - Run Windows applications on Linux, BSD, Solaris and Mac OS X</a><br />
<br />
Then Download -&gt; they point you what you must do for downloading and installing <img src="https://www.ownedcore.com/forums/images/smilies/wink.png" loading="lazy"  alt="[Image: wink.png]" class="mycode_img" /><br />
<br />
Tested and working on this Linux distributions -&gt; Ubuntu,Debian,Fedora, Mandriva,OpenSuse,<br />
<br />
Tested and working on PCBSD !<br />
<br />
Tested and working on Mac OS X <img src="https://www.ownedcore.com/forums/images/smilies/wink.png" loading="lazy"  alt="[Image: wink.png]" class="mycode_img" /><br />
<br />
Here is guide for Mac OS X -&gt; <a href="http://davidbaumgold.com/tutorials/wine-mac/" target="_blank" rel="noopener" class="mycode_url">Installing Wine on Mac OS X</a><br />
<br />
some users may experience difficulty running WeH on windows vista.<br />
<br />
you will need to run it as administrator to get it to work properly<br />
<br />
to do this, right-click the .exe and select run as administrator.<br />
<br />
other windows users might experience similar issues<br />
<br />
try doing the following if it is not opening correctly<br />
<br />
Right-Click on the .exe file that was unzipped.<br />
<br />
Select Properties from the drop-down menu, then click on the<br />
<br />
compatibility tab.<br />
<br />
Now check the "Run this program..." option, then in the drop-down menu below it, select "Windows 98 / Windows Me". This is usually required to be done for Windows XP, or at least has on two of my computers.<br />
<br />
----------USING WEH----------<br />
<br />
---GOTO LOCATION---<br />
<br />
This is fairly easy to figure out.<br />
<br />
simply put in the correct coordinates and press the "GO" button.<br />
<br />
for a downloadable list of Locations look at the bottom of this guide.<br />
<br />
------------------------------------------<br />
<br />
---TELEPORT LIST---<br />
<br />
This list allows you to add, remove and edit location coordinates in an organized manner.<br />
<br />
------------------------------------------<br />
<br />
---GOTO CORPSE---<br />
<br />
This handy function teleports you directly to your lifeless rotting corpse.<br />
<br />
(I don't really use this one much, cause..you know...I'm so leet...i don't die....*cough* &gt;_&gt;)<br />
<br />
------------------------------------------<br />
<br />
---SPEEDHACKING---<br />
<br />
This is an extremely useful tool when you're in a hurry.<br />
<br />
Adjust the slider to fit your desired speed.<br />
<br />
Normal Speed: 7.00<br />
<br />
Aspect of the Cheetah Speed: 9.06<br />
<br />
Wisp Speed: 10.50<br />
<br />
Epic Level Mount Speed: 14.00<br />
<br />
For 200% (Just above Epic Flyers) it is 21.00<br />
<br />
Be very careful using this one, most servers now have anti-speed hacking security measures and will log you out (Minimum) or ban you (Maximum) if caught.<br />
<br />
most servers give you three chances to "redeem your wicked ways" before they ban you though.<br />
<br />
------------------------------------------<br />
<br />
---TRACKINGS---<br />
<br />
This feature allows tracking for any class, even the lonely priest can now stalk himself some new friends or foes! =D<br />
<br />
Currently this feature allows two types of tracking followed by different sub-types therein.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Hunter Tracking Modes</span><br />
<br />
01 - Nothing<br />
<br />
02 - Everything (literally)<br />
<br />
03 - Beasts (Animals, cats, dogs, critters etcetera.)<br />
<br />
04 - Demons (Voidwalkers, Felstalkers, Imps etcetera.)<br />
<br />
05 - Dragonkin (Dragonspawn, Whelps, DRAGONS!)<br />
<br />
06 - Elementals (Fire, Water, Earth, Wind....er.... HEART! [LOL] i think that's it.)<br />
<br />
07 - Giants (Ogres, Giants, tall..things)<br />
<br />
08 - Humanoids (Players, NPCs, Any type of creature resembling a Human in shape, figure and form.)<br />
<br />
09 - Misc. ( I'm not sure, maybe pets? Help on this would be appreciated)<br />
<br />
10 - Undead (Forsaken, Ghouls, Zombies etcetera.)<br />
<br />
11 - Slimes (Self-explanatory)<br />
<br />
12 - Machines (Robots, Harvesters, constructs etcetera.)<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Herbs, Minerals, Treasure</span><br />
<br />
01 - Nothing<br />
<br />
02 - Everything (Self-explanatory)<br />
<br />
03 - Herbs<br />
<br />
04 - Minerals<br />
<br />
05 - Treasures<br />
<br />
06 - Herbs and Minerals<br />
<br />
07 - Herbs and Treasures<br />
<br />
08 - Minerals and Treasures<br />
<br />
09 - Herbs and Minerals and Treasures<br />
<br />
------------------------------------------<br />
<br />
---WALL CLIMB---<br />
<br />
This one is very simple, when turned on, it allows your character<br />
<br />
to run over mountains and some walls as if they were flat ground.<br />
<br />
I can't explain it much better than that.<br />
<br />
------------------------------------------<br />
<br />
---NO FALL DAMAGE---<br />
<br />
Turns off (or on) fall damage you take when falling from a great height. In my experience this doesn't work 100% every time. I've fallen from great heights and taken full damage, no damage, or a very small amount of damage.<br />
<br />
------------------------------------------<br />
<br />
---TELEPORT TO PLANE---<br />
<br />
Places you on an equal ground level and disables landscapes.<br />
<br />
It's only a visual effect, so if you use it and walk towards a hill, your character will react as if there is a hill there.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Uses: </span>Make yourself invisible to everyone including GMs, Kill someone when you are mind controlling them as a priest, they will T2P but since they don't have WEH they just fall through the ground and die. XD<br />
<br />
------------------------------------------<br />
<br />
---FLYMODE---<br />
<br />
This is probably the second most useful feature of WEH.<br />
<br />
When enabled it will put you into the air a few feet above where you were standing, and you'll be able to "swim" through the air, and fly anywhere.<br />
<br />
This is visable to other players, so avoid using it in populated areas.<br />
<br />
When disable, you'll be standing in the air, and if you move, you will fall.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">NOTE: Fly Mode CANNOT be effectively used in mid-air, you must be standing still to use it!!!<br />
works well when combined with speedhack to get you places. <img src="https://www.ownedcore.com/forums/images/smilies/wink.png" loading="lazy"  alt="[Image: wink.png]" class="mycode_img" /></span><br />
<br />
------------------------------------------<br />
<br />
---WALK ON WATER---<br />
<br />
This function works just like the Water Walking shaman spell, but it cannot be dispelled and it lasts until you turn it back off.<br />
<br />
Very useful if you don't want to swim across that annoying lake in your way, if you want to play around on the ocean, or if you want to blaspheme with your friends! =D<br />
<br />
------------------------------------------<br />
<br />
---HYPER MODE---<br />
<br />
This greatly speeds up the WoW client, and is effectively just a speed hack. It has no noticeable effect on any kind of cooldowns.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">NOTE: use this at your own risk, there has been a few reports of this messing up peoples' computers.</span><br />
<br />
------------------------------------------<br />
<br />
---PLACE TO PLACE TELEPORTING---<br />
<br />
Once enabled you do CTRL + NUMPAD 1 2 or 3 and it stores that location in temp memory<br />
<br />
you can then teleport between these points by just hitting NUMPAD 1 2 3 (depending on which ones you stored locations at)<br />
<br />
------------------------------------------<br />
<br />
---ALLOW MODEL HACKS---<br />
<br />
Allows you to use custom model hacking / editing patches.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">NOTE: works just like the ModelEditFix program.</span><br />
<br />
------------------------------------------<br />
<br />
---GRAVITY CONTROL---<br />
<br />
This messes with the gravity and allows you to jump to great heights.<br />
<br />
This can be used when fly hacking is disabled on some servers.<br />
<br />
Other than that, it has little use.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">NOTE: CANNOT BE USED WITH WOW VERSIONS AFTER 3.0.3!</span><br />
<br />
------------------------------------------<br />
<br />
---CHANGE MODEL SIZE---<br />
<br />
Change the size of your character model, from a miniscule spec to an annoying, over enlarged titan!<br />
<br />
Note that this is strictly clientside based. This means that you and only you can see the effects of this, no-one else.<br />
<br />
------------------------------------------<br />
<br />
---NO CLIP---<br />
<br />
This one can be slightly misleading. It allows you to nudge yourself a<br />
<br />
few feet forward, however you MUST make a hotkey in WEH for "No Clip Action" be sure and make it one you don't often use, and no "Letter Keys" as they're used for typing. (You wouldn't want to be sending a friend a PM and then suddenly burst through a wall and fall off the edge of the universe again would you?)<br />
<br />
You can use No Clip to get by ANY walls, even game objects, and landscape. Be careful not to fall below the ground.<br />
<br />
------------------------------------------<br />
<br />
---INCREASE XYZ---<br />
<br />
Increases the value of the corresponding axis value. X is width, Y is Length, and Z is Height.<br />
<br />
------------------------------------------<br />
<br />
---DECREASE XYZ---<br />
<br />
Decreases the corresponding axis value. X is width, Y is length and Z is Height.<br />
<br />
------------------------------------------<br />
<br />
---AIR JUMP---<br />
<br />
This feature allows you to double jump / climb in the air or over objects using jump rather then flying<br />
<br />
------------------------------------------<br />
<br />
---WATER BREATHING---<br />
<br />
As the name says this option will allow you to breath underwater. This option also enables you to stay mounted in water.<br />
<br />
You Might also find this option allows you to do some other things as well.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">NOTE: This Option is NO LONGER AVAILABLE IN WEH</span><br />
<br />
------------------------------------------<br />
<br />
---FACTION---<br />
<br />
This feature allows you to change your Faction ID to the corresponding selected value.<br />
<br />
01 - Creature<br />
<br />
Blood Elf<br />
<br />
BloodSail Buccaneers<br />
<br />
Demon<br />
<br />
Dranei<br />
<br />
Dwarf<br />
<br />
Gnome<br />
<br />
Human<br />
<br />
Night Elf<br />
<br />
Orc<br />
<br />
Tauren<br />
<br />
Troll<br />
<br />
Undead<br />
<br />
---ROSETTA STONE---<br />
<br />
This useful feature will allow you to speak in the same language that GMs use, making it so that every player can understand you. Yes, even those Alliance can understand what you mean by "ZugZug Kek"<br />
<br />
------------------------------------------<br />
<br />
---SETUP HOTKEYS---<br />
<br />
Allows you to hotkey WEH controls to keys on your keyboard.<br />
<br />
------------------------------------------<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Credits</span><br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?showuser=2" target="_blank" rel="noopener" class="mycode_url">Devalina</a> for making the WoW Emu Hacker program, and dealing with all the idiotic and annoying questions she always gets.<br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?showuser=29540" target="_blank" rel="noopener" class="mycode_url">Lucent</a> for writing this awesome guide (Yes, I am very conceited XD)<br />
<br />
Khadji for getting me into WoW and teaching me my first WoW Exploit all those years ago.<br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?showuser=53237" target="_blank" rel="noopener" class="mycode_url">Invisibility</a> for his awesome Idea to use WINE HQ so that MAC/LINUX/UBUNTU Users can enjoy WEH too. <img src="https://www.ownedcore.com/forums/images/smilies/smile.png" loading="lazy"  alt="[Image: smile.png]" class="mycode_img" /><br />
<br />
<a href="http://&amp;quot;http://www.deathsoft.com" target="_blank" rel="noopener" class="mycode_url">Deathsoft</a> for providing such a wonderful community and opportunities to share exploits.<br />
<br />
<a href="http://www.mmowned.com/forums/members/exiled1120.html" target="_blank" rel="noopener" class="mycode_url">Exiled1120</a> for suggesting putting each download up.<br />
<br />
To Be Expected:<br />
<br />
A few more updates including tips and tricks on the use of these functions<br />
<br />
and more content possibly should Devalina ever choose to do so. <img src="https://www.ownedcore.com/forums/images/smilies/smile.png" loading="lazy"  alt="[Image: smile.png]" class="mycode_img" /><br />
<br />
EDIT(S):Multiple edits done to ensure easiness to understand, fix spelling mistakes, upload realmlist,add people to credits, blah blah blah.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">IF I LEFT ANYTHING OUT AT ALL, OR MISSED ANYTHING, OR MESSED UP, PLEASE LET ME KNOW SO THAT I MAY RECTIFY THE PROBLEM <img src="https://www.ownedcore.com/forums/images/smilies/smile.png" loading="lazy"  alt="[Image: smile.png]" class="mycode_img" /> send me a PM, no emails. </span><br />
<br />
 Before anyone says I stole this, leeched it what have you, I am the writer of this guide and the original Lucent~/Warlord Gorguts/Gorguts/Valken/Belisarius of Deathsoft.com. Any flaming posts will be disregarded and/or reported for harrassment.<br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?act=attach&amp;type=post&amp;id=1899" target="_blank" rel="noopener" class="mycode_url">Download .doc version of this guide</a><br />
<br />
<a href="http://www.deathsoft.com/forum/index.php?act=attach&amp;type=post&amp;id=1922" target="_blank" rel="noopener" class="mycode_url">Download realmlist.txt with custom Eternion WoW spots.</a></blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Archive] WoW PROJECT EPOCH Leveling GRIND BOT [SAFE-CHEAP]]]></title>
			<link>https://elijahketchersid.com/forums/thread-8816.html</link>
			<pubDate>Tue, 04 Nov 2025 12:44:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://elijahketchersid.com/forums/member.php?action=profile&uid=1">Juae</a>]]></dc:creator>
			<guid isPermaLink="false">https://elijahketchersid.com/forums/thread-8816.html</guid>
			<description><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Juae • Posted: 2025-11-04T13:44:41.582195</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/1093509-wow-project-epoch-leveling-grind-bot-safe-cheap.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite><span style="font-weight: bold;" class="mycode_b">Hey, i'm providing a leveling grind bot for wow private server "project epoch"<br />
The bot will farm mobs continously &amp; safely </span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"> &gt; Informations &lt;  </span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><br />
- Works for Horde &amp; Alliance<br />
- The bot will always work and never get fixed<br />
- It's extremly easy to use and take one minute to setup<br />
- Works on any computers, you will be refunded if for some reasons it's not working on your PC<br />
- Works alt tabbed, you can play other games or browse internet while botting<br />
- Safe file, no malwares</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">&gt; Is it safe to use ? &lt; </span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">-  There is no risk of bans at all<br />
-  Not a single ban, used it on many servers<br />
-  It's the only safe bot available on the market<br />
-  It's not a "hack or cheat" , won't inject anything in the game !</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"> &gt;  Contact &lt;  </span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Add me on discord if you want it</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">DISCORD : awesome157</span></blockquote>
]]></description>
			<content:encoded><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Juae • Posted: 2025-11-04T13:44:41.582195</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/1093509-wow-project-epoch-leveling-grind-bot-safe-cheap.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite><span style="font-weight: bold;" class="mycode_b">Hey, i'm providing a leveling grind bot for wow private server "project epoch"<br />
The bot will farm mobs continously &amp; safely </span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"> &gt; Informations &lt;  </span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"><br />
- Works for Horde &amp; Alliance<br />
- The bot will always work and never get fixed<br />
- It's extremly easy to use and take one minute to setup<br />
- Works on any computers, you will be refunded if for some reasons it's not working on your PC<br />
- Works alt tabbed, you can play other games or browse internet while botting<br />
- Safe file, no malwares</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">&gt; Is it safe to use ? &lt; </span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">-  There is no risk of bans at all<br />
-  Not a single ban, used it on many servers<br />
-  It's the only safe bot available on the market<br />
-  It's not a "hack or cheat" , won't inject anything in the game !</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b"> &gt;  Contact &lt;  </span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Add me on discord if you want it</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">DISCORD : awesome157</span></blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Archive] Honorbuddy-MoP-5.4.8-18414]]></title>
			<link>https://elijahketchersid.com/forums/thread-8815.html</link>
			<pubDate>Tue, 04 Nov 2025 12:44:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://elijahketchersid.com/forums/member.php?action=profile&uid=1">Likon69330</a>]]></dc:creator>
			<guid isPermaLink="false">https://elijahketchersid.com/forums/thread-8815.html</guid>
			<description><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Likon69330 • Posted: 2025-11-04T13:44:41.527678</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/1052246-honorbuddy-mop-5-4-8-18414-a.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite><span style="font-weight: bold;" class="mycode_b">Do not play on big servers. You will get banned. I'm not responsible.<br />
Tauriwow = BAN<br />
Stormforge = BAN</span><br />
<br />
How to execute it<br />
<br />
|<br />
<br />
add this lines to<br />
<br />
C:\Windows\System32\drivers\etc\hosts<br />
<br />
127.0.0.1 eu1.auth.buddyauth.com<br />
<br />
127.0.0.1 eu2.auth.buddyauth.com<br />
<br />
127.0.0.1 eu3.auth.buddyauth.com<br />
<br />
||<br />
<br />
Go to folder<br />
<br />
Honorbuddy/auth<br />
<br />
Start<br />
<br />
Buddy_Auth.exe (must do this every time)<br />
<br />
|||<br />
<br />
Start<br />
<br />
Honorbuddy.exe<br />
<br />
Key: 12345678901234567890<br />
<br />
IMPORTANT<br />
<br />
Your game must be<br />
<br />
Directx11<br />
<br />
Wow.exe(32 BITS)<br />
<br />
Authors<br />
<br />
Bossland GmbH<br />
<br />
Contributors<br />
<br />
Thx for help me : Vo1d, Err0r, Manjaro. Many thanks to the developer of the Honorbuddy content. Your profiles and plugins are always very useful. Kickazz006, Akna, Brodie, Cava, Vitalic, Twist, Echo, etc.<br />
<br />
About<br />
<br />
Honorbuddy for World of Warcraft Mists of Pandaria 5.4.8 (18414)<br />
<br />
<a href="https://github.com/Likon69/Honorbuddy-MoP-5.4.8-18414" target="_blank" rel="noopener" class="mycode_url">link</a> : github</blockquote>
]]></description>
			<content:encoded><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Likon69330 • Posted: 2025-11-04T13:44:41.527678</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/1052246-honorbuddy-mop-5-4-8-18414-a.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite><span style="font-weight: bold;" class="mycode_b">Do not play on big servers. You will get banned. I'm not responsible.<br />
Tauriwow = BAN<br />
Stormforge = BAN</span><br />
<br />
How to execute it<br />
<br />
|<br />
<br />
add this lines to<br />
<br />
C:\Windows\System32\drivers\etc\hosts<br />
<br />
127.0.0.1 eu1.auth.buddyauth.com<br />
<br />
127.0.0.1 eu2.auth.buddyauth.com<br />
<br />
127.0.0.1 eu3.auth.buddyauth.com<br />
<br />
||<br />
<br />
Go to folder<br />
<br />
Honorbuddy/auth<br />
<br />
Start<br />
<br />
Buddy_Auth.exe (must do this every time)<br />
<br />
|||<br />
<br />
Start<br />
<br />
Honorbuddy.exe<br />
<br />
Key: 12345678901234567890<br />
<br />
IMPORTANT<br />
<br />
Your game must be<br />
<br />
Directx11<br />
<br />
Wow.exe(32 BITS)<br />
<br />
Authors<br />
<br />
Bossland GmbH<br />
<br />
Contributors<br />
<br />
Thx for help me : Vo1d, Err0r, Manjaro. Many thanks to the developer of the Honorbuddy content. Your profiles and plugins are always very useful. Kickazz006, Akna, Brodie, Cava, Vitalic, Twist, Echo, etc.<br />
<br />
About<br />
<br />
Honorbuddy for World of Warcraft Mists of Pandaria 5.4.8 (18414)<br />
<br />
<a href="https://github.com/Likon69/Honorbuddy-MoP-5.4.8-18414" target="_blank" rel="noopener" class="mycode_url">link</a> : github</blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Archive] [Reborn] Honorbuddy 2.0.0.5999, Cataclysm 4 3 4]]></title>
			<link>https://elijahketchersid.com/forums/thread-8814.html</link>
			<pubDate>Tue, 04 Nov 2025 12:44:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://elijahketchersid.com/forums/member.php?action=profile&uid=1">Likon69330</a>]]></dc:creator>
			<guid isPermaLink="false">https://elijahketchersid.com/forums/thread-8814.html</guid>
			<description><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Likon69330 • Posted: 2025-11-04T13:44:41.431504</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/902291-reborn-honorbuddy-2-0-0-5999-cataclysm-4-3-4-a.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>							| How to execute it<br />
<br />
go into :<br />
<br />
?:\Windows\System32\drivers\etc\Hosts<br />
<br />
added it's lines :<br />
<br />
[QUOTE]<br />
<br />
127.0.0.1 auth3.buddyauth.com<br />
<br />
127.0.0.1 auth2.buddyauth.com<br />
<br />
127.0.0.1 "www.buddyauth.com"<br />
<br />
remove "" for www<br />
<br />
II<br />
<br />
go to file : Honorbuddy 2.0.0.5999 (4.3.4)\Auth<br />
<br />
start it : Auth.exe (must do it every time)<br />
<br />
III<br />
<br />
go to file : Honorbuddy 2.0.0.5999 (4.3.4)\HBRelog<br />
<br />
start it : HBRelog<br />
<br />
HBRelog Account config.<br />
<br />
<a href="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/87706d1731795611-reborn-honorbuddy-2-0-0-5999-cataclysm-4-3-4-a-68747470733a2f2f692e6962622e636f2f7a5167743742632f312e706e67-1-png" target="_blank" rel="noopener" class="mycode_url">68747470733a2f2f692e6962622e636f2f7a5167743742632f312e706e67 (1).png</a><br />
<br />
This software launches the game and the bot. (You are required to use HBRelog to connect to the game. Directx9 problem in Windows 10. If not the game crashed with error 132.)<br />
<br />
Adds your account name.<br />
<br />
Adds your password.<br />
<br />
Adds your realmlist name and character name.<br />
<br />
Indicates where wow.exe is located.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">HBRelog Bot config</span><br />
<br />
<a href="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/87707d1731796142-reborn-honorbuddy-2-0-0-5999-cataclysm-4-3-4-a-68747470733a2f2f692e6962622e636f2f5951784a7772762f322e706e67-png" target="_blank" rel="noopener" class="mycode_url">68747470733a2f2f692e6962622e636f2f5951784a7772762f322e706e67.png</a><br />
<br />
Shows where Honorbuddy.exe is located.<br />
<br />
Make start.<br />
<br />
I just throw the wow with HBReloag. I let it connect to accounte and close it. Honorbuddy I launch myself.<br />
<br />
ID 1<br />
<br />
PASS 1<br />
<br />
Authors<br />
<br />
Bossland GmbH<br />
<br />
Contributors<br />
<br />
RCorsair (My help to set up this version and fix the bugs.)<br />
<br />
MausFarm (My help with the information about xml.)<br />
<br />
Mullz (Fixed 2 CR)<br />
<br />
Many thanks to the developer of the Honorbuddy content. Your profiles and plugins are always very useful. Kickazz006, Akna, Brodie, Cava, Vitalic, Twist, Echo, etc.<br />
<br />
<a href="https://github.com/Likon69/HonorBuddy-2.0.0.5999-WoW-4.3.4" target="_blank" rel="noopener" class="mycode_url">github</a>all history and file.</blockquote>
<img src="https://www.ownedcore.com/forums/images/styles/OwnedCoreFX/misc/paperclip.svg" loading="lazy"  alt="[Image: paperclip.svg]" class="mycode_img" /> Attached Thumbnails<br />
<a href="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/72757d1592249189-reborn-honorbuddy-2-0-0-5999-cataclysm-4-3-4-a-demonstration-png" target="_blank" rel="noopener" class="mycode_url"><img src="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/72757d1592248349t-reborn-honorbuddy-2-0-0-5999-cataclysm-4-3-4-a-demonstration-png" loading="lazy"  alt="[Image: 72757d1592248349t-reborn-honorbuddy-2-0-...ration-png]" class="mycode_img" /></a><br />
<br />
<a href="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/73056d1593820836-reborn-honorbuddy-2-0-0-5999-cataclysm-4-3-4-a-demonstration-jpg" target="_blank" rel="noopener" class="mycode_url"><img src="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/73056d1593820836t-reborn-honorbuddy-2-0-0-5999-cataclysm-4-3-4-a-demonstration-jpg" loading="lazy"  alt="[Image: 73056d1593820836t-reborn-honorbuddy-2-0-...ration-jpg]" class="mycode_img" /></a>]]></description>
			<content:encoded><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Likon69330 • Posted: 2025-11-04T13:44:41.431504</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/902291-reborn-honorbuddy-2-0-0-5999-cataclysm-4-3-4-a.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>							| How to execute it<br />
<br />
go into :<br />
<br />
?:\Windows\System32\drivers\etc\Hosts<br />
<br />
added it's lines :<br />
<br />
[QUOTE]<br />
<br />
127.0.0.1 auth3.buddyauth.com<br />
<br />
127.0.0.1 auth2.buddyauth.com<br />
<br />
127.0.0.1 "www.buddyauth.com"<br />
<br />
remove "" for www<br />
<br />
II<br />
<br />
go to file : Honorbuddy 2.0.0.5999 (4.3.4)\Auth<br />
<br />
start it : Auth.exe (must do it every time)<br />
<br />
III<br />
<br />
go to file : Honorbuddy 2.0.0.5999 (4.3.4)\HBRelog<br />
<br />
start it : HBRelog<br />
<br />
HBRelog Account config.<br />
<br />
<a href="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/87706d1731795611-reborn-honorbuddy-2-0-0-5999-cataclysm-4-3-4-a-68747470733a2f2f692e6962622e636f2f7a5167743742632f312e706e67-1-png" target="_blank" rel="noopener" class="mycode_url">68747470733a2f2f692e6962622e636f2f7a5167743742632f312e706e67 (1).png</a><br />
<br />
This software launches the game and the bot. (You are required to use HBRelog to connect to the game. Directx9 problem in Windows 10. If not the game crashed with error 132.)<br />
<br />
Adds your account name.<br />
<br />
Adds your password.<br />
<br />
Adds your realmlist name and character name.<br />
<br />
Indicates where wow.exe is located.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">HBRelog Bot config</span><br />
<br />
<a href="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/87707d1731796142-reborn-honorbuddy-2-0-0-5999-cataclysm-4-3-4-a-68747470733a2f2f692e6962622e636f2f5951784a7772762f322e706e67-png" target="_blank" rel="noopener" class="mycode_url">68747470733a2f2f692e6962622e636f2f5951784a7772762f322e706e67.png</a><br />
<br />
Shows where Honorbuddy.exe is located.<br />
<br />
Make start.<br />
<br />
I just throw the wow with HBReloag. I let it connect to accounte and close it. Honorbuddy I launch myself.<br />
<br />
ID 1<br />
<br />
PASS 1<br />
<br />
Authors<br />
<br />
Bossland GmbH<br />
<br />
Contributors<br />
<br />
RCorsair (My help to set up this version and fix the bugs.)<br />
<br />
MausFarm (My help with the information about xml.)<br />
<br />
Mullz (Fixed 2 CR)<br />
<br />
Many thanks to the developer of the Honorbuddy content. Your profiles and plugins are always very useful. Kickazz006, Akna, Brodie, Cava, Vitalic, Twist, Echo, etc.<br />
<br />
<a href="https://github.com/Likon69/HonorBuddy-2.0.0.5999-WoW-4.3.4" target="_blank" rel="noopener" class="mycode_url">github</a>all history and file.</blockquote>
<img src="https://www.ownedcore.com/forums/images/styles/OwnedCoreFX/misc/paperclip.svg" loading="lazy"  alt="[Image: paperclip.svg]" class="mycode_img" /> Attached Thumbnails<br />
<a href="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/72757d1592249189-reborn-honorbuddy-2-0-0-5999-cataclysm-4-3-4-a-demonstration-png" target="_blank" rel="noopener" class="mycode_url"><img src="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/72757d1592248349t-reborn-honorbuddy-2-0-0-5999-cataclysm-4-3-4-a-demonstration-png" loading="lazy"  alt="[Image: 72757d1592248349t-reborn-honorbuddy-2-0-...ration-png]" class="mycode_img" /></a><br />
<br />
<a href="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/73056d1593820836-reborn-honorbuddy-2-0-0-5999-cataclysm-4-3-4-a-demonstration-jpg" target="_blank" rel="noopener" class="mycode_url"><img src="https://www.ownedcore.com/forums/attachments/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/73056d1593820836t-reborn-honorbuddy-2-0-0-5999-cataclysm-4-3-4-a-demonstration-jpg" loading="lazy"  alt="[Image: 73056d1593820836t-reborn-honorbuddy-2-0-...ration-jpg]" class="mycode_img" /></a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Archive] Meet BetterBot - a new advanced bot & tool for legacy WoW]]></title>
			<link>https://elijahketchersid.com/forums/thread-8813.html</link>
			<pubDate>Tue, 04 Nov 2025 12:44:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://elijahketchersid.com/forums/member.php?action=profile&uid=1">Grimmfang</a>]]></dc:creator>
			<guid isPermaLink="false">https://elijahketchersid.com/forums/thread-8813.html</guid>
			<description><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Grimmfang • Posted: 2025-11-04T13:44:41.338661</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/609334-meet-betterbot-new-advanced-bot-tool-legacy-wow.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite><img src="https://forum.betterbot.org/uploads/default/original/1X/e107e958d224a4a42cd4f61e569f0218b41e82d4.png" loading="lazy"  alt="[Image: e107e958d224a4a42cd4f61e569f0218b41e82d4.png]" class="mycode_img" /><br />
<br />
Greetings! <span style="font-weight: bold;" class="mycode_b">Discord: <a href="http://discord.me/betterbot" target="_blank" rel="noopener" class="mycode_url">Betterbot Discord</a><br />
APPLY AS TESTER: <a href="https://forum.betterbot.org/t/betterbot-alpha-registration/119?u=grimmfang" target="_blank" rel="noopener" class="mycode_url">Tester Signup</a><br />
</span><br />
<br />
I'm new on the scene here, but joined Ownedcore today to present a demo version of something long long in the making. Betterbot (<a href="https://betterbot.org" target="_blank" rel="noopener" class="mycode_url">Betterbot.org</a>) is a new WoW botting and hacking tool kit for creating extremely efficient bots. Our current iteration offers robust pathfinding, combat digest cycles, wallhack, scriptshop, movement &amp; combat entropy, a cutting edge UI and configuration panel, memory inspector, and other debug tools! Be sure to watch our video.<br />
<br />
Today my goal was just to make an announcement, but more detailed info will follow in the coming weeks. We're planning for a full launch in ~3 months. The ultimate goal is to build an RSBot-like community for legacy WoW.<br />
<br />
<a href="https://www.youtube.com/embed/YQ3TFIbfFUk?wmode=opaque" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/embed/YQ3TFIbfFUk?wmode=opaque</a><br />
<br />
<a href="https://www.youtube.com/embed/bF5RBLBHSHU?wmode=opaque" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/embed/bF5RBLBHSHU?wmode=opaque</a><br />
<br />
Right now we're running a closed alpha, but if you join us on our forum (<a href="http://forum.betterbot.org" target="_blank" rel="noopener" class="mycode_url">forum.betterbot.org</a>) and introduce yourself we may consider you as a beta participant. This is part of an initiative to get our forums active. If you're interested in BetterBot the best way to help out for the time being is to join in on the discussion there.<br />
<br />
Cheers,<br />
<br />
Grimmfang &amp; Orea</blockquote>
]]></description>
			<content:encoded><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Grimmfang • Posted: 2025-11-04T13:44:41.338661</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-emulator-servers/wow-emu-programs/609334-meet-betterbot-new-advanced-bot-tool-legacy-wow.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite><img src="https://forum.betterbot.org/uploads/default/original/1X/e107e958d224a4a42cd4f61e569f0218b41e82d4.png" loading="lazy"  alt="[Image: e107e958d224a4a42cd4f61e569f0218b41e82d4.png]" class="mycode_img" /><br />
<br />
Greetings! <span style="font-weight: bold;" class="mycode_b">Discord: <a href="http://discord.me/betterbot" target="_blank" rel="noopener" class="mycode_url">Betterbot Discord</a><br />
APPLY AS TESTER: <a href="https://forum.betterbot.org/t/betterbot-alpha-registration/119?u=grimmfang" target="_blank" rel="noopener" class="mycode_url">Tester Signup</a><br />
</span><br />
<br />
I'm new on the scene here, but joined Ownedcore today to present a demo version of something long long in the making. Betterbot (<a href="https://betterbot.org" target="_blank" rel="noopener" class="mycode_url">Betterbot.org</a>) is a new WoW botting and hacking tool kit for creating extremely efficient bots. Our current iteration offers robust pathfinding, combat digest cycles, wallhack, scriptshop, movement &amp; combat entropy, a cutting edge UI and configuration panel, memory inspector, and other debug tools! Be sure to watch our video.<br />
<br />
Today my goal was just to make an announcement, but more detailed info will follow in the coming weeks. We're planning for a full launch in ~3 months. The ultimate goal is to build an RSBot-like community for legacy WoW.<br />
<br />
<a href="https://www.youtube.com/embed/YQ3TFIbfFUk?wmode=opaque" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/embed/YQ3TFIbfFUk?wmode=opaque</a><br />
<br />
<a href="https://www.youtube.com/embed/bF5RBLBHSHU?wmode=opaque" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/embed/bF5RBLBHSHU?wmode=opaque</a><br />
<br />
Right now we're running a closed alpha, but if you join us on our forum (<a href="http://forum.betterbot.org" target="_blank" rel="noopener" class="mycode_url">forum.betterbot.org</a>) and introduce yourself we may consider you as a beta participant. This is part of an initiative to get our forums active. If you're interested in BetterBot the best way to help out for the time being is to join in on the discussion there.<br />
<br />
Cheers,<br />
<br />
Grimmfang &amp; Orea</blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Archive] [ShowOff] Wasteland]]></title>
			<link>https://elijahketchersid.com/forums/thread-8812.html</link>
			<pubDate>Tue, 04 Nov 2025 12:21:44 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://elijahketchersid.com/forums/member.php?action=profile&uid=1">ReznikShaman</a>]]></dc:creator>
			<guid isPermaLink="false">https://elijahketchersid.com/forums/thread-8812.html</guid>
			<description><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: ReznikShaman • Posted: 2025-11-04T13:21:44.812919</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-model-editing/wow-advanced-model-edits/645278-showoff-wasteland.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>							EDIT 17.7.2020 - Now you can download it here -&gt; <a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-model-editing/wow-advanced-model-edits/837874-my-unfinished-projects.html" target="_blank" rel="noopener" class="mycode_url">https://www.ownedcore.com/forums/wor...-projects.html (My unfinished projects)</a><br />
<br />
Hello,<br />
<br />
I would like to introduce my project with a working name "Wasteland". This project will be a replacement for Afterfall (<a href="http://www.modcraft.io/index.php?topic=3567.0" target="_blank" rel="noopener" class="mycode_url">[SHOWOFF] AFTERFALL (17.8.2014 last)</a>), which has never been finished... Very impatient I expected the Afterfall project, but it was over, I think it was a great shame. So I decided I'd like to finish it. My different style of world building decided that I was beginning to create a whole new one, because Filipsons (original Afterfall builder) did not want us to combine our styles. So I have permission to use the original data of Afterfall for my project and today it's been nearly a year since I started to do the Wasteland project.<br />
<br />
Unlike Afterfall (using Badlands), I'm making a completely new map with a lots of new models. I have three reasons for this project. I want get to be a little better in world building and get some new experience, I want to inspire others, I think this is the most important thing for modding community development and finally I always wanted to do something about this style :-) The map is larger than the vast majority of projects, so there is still a lot of work to do,  but I hope he will enjoy and inspire :-)<br />
<br />
<a href="https://www.youtube.com/embed/iwilo8Xi8HM?wmode=opaque" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/embed/iwilo8Xi8HM?wmode=opaque</a><br />
<br />
<a href="https://www.youtube.com/embed/vD8GhhuakNY?wmode=opaque" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/embed/vD8GhhuakNY?wmode=opaque</a><br />
<br />
<a href="https://www.youtube.com/embed/JwnI7J-aDGQ?wmode=opaque" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/embed/JwnI7J-aDGQ?wmode=opaque</a></blockquote>
]]></description>
			<content:encoded><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: ReznikShaman • Posted: 2025-11-04T13:21:44.812919</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-model-editing/wow-advanced-model-edits/645278-showoff-wasteland.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>							EDIT 17.7.2020 - Now you can download it here -&gt; <a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-model-editing/wow-advanced-model-edits/837874-my-unfinished-projects.html" target="_blank" rel="noopener" class="mycode_url">https://www.ownedcore.com/forums/wor...-projects.html (My unfinished projects)</a><br />
<br />
Hello,<br />
<br />
I would like to introduce my project with a working name "Wasteland". This project will be a replacement for Afterfall (<a href="http://www.modcraft.io/index.php?topic=3567.0" target="_blank" rel="noopener" class="mycode_url">[SHOWOFF] AFTERFALL (17.8.2014 last)</a>), which has never been finished... Very impatient I expected the Afterfall project, but it was over, I think it was a great shame. So I decided I'd like to finish it. My different style of world building decided that I was beginning to create a whole new one, because Filipsons (original Afterfall builder) did not want us to combine our styles. So I have permission to use the original data of Afterfall for my project and today it's been nearly a year since I started to do the Wasteland project.<br />
<br />
Unlike Afterfall (using Badlands), I'm making a completely new map with a lots of new models. I have three reasons for this project. I want get to be a little better in world building and get some new experience, I want to inspire others, I think this is the most important thing for modding community development and finally I always wanted to do something about this style :-) The map is larger than the vast majority of projects, so there is still a lot of work to do,  but I hope he will enjoy and inspire :-)<br />
<br />
<a href="https://www.youtube.com/embed/iwilo8Xi8HM?wmode=opaque" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/embed/iwilo8Xi8HM?wmode=opaque</a><br />
<br />
<a href="https://www.youtube.com/embed/vD8GhhuakNY?wmode=opaque" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/embed/vD8GhhuakNY?wmode=opaque</a><br />
<br />
<a href="https://www.youtube.com/embed/JwnI7J-aDGQ?wmode=opaque" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/embed/JwnI7J-aDGQ?wmode=opaque</a></blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Archive] Outerend, Wielder of the Great Dark]]></title>
			<link>https://elijahketchersid.com/forums/thread-8811.html</link>
			<pubDate>Tue, 04 Nov 2025 12:21:44 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://elijahketchersid.com/forums/member.php?action=profile&uid=1">Bloomfalls</a>]]></dc:creator>
			<guid isPermaLink="false">https://elijahketchersid.com/forums/thread-8811.html</guid>
			<description><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Bloomfalls • Posted: 2025-11-04T13:21:44.714725</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-model-editing/wow-advanced-model-edits/295005-outerend-wielder-of-great-dark.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>IT'S DONE<br />
<br />
<img src="http://img37.imageshack.us/img37/5160/outerendlogo2.jpg" loading="lazy"  alt="[Image: outerendlogo2.jpg]" class="mycode_img" /><br />
<br />
<span style="font-style: italic;" class="mycode_i">You face an otherworldly device - a staff-like contraption draining energy from what appears to be a planet. Drawing closer, you can see an enormous amount of detail in the globe, as if you stand in front of a door to the universe itself, ripping through the fabric of time and space. There's a careful craftsmanship in the artifact, apparently originating from the Titans, although the energy being emanated is unlike anything you've ever seen.<br />
<br />
Compelled by curiosity, you reach for the planet with your arm, longing to hold it, to feel an entire world in your hands. However, as you move towards it, the planet appears to be further and further away. You realize you're miles - no, thousands, thousands of miles away from it. As you stretch your arm in a last glimpse of hope you only realize how truly small it is compared to the vast greatness of the Dark Beyond.<br />
<br />
For a moment you thought yourself a God, thinking you could crush an entire world if that was your wish. You now gaze upon the invention, realizing in front of you lies an object - no, an entity - far beyond your comprehension. You hold it and feel a great surge of power invading your body.<br />
<br />
For a moment, you thought yourself a God.<br />
</span><br />
<br />
<a href="https://www.youtube.com/embed/OVSDyCQcNHY?wmode=opaque" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/embed/OVSDyCQcNHY?wmode=opaque</a><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Outerend</span> is my latest custom model, a Titan-themed Staff/Mace. If you haven't checked yet, please take a look at my previous model, <a href="http://www.mmowned.com/forums/world-of-warcraft/model-editing/advanced-model-edits/294652-magmadeep-two-handed-axe.html" target="_blank" rel="noopener" class="mycode_url">Magmadeep</a>. There are two versions of the model, one with and one without the universe behind.<br />
<br />
This was a fairly ambitious model. I wanted to make something heavy, see how far WoW engine could go. The model itself is EXTREMELY resource-intensive. I'll talk a bit about it:<br />
<br />
<img src="http://img33.imageshack.us/img33/2085/rendermorning.jpg" loading="lazy"  alt="[Image: rendermorning.jpg]" class="mycode_img" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">The Model</span><br />
<br />
Outerend is a staff with a planet in the end, where it's draining its energies from. The planet has a simulated atmospheric refraction on the surface and (to a lesser extent) atmospheric halo. It rotates and you can see some major waves in the water from time to time. There's also a Cloud layer moving across the surface.<br />
<br />
<img src="http://img375.imageshack.us/img375/3843/outerender5.jpg" loading="lazy"  alt="[Image: outerender5.jpg]" class="mycode_img" /><br />
<br />
If you're using the Universe version, behind (and always behind) the planet there's always an universe field with some stars and galaxies on the background. They move around, but not at the same time... some stars move slower than others, etc. You'll most likely not want to use the universe version because it's distracting, but I recommend testing it at least once to see the effect.<br />
<br />
<img src="http://img337.imageshack.us/img337/9853/outerender01.jpg" loading="lazy"  alt="[Image: outerender01.jpg]" class="mycode_img" /><br />
<br />
The body of the staff itself follows the Titans theme and color scheme, although because of the effects I used it will definitely resemble a bit the Protoss theme from Starcraft 2... not my fault they're so similar. The metal uses <a href="http://www.mmowned.com/forums/world-of-warcraft/model-editing/tools-guides/294898-advanced-materials-effect-development.html" target="_blank" rel="noopener" class="mycode_url">my metal shader as described in this thread</a>, with modifications to suit the model.<br />
<br />
There's a grand total of <span style="font-weight: bold;" class="mycode_b">20 textures</span> for this model. Yes, I know it's not feasible to make a game entirely of textures like this, no, it's not optimal, yes, the file size is huge and my next models will probably not be so intensive like this one. Every single texture has been painted by hand - NO photos or pre-made textures were used, even for the Cloud layer. The only texture that wasn't painted by hand is the Ambient Occlusion map, but it's also not a photo, just a render from mathematical calculations.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Screenshots:</span><br />
<br />
Screenshots don't really do much justice. If anyone can record a video, I'll appreciate.<br />
<br />
<img src="http://img375.imageshack.us/img375/2168/outerender02.jpg" loading="lazy"  alt="[Image: outerender02.jpg]" class="mycode_img" /><br />
<br />
<img src="http://img413.imageshack.us/img413/1378/outerender1.jpg" loading="lazy"  alt="[Image: outerender1.jpg]" class="mycode_img" /><br />
<br />
<img src="http://img163.imageshack.us/img163/8899/outerender04.jpg" loading="lazy"  alt="[Image: outerender04.jpg]" class="mycode_img" /><br />
<br />
<img src="http://img163.imageshack.us/img163/1802/outerender6.jpg" loading="lazy"  alt="[Image: outerender6.jpg]" class="mycode_img" /><br />
<br />
<img src="http://img684.imageshack.us/img684/907/outerender7.jpg" loading="lazy"  alt="[Image: outerender7.jpg]" class="mycode_img" /><br />
<br />
<img src="http://img94.imageshack.us/img94/3127/outerender2.jpg" loading="lazy"  alt="[Image: outerender2.jpg]" class="mycode_img" /><br />
<br />
<img src="http://img215.imageshack.us/img215/6378/outerendfinal2.jpg" loading="lazy"  alt="[Image: outerendfinal2.jpg]" class="mycode_img" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Download:</span><br />
<br />
Version 1.0:<br />
<br />
There are two versions, with the universe background and without.<br />
<br />
No Universe: <a href="http://www.mediafire.com/?8vo6o4zl29p95ll" target="_blank" rel="noopener" class="mycode_url">Download here</a><br />
<br />
Universe: <a href="http://www.mediafire.com/?lwxa96lqccj127v" target="_blank" rel="noopener" class="mycode_url">Download here</a><br />
<br />
<span style="font-weight: bold;" class="mycode_b">How to use:</span><br />
<br />
1) Download the file of your choice.<br />
<br />
2) Locate the file name of the weapon you want to change it. You can use a viewer such as WoW Model Viewer to find the weapon.<br />
<br />
3) Open the file you downloaded in a MPQ editor such as Ladik's MPQ Editor or any other of your preference.<br />
<br />
4) Browse to the folder ITEM &gt; ObjectComponents &gt; Weapon in the file. Rename the .m2 file to the name of the file corresponding to your weapon you got in step 2. Change the .skin file to that same name, except with 00 in the end (so if the file is genericweapon1, the m2 will be genericweapon1.m2 and the skin will be genericweapon100.skin).<br />
<br />
5) DO NOT touch any other file in the mpq!<br />
<br />
6) Rename the MPQ to patch-x.MPQ. For example, patch-6.MPQ<br />
<br />
7) Drop the file in the Data folder in your WoW directory. Don't overwrite anything, if the number you chose for the MPQ file is already used, choose one that isn't.<br />
<br />
<img src="https://www.ownedcore.com/forums/images/smilies/cool.gif" loading="lazy"  alt="[Image: cool.gif]" class="mycode_img" /> Enjoy!<br />
<br />
Note: I DO NOT DO CUSTOM MODEL SWAPS. I WILL NOT MAKE A CUSTOM MPQ FOR YOU. DO &gt;NOT&lt; ASK ME. There ARE MPQ editors that work in Mac.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Other:</span><br />
<br />
Any questions feel free to ask. I'll not do any custom changes to a weapon. I will however try to fix any issues if something is preventing you from changing it correctly. I ask patience if there's any issue or bug. I'll upload new versions if I update the item.<br />
<br />
Thank you very much for your interest. As always, C&amp;C is duly appreciated.<br />
<br />
Enjoy!</blockquote>
]]></description>
			<content:encoded><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: Bloomfalls • Posted: 2025-11-04T13:21:44.714725</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-model-editing/wow-advanced-model-edits/295005-outerend-wielder-of-great-dark.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>IT'S DONE<br />
<br />
<img src="http://img37.imageshack.us/img37/5160/outerendlogo2.jpg" loading="lazy"  alt="[Image: outerendlogo2.jpg]" class="mycode_img" /><br />
<br />
<span style="font-style: italic;" class="mycode_i">You face an otherworldly device - a staff-like contraption draining energy from what appears to be a planet. Drawing closer, you can see an enormous amount of detail in the globe, as if you stand in front of a door to the universe itself, ripping through the fabric of time and space. There's a careful craftsmanship in the artifact, apparently originating from the Titans, although the energy being emanated is unlike anything you've ever seen.<br />
<br />
Compelled by curiosity, you reach for the planet with your arm, longing to hold it, to feel an entire world in your hands. However, as you move towards it, the planet appears to be further and further away. You realize you're miles - no, thousands, thousands of miles away from it. As you stretch your arm in a last glimpse of hope you only realize how truly small it is compared to the vast greatness of the Dark Beyond.<br />
<br />
For a moment you thought yourself a God, thinking you could crush an entire world if that was your wish. You now gaze upon the invention, realizing in front of you lies an object - no, an entity - far beyond your comprehension. You hold it and feel a great surge of power invading your body.<br />
<br />
For a moment, you thought yourself a God.<br />
</span><br />
<br />
<a href="https://www.youtube.com/embed/OVSDyCQcNHY?wmode=opaque" target="_blank" rel="noopener" class="mycode_url">https://www.youtube.com/embed/OVSDyCQcNHY?wmode=opaque</a><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Outerend</span> is my latest custom model, a Titan-themed Staff/Mace. If you haven't checked yet, please take a look at my previous model, <a href="http://www.mmowned.com/forums/world-of-warcraft/model-editing/advanced-model-edits/294652-magmadeep-two-handed-axe.html" target="_blank" rel="noopener" class="mycode_url">Magmadeep</a>. There are two versions of the model, one with and one without the universe behind.<br />
<br />
This was a fairly ambitious model. I wanted to make something heavy, see how far WoW engine could go. The model itself is EXTREMELY resource-intensive. I'll talk a bit about it:<br />
<br />
<img src="http://img33.imageshack.us/img33/2085/rendermorning.jpg" loading="lazy"  alt="[Image: rendermorning.jpg]" class="mycode_img" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">The Model</span><br />
<br />
Outerend is a staff with a planet in the end, where it's draining its energies from. The planet has a simulated atmospheric refraction on the surface and (to a lesser extent) atmospheric halo. It rotates and you can see some major waves in the water from time to time. There's also a Cloud layer moving across the surface.<br />
<br />
<img src="http://img375.imageshack.us/img375/3843/outerender5.jpg" loading="lazy"  alt="[Image: outerender5.jpg]" class="mycode_img" /><br />
<br />
If you're using the Universe version, behind (and always behind) the planet there's always an universe field with some stars and galaxies on the background. They move around, but not at the same time... some stars move slower than others, etc. You'll most likely not want to use the universe version because it's distracting, but I recommend testing it at least once to see the effect.<br />
<br />
<img src="http://img337.imageshack.us/img337/9853/outerender01.jpg" loading="lazy"  alt="[Image: outerender01.jpg]" class="mycode_img" /><br />
<br />
The body of the staff itself follows the Titans theme and color scheme, although because of the effects I used it will definitely resemble a bit the Protoss theme from Starcraft 2... not my fault they're so similar. The metal uses <a href="http://www.mmowned.com/forums/world-of-warcraft/model-editing/tools-guides/294898-advanced-materials-effect-development.html" target="_blank" rel="noopener" class="mycode_url">my metal shader as described in this thread</a>, with modifications to suit the model.<br />
<br />
There's a grand total of <span style="font-weight: bold;" class="mycode_b">20 textures</span> for this model. Yes, I know it's not feasible to make a game entirely of textures like this, no, it's not optimal, yes, the file size is huge and my next models will probably not be so intensive like this one. Every single texture has been painted by hand - NO photos or pre-made textures were used, even for the Cloud layer. The only texture that wasn't painted by hand is the Ambient Occlusion map, but it's also not a photo, just a render from mathematical calculations.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Screenshots:</span><br />
<br />
Screenshots don't really do much justice. If anyone can record a video, I'll appreciate.<br />
<br />
<img src="http://img375.imageshack.us/img375/2168/outerender02.jpg" loading="lazy"  alt="[Image: outerender02.jpg]" class="mycode_img" /><br />
<br />
<img src="http://img413.imageshack.us/img413/1378/outerender1.jpg" loading="lazy"  alt="[Image: outerender1.jpg]" class="mycode_img" /><br />
<br />
<img src="http://img163.imageshack.us/img163/8899/outerender04.jpg" loading="lazy"  alt="[Image: outerender04.jpg]" class="mycode_img" /><br />
<br />
<img src="http://img163.imageshack.us/img163/1802/outerender6.jpg" loading="lazy"  alt="[Image: outerender6.jpg]" class="mycode_img" /><br />
<br />
<img src="http://img684.imageshack.us/img684/907/outerender7.jpg" loading="lazy"  alt="[Image: outerender7.jpg]" class="mycode_img" /><br />
<br />
<img src="http://img94.imageshack.us/img94/3127/outerender2.jpg" loading="lazy"  alt="[Image: outerender2.jpg]" class="mycode_img" /><br />
<br />
<img src="http://img215.imageshack.us/img215/6378/outerendfinal2.jpg" loading="lazy"  alt="[Image: outerendfinal2.jpg]" class="mycode_img" /><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Download:</span><br />
<br />
Version 1.0:<br />
<br />
There are two versions, with the universe background and without.<br />
<br />
No Universe: <a href="http://www.mediafire.com/?8vo6o4zl29p95ll" target="_blank" rel="noopener" class="mycode_url">Download here</a><br />
<br />
Universe: <a href="http://www.mediafire.com/?lwxa96lqccj127v" target="_blank" rel="noopener" class="mycode_url">Download here</a><br />
<br />
<span style="font-weight: bold;" class="mycode_b">How to use:</span><br />
<br />
1) Download the file of your choice.<br />
<br />
2) Locate the file name of the weapon you want to change it. You can use a viewer such as WoW Model Viewer to find the weapon.<br />
<br />
3) Open the file you downloaded in a MPQ editor such as Ladik's MPQ Editor or any other of your preference.<br />
<br />
4) Browse to the folder ITEM &gt; ObjectComponents &gt; Weapon in the file. Rename the .m2 file to the name of the file corresponding to your weapon you got in step 2. Change the .skin file to that same name, except with 00 in the end (so if the file is genericweapon1, the m2 will be genericweapon1.m2 and the skin will be genericweapon100.skin).<br />
<br />
5) DO NOT touch any other file in the mpq!<br />
<br />
6) Rename the MPQ to patch-x.MPQ. For example, patch-6.MPQ<br />
<br />
7) Drop the file in the Data folder in your WoW directory. Don't overwrite anything, if the number you chose for the MPQ file is already used, choose one that isn't.<br />
<br />
<img src="https://www.ownedcore.com/forums/images/smilies/cool.gif" loading="lazy"  alt="[Image: cool.gif]" class="mycode_img" /> Enjoy!<br />
<br />
Note: I DO NOT DO CUSTOM MODEL SWAPS. I WILL NOT MAKE A CUSTOM MPQ FOR YOU. DO &gt;NOT&lt; ASK ME. There ARE MPQ editors that work in Mac.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Other:</span><br />
<br />
Any questions feel free to ask. I'll not do any custom changes to a weapon. I will however try to fix any issues if something is preventing you from changing it correctly. I ask patience if there's any issue or bug. I'll upload new versions if I update the item.<br />
<br />
Thank you very much for your interest. As always, C&amp;C is duly appreciated.<br />
<br />
Enjoy!</blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Archive] Remake of the Baron Mount Farm]]></title>
			<link>https://elijahketchersid.com/forums/thread-8810.html</link>
			<pubDate>Tue, 04 Nov 2025 12:21:44 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://elijahketchersid.com/forums/member.php?action=profile&uid=1">CosmicHax</a>]]></dc:creator>
			<guid isPermaLink="false">https://elijahketchersid.com/forums/thread-8810.html</guid>
			<description><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: CosmicHax • Posted: 2025-11-04T13:21:44.678503</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-model-editing/wow-advanced-model-edits/680432-remake-of-baron-mount-farm.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>							I remade the patch from scratch to allow you to fall through the floor in strat and get to barons room and even made some changes to allow for easier exiting of the baron room then before on the old patch <img src="https://www.ownedcore.com/forums/images/smilies/smile.png" loading="lazy"  alt="[Image: smile.png]" class="mycode_img" /><br />
<br />
Only thing i didnt know how to do was allow for mounts to be ride-able in the instance like the original author had done. Not sure if its possible still or not. but other then that it is done and easier then before to farm the mount <img src="https://www.ownedcore.com/forums/images/smilies/biggrin.png" loading="lazy"  alt="[Image: biggrin.png]" class="mycode_img" /><br />
<br />
<a href="https://mega.nz/file/HsgQgLZI#kJDGVhuMXETB2wOfUCes07wsRnMumCqG5Fb19Qs6MAg" target="_blank" rel="noopener" class="mycode_url">https://mega.nz/file/HsgQgLZI#kJDGVh...CqG5Fb19Qs6MAg</a><br />
<br />
-Cosmic<br />
<br />
Enjoy <img src="https://www.ownedcore.com/forums/images/smilies/biggrin.png" loading="lazy"  alt="[Image: biggrin.png]" class="mycode_img" /><br />
<br />
----------------------------------------------------------<br />
<br />
UPDATE - 1/17/22<br />
<br />
Sorry for long awaiting time for this patch i had uploaded it then my mega account had been taken down and i had to find the patch again so after all these years if anyone needs this again the download link is now working again and wont be down this time &lt;3<br />
<br />
Enjoy</blockquote>
]]></description>
			<content:encoded><![CDATA[<span style="font-style: italic;" class="mycode_i">Archived author: CosmicHax • Posted: 2025-11-04T13:21:44.678503</span><br />
<a href="https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-model-editing/wow-advanced-model-edits/680432-remake-of-baron-mount-farm.html" target="_blank" rel="noopener" class="mycode_url">Original source</a><br />
<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>							I remade the patch from scratch to allow you to fall through the floor in strat and get to barons room and even made some changes to allow for easier exiting of the baron room then before on the old patch <img src="https://www.ownedcore.com/forums/images/smilies/smile.png" loading="lazy"  alt="[Image: smile.png]" class="mycode_img" /><br />
<br />
Only thing i didnt know how to do was allow for mounts to be ride-able in the instance like the original author had done. Not sure if its possible still or not. but other then that it is done and easier then before to farm the mount <img src="https://www.ownedcore.com/forums/images/smilies/biggrin.png" loading="lazy"  alt="[Image: biggrin.png]" class="mycode_img" /><br />
<br />
<a href="https://mega.nz/file/HsgQgLZI#kJDGVhuMXETB2wOfUCes07wsRnMumCqG5Fb19Qs6MAg" target="_blank" rel="noopener" class="mycode_url">https://mega.nz/file/HsgQgLZI#kJDGVh...CqG5Fb19Qs6MAg</a><br />
<br />
-Cosmic<br />
<br />
Enjoy <img src="https://www.ownedcore.com/forums/images/smilies/biggrin.png" loading="lazy"  alt="[Image: biggrin.png]" class="mycode_img" /><br />
<br />
----------------------------------------------------------<br />
<br />
UPDATE - 1/17/22<br />
<br />
Sorry for long awaiting time for this patch i had uploaded it then my mega account had been taken down and i had to find the patch again so after all these years if anyone needs this again the download link is now working again and wont be down this time &lt;3<br />
<br />
Enjoy</blockquote>
]]></content:encoded>
		</item>
	</channel>
</rss>