<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://ehwiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Fbcpck</id>
	<title>EHWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://ehwiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Fbcpck"/>
	<link rel="alternate" type="text/html" href="https://ehwiki.org/wiki/Special:Contributions/Fbcpck"/>
	<updated>2026-04-09T16:11:19Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://ehwiki.org/index.php?title=Installing_H@H_on_Debian&amp;diff=35432</id>
		<title>Installing H@H on Debian</title>
		<link rel="alternate" type="text/html" href="https://ehwiki.org/index.php?title=Installing_H@H_on_Debian&amp;diff=35432"/>
		<updated>2016-02-26T15:02:46Z</updated>

		<summary type="html">&lt;p&gt;Fbcpck: /* Installing Java */ update jre download link/cookie&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
==Requirements==&lt;br /&gt;
* Being able to use Google.&lt;br /&gt;
&lt;br /&gt;
* Basic Linux knowledge.&lt;br /&gt;
&lt;br /&gt;
* A running Debian GNU/Linux server.&lt;br /&gt;
&lt;br /&gt;
* PuTTY or any other SSH program to connect to your server. This allows for copying/pasting of commands.&lt;br /&gt;
&lt;br /&gt;
* An “active” H@H client (http://g.e-hentai.org/hentaiathome.php).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===A couple things to be aware of before starting===&lt;br /&gt;
&lt;br /&gt;
* Linux IS case sensitive on file names. Therefore, it is best to use lower case names everywhere to make it easier for yourself.&lt;br /&gt;
&lt;br /&gt;
* Commands you should type are given in &amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;Green&amp;lt;/FONT&amp;gt;;&lt;br /&gt;
* Output from the command prompt is given in &amp;lt;FONT COLOR=&amp;quot;C94649&amp;quot;&amp;gt;Red&amp;lt;/FONT&amp;gt;;&lt;br /&gt;
* Text in commands that you&#039;ll probably need to change is given in &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;Blue&amp;lt;/FONT&amp;gt;.&lt;br /&gt;
* Commands starting with &#039;&#039;&#039;$&#039;&#039;&#039; are to be run as current user, those starting with &#039;&#039;&#039;#&#039;&#039;&#039; - as root (using su/sudo).&lt;br /&gt;
&lt;br /&gt;
* This manual is based on a virtual server (VPS/VDS). The use of a physical server, home PC or any program other than VMware to virtualize your server may require doing some things differently.&lt;br /&gt;
&lt;br /&gt;
==Installing Java==&lt;br /&gt;
To run the H@H server you will have to have Java installed on the server.&lt;br /&gt;
&lt;br /&gt;
Now select Java package on [http://www.oracle.com/technetwork/java/javase/downloads/index.html official download page], accept license and copy download link depending on your OS (32-bit/64-bit).&lt;br /&gt;
&lt;br /&gt;
For our case JDK isn&#039;t needed. If you need some monitoring tools (and know how to use them) - pick Server JRE. Otherwise, your choice is JRE.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Download the JRE can be with the following command:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ wget --no-cookies --header &amp;quot;Cookie: oraclelicense=accept-securebackup-cookie&amp;quot; &amp;quot;https://download.oracle.com/otn-pub/java/jdk/7u80-b15/jdk-7u80-linux-x64.tar.gz&amp;quot;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Create directory for JVM in /opt:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# mkdir /opt/java-oracle&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Unpack the downloaded archive in /opt:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# tar -zxf &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;jre-7u67-linux-x64.tar.gz&amp;lt;/FONT&amp;gt; -C /opt/java-oracle&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Set our JVM to be used as the default Java on the system:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ Java_Home=/opt/java-oracle/&amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;jre1.7.0_67&amp;lt;/FONT&amp;gt;&lt;br /&gt;
# update-alternatives --install /usr/bin/java java ${Java_Home%*/}/bin/java 20000&lt;br /&gt;
# update-alternatives --install /usr/bin/javac javac ${Java_Home%*/}/bin/javac 20000&lt;br /&gt;
# update-alternatives --install /usr/bin/javaws javaws ${Java_Home%*/}/bin/javaws 20000&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Verify (or set) JVM to be used as a default Java on the system:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# update-alternatives --config java&lt;br /&gt;
&amp;lt;FONT COLOR=&amp;quot;C94649&amp;quot;&amp;gt;There is only one alternative in link group java (providing /usr/bin/java): /opt/java-oracle/jre1.7.0_67/bin/java&lt;br /&gt;
Nothing to configure.&amp;lt;/FONT&amp;gt;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Verify Java version:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ java -version&lt;br /&gt;
&amp;lt;FONT COLOR=&amp;quot;C94649&amp;quot;&amp;gt;java version &amp;quot;1.7.0_67&amp;quot;&lt;br /&gt;
Java(TM) SE Runtime Environment (build 1.7.0_67-b01)&lt;br /&gt;
Java HotSpot(TM) 64-Bit Server VM (build 24.65-b04, mixed mode)&amp;lt;/FONT&amp;gt;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing H@H==&lt;br /&gt;
&lt;br /&gt;
For more security let&#039;s create new user for H@H:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# adduser &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;hath&amp;lt;/FONT&amp;gt;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now login as the new user and create a directory for H@H client:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# login &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;hath&amp;lt;/FONT&amp;gt;&lt;br /&gt;
$ mkdir &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;hath&amp;lt;/FONT&amp;gt;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Download H@H (check for the latest version [http://g.e-hentai.org/hentaiathome.php here]):&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ wget http://hentaiathome.net/get/HentaiAtHome_1.2.1.zip&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Unzip the downloaded archive (install unzip if you haven&#039;t yet):&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ unzip HentaiAtHome_1.2.1.zip -d &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;hath/&amp;lt;/FONT&amp;gt;&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Well done, let&#039;s launch it!&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ cd &amp;lt;FONT COLOR=&amp;quot;35A4D6&amp;quot;&amp;gt;hath&amp;lt;/FONT&amp;gt;&lt;br /&gt;
$ java -jar HentaiAtHome.jar&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your client ID and Password which you can find on [http://g.e-hentai.org/hentaiathome.php your H@H page]&lt;br /&gt;
&lt;br /&gt;
You will need to configure your client settings on the above page before you get your client password. If you have not applied to run a H@H client yet, you will have to do so first.&lt;br /&gt;
&lt;br /&gt;
To stop the server, press &amp;quot;Ctrl+C&amp;quot; and wait for a couple seconds.&lt;br /&gt;
&lt;br /&gt;
==Run H@H as service==&lt;br /&gt;
&lt;br /&gt;
Now, finally, we&#039;ve got our H@H. But to start it manually every single time is quite a bother.&lt;br /&gt;
&lt;br /&gt;
Here&#039;s the init script to make work with H@H more comfortable.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Download the script:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ wget https://github.com/Yukariin/hath-scripts/raw/master/hentaiathome -O hentaiathome&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you haven&#039;t created new user for H@H - edit presented script and replace USER and DIR variables to your correct:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;$ nano hentaiathome&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Copy script into /etc/init.d:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# cp hentaiathome /etc/init.d/&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Fix chmod:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# chmod 755 /etc/init.d/hentaiathome&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Stop H@H if it already running and start  is as a service:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# /etc/init.d/hentaiathome start&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And check if it is working properly:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# /etc/init.d/hentaiathome status&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Or by using top/htop. You can also see the server status on [http://g.e-hentai.org/hentaiathome.php your H@H page].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now let&#039;s make H@H auto start:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&amp;lt;FONT COLOR=&amp;quot;1FD30D&amp;quot;&amp;gt;# update-rc.d hentaiathome defaults&amp;lt;/FONT&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So if your server will reboot, H@H will start automatically right after boot.&lt;br /&gt;
&lt;br /&gt;
You can start/stop/restart H@H as a simple service.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also you can get systemd service for H@H [https://github.com/Yukariin/hath-scripts/blob/master/systemd.service here]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Hentai@Home]]&lt;br /&gt;
*[[Installing H@H on Ubuntu]]&lt;br /&gt;
*[http://forums.e-hentai.org/index.php?showtopic=19795&amp;amp;st=0&amp;amp;p=797807&amp;amp;#entry797807 Advanced Linux Installation]&lt;br /&gt;
&lt;br /&gt;
[[Category:E-Hentai Galleries]]&lt;/div&gt;</summary>
		<author><name>Fbcpck</name></author>
	</entry>
	<entry>
		<id>https://ehwiki.org/index.php?title=Scripts_%26_Tools&amp;diff=35419</id>
		<title>Scripts &amp; Tools</title>
		<link rel="alternate" type="text/html" href="https://ehwiki.org/index.php?title=Scripts_%26_Tools&amp;diff=35419"/>
		<updated>2016-02-22T02:59:05Z</updated>

		<summary type="html">&lt;p&gt;Fbcpck: /* Monster Lab */ Add Smart Monster Lab&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Please note that all of these are third-party programs. There&#039;s no guarantee they&#039;ll work for every system or be updated promptly.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==List==&lt;br /&gt;
*For Firefox the use of [https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/ Greasemonkey] or [https://addons.mozilla.org/en-US/firefox/addon/scriptish/ Scriptish] may be necessary.&lt;br /&gt;
*For Chrome the use of [https://tampermonkey.net/ Tampermonkey] or go to Tools -&amp;gt; Extension and drop the script directly into that screen (chrome://extensions).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please do not PM the producers of these programs for updates, especially after releases of HV patches.&#039;&#039;&#039;&lt;br /&gt;
*For the best performance and full compatibility in Hentaiverse, use the Custom Font Engine (Hentaiverse Menu: Character -&amp;gt; Settings)&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot;&lt;br /&gt;
!Name&lt;br /&gt;
!Description&lt;br /&gt;
!Source&lt;br /&gt;
!Last updated&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;4&amp;quot;|&lt;br /&gt;
===[[Forums]] and [[Galleries]]===&lt;br /&gt;
&amp;lt;div id=&amp;quot;Forum and E-Hentai related&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div id=Forums and E-Hentai&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Color coding || Color code and simplified BBCode. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=29703&amp;amp;view=findpost&amp;amp;p=1827065] || N/A&lt;br /&gt;
|-&lt;br /&gt;
|Favorites Thumbnail View || Gives a thumbnail view for the [[Favorites]] page || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=119858&amp;amp;view=findpost&amp;amp;p=2649243] || EHG 0.28&lt;br /&gt;
|-&lt;br /&gt;
|Forum Style (CSS) || Hides the forum header and collapses posts. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2684959] / [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2632826] || N/A&lt;br /&gt;
|-&lt;br /&gt;
|User Comment Flags || Flags/unflags user comments to hide them. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=158929&amp;amp;view=findpost&amp;amp;p=2927834] || EHG 0.28&lt;br /&gt;
|-&lt;br /&gt;
|Kill New || Removes the &amp;quot;New&amp;quot; icon from the galleries. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=165565&amp;amp;view=findpost&amp;amp;p=3233728] || EHG 0.301&lt;br /&gt;
|-&lt;br /&gt;
|Gallery Size || Shows the image count for the galleries in list view. || [https://github.com/greenpenguin/eh_scripts/blob/master/galleries/gallery-size.user.js] || EHG 0.28&lt;br /&gt;
|-&lt;br /&gt;
|Joe&#039;s E-H Classic || Changes gallery layout back to its non-mobile friendly design. || [https://gist.github.com/MaximumJoe/5771f306abae8fb608be] || EHG 0.307&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;4&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
===HentaiVerse===&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;4&amp;quot;|&lt;br /&gt;
===General Interface===&lt;br /&gt;
|-&lt;br /&gt;
|HV 界面汉化 || Translate the HentaiVerse interface to Chinese || [http://userscripts-mirror.org/scripts/show/152705] || HV 0.80&lt;br /&gt;
|-&lt;br /&gt;
|HV dark || Custom CSS userstyle. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2693597] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|HV Ability Screen Resize || A little script to resize the ability page to remove the inner scroll bars. || [https://forums.e-hentai.org/index.php?act=findpost&amp;amp;pid=1847698] ||&lt;br /&gt;
|-&lt;br /&gt;
|Fix MoogleMail || Fixes a position bug when using [[MoogleMail]]. || [http://userscripts-mirror.org/scripts/show/158339] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|Inline Difficulty Changer || Enable user to change the difficulty in the stats bar. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2809414] || HV 0.77&lt;br /&gt;
|-&lt;br /&gt;
|Inline Equipment Changer || Enable user to change equipment from all HV pages (including equipment pop-up). It also re-update HV Equip Comparison data || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=3010674] || HV 0.78&lt;br /&gt;
|-&lt;br /&gt;
|HV Conditioner || Displays the condition in equipment page. Right-click the equipment to repair. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=4001029] || HV 0.82&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;4&amp;quot;|&lt;br /&gt;
====Combat====&lt;br /&gt;
|-&lt;br /&gt;
|HVSTAT (5.6.8.2) || Package of combat alerts, combat log adjustments, and statistical tracking. || [https://forums.e-hentai.org/index.php?showtopic=79552] || HV 0.81&lt;br /&gt;
|- &lt;br /&gt;
|HV - Minor Additions (STAT Slim) || Provides various combat alerts without statistical tracking. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=3111430] || HV 0.78&lt;br /&gt;
|-&lt;br /&gt;
|Mousemelee || Attack monsters when the mouse hover over them. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2983524] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|Bettermelee || Similar to mousemelee, but the user needs to point at the monster and press &#039;A&#039;. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2774014] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|HoverPlay|| Similar to mousemelee and SpellSpam (can either spam spells or melee-attack) but with click-hoverable icons which appear at left top near monsters to rebuff expiring buffs, heal when low on hp, use potion when low on mp\sp, use spirit stance when full, use gems etc || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=3302616 01.06.2014] || HV 0.80&lt;br /&gt;
|-&lt;br /&gt;
|SpellSpam || Bind different Attack/Skill/Spell to numkey, clicks, and hover. Support Rotation/Multicast. Eg: Cast Cure, Full-Cure, Heroic Health Potion, Spark of Life with right click, or Merciful Blow, Vital Strike, Shield Bash, Attack with hover (mousemelee-like). Support condition check (HP,MP,SP,OC,SS and BuffName) Press Shift+ alpha key (A...Z)  to save a profile to a key. Press an alpha key to load the assigned profile and open tooltip. Hold Ctr/Alt to temporarily disable the script without having to open the tooltip, Shift to disable hover. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=162726&amp;amp;view=findpost&amp;amp;p=3520277] || HV 0.80&lt;br /&gt;
|-&lt;br /&gt;
|QuickBar 2 || Adds a second quickbar (&#039;&#039;Chrome only&#039;&#039;). || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2042381] || (&#039;&#039;Maybe broken&#039;&#039;)&lt;br /&gt;
|-&lt;br /&gt;
|Multiple QuickBar || Adds multiple quickbars. Also works in Firefox. || [https://tiap.github.io/] ||&lt;br /&gt;
|-&lt;br /&gt;
|HV Cooldown || Show the current cooldown of skills and spells on the quickbar. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=162726&amp;amp;view=findpost&amp;amp;p=3577989] || HV 0.80&lt;br /&gt;
|-&lt;br /&gt;
|Extended Confirms || Replaces the default battle confirms with some detailed ones. || [https://forums.e-hentai.org/index.php?act=findpost&amp;amp;pid=1857639] || &lt;br /&gt;
|-&lt;br /&gt;
|Gems || Displays an icon at right top corner after a [[Items#Battle_Powerups|power-up gem]] drops in the battle. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2042381] [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=3018231 fixed] ||&lt;br /&gt;
|-&lt;br /&gt;
|HV Random Encounter Notification || Tracks when the next [[Random Encounter]]/[[Dawn of a New Day]] is due. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=3318621 &amp;lt;nowiki&amp;gt;[LagProof one for HV 0.80]&amp;lt;/nowiki&amp;gt;] [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2990345 &amp;lt;nowiki&amp;gt;[Latest]&amp;lt;/nowiki&amp;gt;] [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=62830&amp;amp;view=findpost&amp;amp;p=2133227 &amp;lt;nowiki&amp;gt;[Old]&amp;lt;/nowiki&amp;gt;] &amp;lt;br&amp;gt;[https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=62830&amp;amp;view=findpost&amp;amp;p=2692289 &amp;lt;nowiki&amp;gt;[16:9 old format fix]&amp;lt;/nowiki&amp;gt;] &amp;lt;br&amp;gt;[https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2679850 &amp;lt;nowiki&amp;gt;[Another old]&amp;lt;/nowiki&amp;gt;&amp;lt;br&amp;gt;] || HV 0.78&lt;br /&gt;
|-&lt;br /&gt;
|Skill Script || Lets you use &#039;+&#039; to use the best [[skills]]. Open the file with a text editor to change the key input. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2613600] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|Keybinds || Changes the default [[Hotkeys]]. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2819721] || HV 0.77&lt;br /&gt;
|-&lt;br /&gt;
|Riddle Limiter 1.2.0|| RiddleLimiter makes the choices clickable. 1 click to answer your Riddle Master! Pressing 1,2,3 can also answer the riddle. Play Music during riddle. ||&lt;br /&gt;
[https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=162726&amp;amp;view=findpost&amp;amp;p=3553274 music + press twice]&lt;br /&gt;
[https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=162726&amp;amp;view=findpost&amp;amp;p=3355074 press twice]&lt;br /&gt;
[https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=162726&amp;amp;view=findpost&amp;amp;p=3290009 press once] &lt;br /&gt;
|| HV 0.80&lt;br /&gt;
|-&lt;br /&gt;
|NoPopup || Automatically dismisses the &amp;quot;You are Victorious&amp;quot; popup. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2681928] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|HV Monster Letters to Numbers (CSS) || Replaces the monster letters to numbers. Works faster than script versions. || [https://forums.e-hentai.org/index.php?showtopic=88337] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|HV Monster Sensor || Changes the color of certain monster names to alert the player of their presence. || [https://forums.e-hentai.org/index.php?showtopic=40909] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;4&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
====[[Items]] &amp;amp; [[Equipment]]====&lt;br /&gt;
|-&lt;br /&gt;
|HentaiVerse Equipment Comparison &lt;br /&gt;
| Allows to compare pieces of equipment. &lt;br /&gt;
* Hover over an item (so the stats popup shows up) and press:&lt;br /&gt;
** Q to compare it against the one equipped on the matching slot&lt;br /&gt;
** W to show base values (scaled to level 0)&lt;br /&gt;
** E to compare base values&lt;br /&gt;
** R to compare the non-IW, non-forge base values against the one equipped on the matching slot&lt;br /&gt;
** T to show non-IW, non-forge base values (scaled to level 0)&lt;br /&gt;
** P to open EHWiki Equipment Range page and highlight relevant row.&lt;br /&gt;
| [https://forums.e-hentai.org/index.php?showtopic=65126&amp;amp;st=1700&amp;amp;p=3568505&amp;amp;#entry3568505] &lt;br /&gt;
[https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=4007062 0.82]&lt;br /&gt;
|| HV 0.81&lt;br /&gt;
|-&lt;br /&gt;
|HV Item Manager || &lt;br /&gt;
* Text based filtering with regular expressions/boolean conditional support&lt;br /&gt;
* Multiple selection for items and equipment&lt;br /&gt;
* Multi repair/salvage/reforge/sell/moogle/shrine/COD/lock/unlock&lt;br /&gt;
* Customisable moogle&lt;br /&gt;
* Item list generator to post on forum&lt;br /&gt;
* accessible in the moogle, inventory, shop and forge pages  &lt;br /&gt;
|| [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=162726&amp;amp;view=findpost&amp;amp;p=4029359 1.5.0]&lt;br /&gt;
|| HV 0.82&lt;br /&gt;
|-&lt;br /&gt;
|HV Equip Scaling Calc || Scales any equipment&#039;s stats to any level (not a standalone add-on). || [https://forums.e-hentai.org/index.php?showtopic=26561] || HV 0.75&lt;br /&gt;
|-&lt;br /&gt;
|Magic Scores || Calculates the scores (relative to the equipped set) for all 7 magic [[damage types]] and prints the results in the statistics pane (below Damage Mitigations). || [https://forums.e-hentai.org/index.php?showtopic=65126&amp;amp;st=800&amp;amp;p=2758151&amp;amp;#entry2758151] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|Track Drops || Tracks and display drops by clicking on the stamina logo. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2809414] || HV 0.77&lt;br /&gt;
|-&lt;br /&gt;
|Item Menu || Adds a middle-click menu to all equipment for fast access to various commands. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2950904] || HV 0.78&lt;br /&gt;
|-&lt;br /&gt;
|HV Shop Filter plus || Filters equipment list in equipment shop using presets, highlights equipment, supports multiselection for batch salvage/sell. Uses programmable filtering functions based on equipment properties to allow fine tuning. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=3321360] || HV 0.80&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;4&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
====Highlight====&lt;br /&gt;
|-&lt;br /&gt;
|Bazaar Highlights || Highlights rare equipment at the [[Bazaar]]. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2750319] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|Item Shop Highlights || Highlights rare [[Forge]] materials at the [[Item Shop]]. || [https://forums.e-hentai.org/index.php?act=findpost&amp;amp;pid=2002890] || HV 0.68&lt;br /&gt;
|-&lt;br /&gt;
|Player&#039;s Equipment Highlights || Highlights different types of player&#039;s equipment at the [[Forge]], Inventory and Equipment Selection screens for easier orientation. &lt;br /&gt;
| [https://forums.e-hentai.org/index.php?act=findpost&amp;amp;pid=2011479]&amp;lt;br&amp;gt;&lt;br /&gt;
[https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2297450 &amp;lt;nowiki&amp;gt;[Alternative]&amp;lt;/nowiki&amp;gt;]&lt;br /&gt;
|| &lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;4&amp;quot;|&lt;br /&gt;
====Monster Lab====&lt;br /&gt;
|-&lt;br /&gt;
|Smart Monster Lab || Revamps the Monster Lab interface. Shows various information of the monsters on the index page and allows quick interactions with the monsters within the same page. The interface can be sorted, filtered, and modified to the user&#039;s preference. || [https://forums.e-hentai.org/index.php?showtopic=65126&amp;amp;st=2580&amp;amp;p=4355548&amp;amp;#entry4355548] || HV 0.83&lt;br /&gt;
|-&lt;br /&gt;
|Monster Lab Interface || Monster sorting, wins/kills since last check, timer, crystals/tokens required for next upgrade, etc. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2629028] [[https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=3010481 fixed]] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|Monster Lab Babysitter &lt;br /&gt;
| Helps feeding monsters.&lt;br /&gt;
* G to set (max_Crystals_cost_per_Upgrade) max amount of Crystals to spend for Morale.&lt;br /&gt;
* F to feed/cheer all monsters.&lt;br /&gt;
| [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2773396] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;4&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
====Shrine/Forge Helper====&lt;br /&gt;
|-&lt;br /&gt;
|Equipment Menu || Provides links to Upgrade, Enchant, and Salvage. || [https://forums.e-hentai.org/index.php?act=findpost&amp;amp;pid=2079612] || &lt;br /&gt;
|-&lt;br /&gt;
|Shriner - Helper || hotkey to &amp;quot;make offering&amp;quot;, reward is already selected by default || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=3024242] || &lt;br /&gt;
|-&lt;br /&gt;
|Shrine Counter || Shows how many trophies and artifacts you currently possess when you visit the shrine. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2132748] || HV 0.70 &lt;br /&gt;
|-&lt;br /&gt;
|Salvage Filter || Allows you to hide all Superior (or lesser) items and locked items in the [[forge]] page. || [https://github.com/trandoanhung1991/Salvage-Filter] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|No Pony || Hides [[figurines]] so that will not be accidentally used at the [[shrine]] or sold. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=126586&amp;amp;view=findpost&amp;amp;p=2597872] || HV 0.75&lt;br /&gt;
|-&lt;br /&gt;
|Forge Infusion Hotkey || Hotkey for forge infusion. || [https://forums.e-hentai.org/index.php?s=&amp;amp;showtopic=65126&amp;amp;view=findpost&amp;amp;p=2696084] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|Multi-Shriner || Enable user to shrine multiple artifacts/trophies. || [https://github.com/trandoanhung1991/Multi-Shriner] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|colspan=&amp;quot;4&amp;quot;|&lt;br /&gt;
&lt;br /&gt;
====WTS/WTB shop helper====&lt;br /&gt;
|-&lt;br /&gt;
|HV Shop System || Extended and improved version of Equipment Shop Helper. || [https://forums.e-hentai.org/index.php?showtopic=72877] || HV 0.75 &lt;br /&gt;
|-&lt;br /&gt;
|HV Mini Shop Helper || Helps players to generate equip links and tagging prices. || [https://forums.e-hentai.org/index.php?showtopic=96543] || HV 0.76&lt;br /&gt;
|-&lt;br /&gt;
|Auction Countdown Timer || Generate an image of a countdown timer that can be easily added to an auction thread. || [https://forums.e-hentai.org/index.php?showtopic=31783] || HV 0.76&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;Making New HentaiVerse Scripts &amp;amp; Tools&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Making Scripts &amp;amp; Tools==&lt;br /&gt;
Players are free to make new HV scripts for purposes such as making modifications and additions to the UI or changing key mappings and controls in general.&lt;br /&gt;
&lt;br /&gt;
===Forbidden Actions===&lt;br /&gt;
[[Image:Point.png]] &#039;&#039;&#039;&amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Any script/tool used to do ANY of the following is strictly forbidden.&amp;lt;/span&amp;gt; Offenders will be [[banned]] from the [[HentaiVerse]].&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
*Any automation or semi-automation of gameplay beyond a single &amp;quot;action&amp;quot;.&lt;br /&gt;
**Anything that automates actions without direct player input.&lt;br /&gt;
*Any parsing of live data to decide on actions.&lt;br /&gt;
*Anything that has the function of picking a target automatically, regardless of the actual method.&lt;br /&gt;
**Anything that interprets the page in any way to pick a target or action.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[HentaiVerse Hotkeys]]&lt;br /&gt;
*[https://forums.e-hentai.org/index.php?showtopic=65126 Forum thread]&lt;br /&gt;
&lt;br /&gt;
{{HVnav}}&lt;br /&gt;
&lt;br /&gt;
[[Category:HentaiVerse]]&lt;/div&gt;</summary>
		<author><name>Fbcpck</name></author>
	</entry>
	<entry>
		<id>https://ehwiki.org/index.php?title=User:Fbcpck&amp;diff=35324</id>
		<title>User:Fbcpck</title>
		<link rel="alternate" type="text/html" href="https://ehwiki.org/index.php?title=User:Fbcpck&amp;diff=35324"/>
		<updated>2016-02-15T12:18:05Z</updated>

		<summary type="html">&lt;p&gt;Fbcpck: Created page with &amp;quot;[https://forums.e-hentai.org/index.php?showuser=1848351 Forum Profile] [https://forums.e-hentai.org/index.php?act=Msg&amp;amp;CODE=4&amp;amp;MID=1848351 📧]&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://forums.e-hentai.org/index.php?showuser=1848351 Forum Profile] [https://forums.e-hentai.org/index.php?act=Msg&amp;amp;CODE=4&amp;amp;MID=1848351 📧]&lt;/div&gt;</summary>
		<author><name>Fbcpck</name></author>
	</entry>
	<entry>
		<id>https://ehwiki.org/index.php?title=Talk:The_Lottery&amp;diff=35323</id>
		<title>Talk:The Lottery</title>
		<link rel="alternate" type="text/html" href="https://ehwiki.org/index.php?title=Talk:The_Lottery&amp;diff=35323"/>
		<updated>2016-02-15T12:02:50Z</updated>

		<summary type="html">&lt;p&gt;Fbcpck: /* Rewards amount */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Likely roundup(ticket/2000) for tokens and &amp;lt;s&amp;gt;roundup(ticket/10000)&amp;lt;/s&amp;gt; for artifacts.&lt;br /&gt;
&lt;br /&gt;
Artifact seems to be increased to roundup(ticket/5000). [[User:Varst|Varst]] ([[User talk:Varst|talk]]) 06:12, 31 March 2014 (UTC)&lt;br /&gt;
:1+that it seems. - [[User:Maximum Joe|Maximum Joe]] ([[User talk:Maximum Joe|talk]]) 15:30, 31 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Rewards amount ==&lt;br /&gt;
&lt;br /&gt;
At 0.83, the reward amount formula seems to be:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&lt;br /&gt;
golden-ticket = roundup(ticket/50000)&lt;br /&gt;
soul-fragment = roundup(ticket/5000)&lt;br /&gt;
blood-token = roundup(ticket/2500)&lt;br /&gt;
chaos-token = roundup(ticket/1000)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[[User:Fbcpck|Fbcpck]] ([[User talk:Fbcpck|talk]]) 12:02, 15 February 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>Fbcpck</name></author>
	</entry>
	<entry>
		<id>https://ehwiki.org/index.php?title=Talk:The_Lottery&amp;diff=35322</id>
		<title>Talk:The Lottery</title>
		<link rel="alternate" type="text/html" href="https://ehwiki.org/index.php?title=Talk:The_Lottery&amp;diff=35322"/>
		<updated>2016-02-15T12:02:35Z</updated>

		<summary type="html">&lt;p&gt;Fbcpck: /* Rewards amount */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Likely roundup(ticket/2000) for tokens and &amp;lt;s&amp;gt;roundup(ticket/10000)&amp;lt;/s&amp;gt; for artifacts.&lt;br /&gt;
&lt;br /&gt;
Artifact seems to be increased to roundup(ticket/5000). [[User:Varst|Varst]] ([[User talk:Varst|talk]]) 06:12, 31 March 2014 (UTC)&lt;br /&gt;
:1+that it seems. - [[User:Maximum Joe|Maximum Joe]] ([[User talk:Maximum Joe|talk]]) 15:30, 31 March 2014 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Rewards amount ==&lt;br /&gt;
&lt;br /&gt;
At 0.83, the reward amount formula seems to be:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&lt;br /&gt;
golden-ticket = roundup(ticket/50000)&lt;br /&gt;
soul-fragment = roundup(ticket/5000)&lt;br /&gt;
blood-token = roundup(ticket/2500)&lt;br /&gt;
chaos-token = roundup(ticket/1000)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Fbcpck</name></author>
	</entry>
	<entry>
		<id>https://ehwiki.org/index.php?title=Training&amp;diff=35196</id>
		<title>Training</title>
		<link rel="alternate" type="text/html" href="https://ehwiki.org/index.php?title=Training&amp;diff=35196"/>
		<updated>2016-02-02T04:18:39Z</updated>

		<summary type="html">&lt;p&gt;Fbcpck: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Training allows [[credits]] to be spent on various bonuses for a player in the [[HentaiVerse]].&lt;br /&gt;
&lt;br /&gt;
==Overview==&lt;br /&gt;
*Players can only train one skill at a time.&lt;br /&gt;
*Training can be aborted, in which case the whole cost will be refunded.&lt;br /&gt;
**Once a training is complete it cannot be undone or refunded.&lt;br /&gt;
*Players can continue to take other actions including [[combat]] after initiating training.&lt;br /&gt;
*If a player leaves the training screen before training is completed they will have to revisit it after the training has finished in order to receive the bonus.&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot; class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;text-align: right&amp;quot;&lt;br /&gt;
!Skill&lt;br /&gt;
!Effect&lt;br /&gt;
!Time&lt;br /&gt;
!Levels&lt;br /&gt;
!Initial Cost&lt;br /&gt;
!Final Cost&lt;br /&gt;
!Total Cost&lt;br /&gt;
|-&lt;br /&gt;
!Adept Learner&lt;br /&gt;
|align=&amp;quot;left&amp;quot; | +1% [[EXP]] bonus.&lt;br /&gt;
|1H&lt;br /&gt;
|300&lt;br /&gt;
|100&lt;br /&gt;
|49,999&lt;br /&gt;
|5,126,661&lt;br /&gt;
|-&lt;br /&gt;
!Assimilator&lt;br /&gt;
|align=&amp;quot;left&amp;quot; | +10% [[proficiency]] gain rate.&lt;br /&gt;
|24H&lt;br /&gt;
|10&lt;br /&gt;
|50,000&lt;br /&gt;
|1,000,000&lt;br /&gt;
|4,403,900&lt;br /&gt;
|-&lt;br /&gt;
!Ability Boost&lt;br /&gt;
|align=&amp;quot;left&amp;quot; | +1 [[Ability Point]].&lt;br /&gt;
|2H&lt;br /&gt;
|500&amp;lt;sup&amp;gt;a&amp;lt;/sup&amp;gt;&lt;br /&gt;
|100&lt;br /&gt;
|999,999&lt;br /&gt;
|109,521,469&lt;br /&gt;
|-&lt;br /&gt;
!Manifest Destiny&lt;br /&gt;
|align=&amp;quot;left&amp;quot; | +1 [[Mastery Point]].&lt;br /&gt;
|24H&lt;br /&gt;
|10&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt;&lt;br /&gt;
|1,000,000&lt;br /&gt;
|10,000,000&lt;br /&gt;
|55,000,000&lt;br /&gt;
|-&lt;br /&gt;
!Scavenger&lt;br /&gt;
|align=&amp;quot;left&amp;quot; | +1% base loot [[drop chance]].&lt;br /&gt;
|4H&lt;br /&gt;
|50&lt;br /&gt;
|500&lt;br /&gt;
|2,000,000&lt;br /&gt;
|17,484,001&lt;br /&gt;
|-&lt;br /&gt;
!Luck of the Draw&lt;br /&gt;
|align=&amp;quot;left&amp;quot; | +1% base rare [[drop chance]].&lt;br /&gt;
|8H&lt;br /&gt;
|25&lt;br /&gt;
|2,000&lt;br /&gt;
|4,000,000&lt;br /&gt;
|18,371,540&lt;br /&gt;
|-&lt;br /&gt;
!Quartermaster&lt;br /&gt;
|align=&amp;quot;left&amp;quot; | +5% base [[equipment]] [[drop chance]].&lt;br /&gt;
|12H&lt;br /&gt;
|20&lt;br /&gt;
|5,000&lt;br /&gt;
|5,000,000&lt;br /&gt;
|20,275,728&lt;br /&gt;
|-&lt;br /&gt;
!Archaeologist&lt;br /&gt;
|align=&amp;quot;left&amp;quot; | +10% base [[artifact]] [[drop chance]].&lt;br /&gt;
|24H&lt;br /&gt;
|10&lt;br /&gt;
|25,000&lt;br /&gt;
|7,999,999&lt;br /&gt;
|19,268,648&lt;br /&gt;
|-&lt;br /&gt;
!Metabolism&lt;br /&gt;
|align=&amp;quot;left&amp;quot; | Slows monster [[hunger]] drain by 5%?&lt;br /&gt;
|24H&lt;br /&gt;
|10&lt;br /&gt;
|1,000,000&lt;br /&gt;
|10,000,000&lt;br /&gt;
|47,800,000&lt;br /&gt;
|-&lt;br /&gt;
!Inspiration&lt;br /&gt;
|align=&amp;quot;left&amp;quot; | Slows monster [[morale]] drain by 5%?&lt;br /&gt;
|24H&lt;br /&gt;
|10&lt;br /&gt;
|2,000,000&lt;br /&gt;
|20,000,000&lt;br /&gt;
|110,000,000&lt;br /&gt;
|-&lt;br /&gt;
!Scholar of War&lt;br /&gt;
|align=&amp;quot;left&amp;quot; | +1 [[Battle Inventory|Battle Scroll]] slots.&lt;br /&gt;
|0H&lt;br /&gt;
|5&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt;&lt;br /&gt;
|30,000&lt;br /&gt;
|70,000&lt;br /&gt;
|250,000&lt;br /&gt;
|-&lt;br /&gt;
!Tincture&lt;br /&gt;
|align=&amp;quot;left&amp;quot; | +1 [[Battle Inventory|Battle Infusion]] slots.&lt;br /&gt;
|0H&lt;br /&gt;
|5&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt;&lt;br /&gt;
|30,000&lt;br /&gt;
|70,000&lt;br /&gt;
|250,000&lt;br /&gt;
|-&lt;br /&gt;
!Pack Rat&lt;br /&gt;
|align=&amp;quot;left&amp;quot; | +1 [[Battle Inventory]] slots.&lt;br /&gt;
|0H&lt;br /&gt;
|10&amp;lt;sup&amp;gt;c&amp;lt;/sup&amp;gt;&lt;br /&gt;
|10,000&lt;br /&gt;
|100,000&lt;br /&gt;
|540,000&lt;br /&gt;
|-&lt;br /&gt;
!Set Collector&lt;br /&gt;
|align=&amp;quot;left&amp;quot; | +1 [[equipment]] set.&lt;br /&gt;
|12H&lt;br /&gt;
|4&lt;br /&gt;
|12,500&lt;br /&gt;
|50,000&lt;br /&gt;
|125,000&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;sup&amp;gt;a&amp;lt;/sup&amp;gt; - Cannot be trained beyond the player&#039;s [[level]].&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;sup&amp;gt;b&amp;lt;/sup&amp;gt; - Cannot be trained beyond (the player&#039;s level / 50).&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;sup&amp;gt;c&amp;lt;/sup&amp;gt; - Cannot be trained beyond (the player&#039;s level / 20).&lt;br /&gt;
&lt;br /&gt;
==Costs==&lt;br /&gt;
The credit cost of any training can be calculated as:&lt;br /&gt;
&amp;lt;pre&amp;lt;includeonly&amp;gt;&amp;lt;/includeonly&amp;gt; style=&amp;quot;overflow: auto;{{{style|}}}&amp;quot;&amp;gt;&#039;&#039;&#039;Cost&#039;&#039;&#039; = round[(base_cost + level_cost * N) ^ (1 + exponent * N)]&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where:&lt;br /&gt;
*base_cost = The initial base cost of the training item&lt;br /&gt;
*level_cost = The cost to go up from level N to level N+1&lt;br /&gt;
*N = The current level trained&lt;br /&gt;
*exponent = The exponential value used to create a dynamic cost curve&lt;br /&gt;
&lt;br /&gt;
===Values===&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Skill&lt;br /&gt;
!Base Cost&lt;br /&gt;
!Level Cost&lt;br /&gt;
!Exponent&lt;br /&gt;
|-&lt;br /&gt;
|Adept Learner || 100 || 50 || 0.000417446&lt;br /&gt;
|-&lt;br /&gt;
|Assimilator || 50,000 || 50,000 || 0.0058690916&lt;br /&gt;
|-&lt;br /&gt;
|Ability Boost || 100 || 100 || 0.0005548607&lt;br /&gt;
|-&lt;br /&gt;
|Manifest Destiny || 1,000,000 || 1,000,000 || 0&lt;br /&gt;
|-&lt;br /&gt;
|Scavenger || 500 || 500 || 0.0088310825&lt;br /&gt;
|-&lt;br /&gt;
|Luck of the Draw || 2,000 || 2,000 || 0.0168750623&lt;br /&gt;
|-&lt;br /&gt;
|Quartermaster || 5,000 || 5,000 || 0.017883894&lt;br /&gt;
|-&lt;br /&gt;
|Archaeologist || 25,000 || 25,000 || 0.030981982&lt;br /&gt;
|-&lt;br /&gt;
|Metabolism || 1,000,000 || 1,000,000 || 0&lt;br /&gt;
|-&lt;br /&gt;
|Inspiration || 2,000,000 || 2,000,000 || 0&lt;br /&gt;
|-&lt;br /&gt;
|Scholar of War|| 30,000 || 10,000 || 0&lt;br /&gt;
|-&lt;br /&gt;
|Tincture || 30,000 || 10,000 || 0&lt;br /&gt;
|-&lt;br /&gt;
|Pack Rat || 10,000 || 10,000 || 0&lt;br /&gt;
|-&lt;br /&gt;
|Set Collector || 12,500 || 12,500 || 0&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Hath Perks]]&lt;br /&gt;
*[[Loot Drop Rolls]]&lt;br /&gt;
&lt;br /&gt;
{{HVnav}}&lt;br /&gt;
&lt;br /&gt;
[[Category:HentaiVerse]]&lt;/div&gt;</summary>
		<author><name>Fbcpck</name></author>
	</entry>
</feed>