-
Active Member
[Ez] TransmutePlugin
Plugin to automate Kanai cube recipes 2,3,7,8,9.
Inventory items to be processed will be highlighted with a border/frame.
Default hotkey = F3. If you use another plugin with this feature, you'll need to disable it or assign another hotkey to it so they don't interfere with each other.

It's automation, use it at your own risk.
Download => Plugins\Ez\TransmutePlugin.cs
Custom Code (PluginEnablerOrDisablerPlugin):
Code:
Hud.RunOnPlugin<Ez.TransmutePlugin>(plugin =>
{
plugin.Enabled = true;
plugin.TextAvailable = "Press {0} to Start."; // {0} => Hotkey
plugin.TextNotAvailable = "Unavailable, lock area missing.";
plugin.TextProcessing = "Recipe {0} of {1} is being processed."; // {0} => Number recipe , {1} => Total recipes
plugin.TextNoMats = "You don't have the required mats.";
plugin.TextNoItems = "No items in inventory to process.";
plugin.ToggleKeyEvent = Hud.Input.CreateKeyEvent(true, Key.F3, controlPressed: false, altPressed: false, shiftPressed: false); // Hotkey
plugin.IgnoreInventoryLockArea = false; // If false -> Lock area required in the inventory for recipe 2. If true -> Ignore if you have defined (or not) a lock area in the inventory.
} );
Last edited by EzGo; 04-21-2025 at 02:25 PM.
Reason: Stopping an operation with F3 can cause the recipe page to be incorrect, fixed.
-
Post Thanks / Like - 3 Thanks
-
Active Member
Update: Supports Chinese and Korean languages.
Update: Support Russian language.
Last edited by EzGo; 02-26-2025 at 10:29 AM.
-
Banned
EzGo thanks for the plugins
will there be plugins for TurboHUD Free?
EnchantPlugin
ThrowItemPlugin
-
Active Member
ThrowItemPlugin -> I don't plan to make any similar plugin because I don't need it, I have enough with the function included in my PickItemPlugin to drop the yellow/blue items that are in the inventory (hotkey control+F4).
EnchantPlugin -> I haven't created a similar plugin with my own code for several reasons: it's complex, I could only think of a small improvement and it's not worth the work required to implement it, and .... it only took me a few minutes to adapt the LMOD plugin to work in TurboHud Free (without moving the mouse pointer). I'll send you the link via private message.
-
Post Thanks / Like - 1 Thanks
RawHulk (1 members gave Thanks to EzGo for this useful post)
-
Member
For some strange reason, TransmutePlugin stopped working. It no longer displays in Kanai's Cube. Your other plugins thankfully still work.
-
Active Member
It still works in TurboHud Free. You'd have to ask the author of Lmod why he disabled it. Obviously, anyone who wants to use this plugin should first disable the equivalent Lmod function from their own interface so that the two plugins don't interfere with each other, as I mentioned in the first post.
To get it working again, modify the following lines and change the word "TransmutePlugin" to any random word, the same one on both lines.
Line 14:
Code:
public class TransmutePlugin : BasePlugin, IKeyEventHandler, IInGameTopPainter
and Line 94
Code:
public TransmutePlugin()
-
Post Thanks / Like - 2 Thanks