rootuser 0 Posted January 6, 2025 Share Posted January 6, 2025 When using fight profiles or using the fishbot, the spells it's trying to cast are in what looks to be Chinese? How can I force it to English? It wont trigger the spell. Thank you. From the log: [Spell] Cast 钓鱼 (Fishing) Link to comment https://wrobot.eu/forums/topic/15588-wrong-wow-language/ Share on other sites More sharing options...
rootuser 0 Posted January 6, 2025 Author Share Posted January 6, 2025 Ah, okay, so I'm using the wow_tweaked.exe which wrobot detects the game as Chinese, using the original exe changes the game to english. Bummer. Can I force wrobot to see an english client? Thank you. Link to comment https://wrobot.eu/forums/topic/15588-wrong-wow-language/#findComment-69824 Share on other sites More sharing options...
ssuueemmaa 0 Posted January 6, 2025 Share Posted January 6, 2025 Having the same issue. Can't seem to crack down a solution. Need help Link to comment https://wrobot.eu/forums/topic/15588-wrong-wow-language/#findComment-69826 Share on other sites More sharing options...
Droidz 2771 Posted January 10, 2025 Share Posted January 10, 2025 Hello, try this plugin : using System.Linq; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.Events.OnCustomEvent += (eventName, args, cancelEvent) => { try { if (eventName =="SpellManager.CastSpellByNameOn" && args != null && args.Length == 2 && args[0] != null && args[0] is string && args[1] != null && args[1] is string) { var spellName = (string)args[0]; var luaUnitId = (string)args[1]; var spell = SpellManager.SpellBook().FirstOrDefault(s => s.NameInGame == spellName); if (spell != null) { var englishSpellName = spell.Name; if (!string.IsNullOrWhiteSpace(englishSpellName)) { Lua.LuaDoString(string.Format("CastSpellByName('{0}', '{1}');", englishSpellName.Replace("'", @"\'"), luaUnitId.Replace("'", @"\'"))); cancelEvent.Cancel = true; } } } } catch{} }; } public void Dispose() { } public void Settings() { } } Main.cs rootuser 1 Link to comment https://wrobot.eu/forums/topic/15588-wrong-wow-language/#findComment-69837 Share on other sites More sharing options...
rootuser 0 Posted January 11, 2025 Author Share Posted January 11, 2025 Works! Thank you! Link to comment https://wrobot.eu/forums/topic/15588-wrong-wow-language/#findComment-69843 Share on other sites More sharing options...
Skemez 11 Posted January 13, 2025 Share Posted January 13, 2025 On 1/10/2025 at 6:48 AM, Droidz said: Hello, try this plugin : using System.Linq; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.Events.OnCustomEvent += (eventName, args, cancelEvent) => { try { if (eventName =="SpellManager.CastSpellByNameOn" && args != null && args.Length == 2 && args[0] != null && args[0] is string && args[1] != null && args[1] is string) { var spellName = (string)args[0]; var luaUnitId = (string)args[1]; var spell = SpellManager.SpellBook().FirstOrDefault(s => s.NameInGame == spellName); if (spell != null) { var englishSpellName = spell.Name; if (!string.IsNullOrWhiteSpace(englishSpellName)) { Lua.LuaDoString(string.Format("CastSpellByName('{0}', '{1}');", englishSpellName.Replace("'", @"\'"), luaUnitId.Replace("'", @"\'"))); cancelEvent.Cancel = true; } } } } catch{} }; } public void Dispose() { } public void Settings() { } } Main.cs 1.42 kB · 2 downloads Where would you apply this? Link to comment https://wrobot.eu/forums/topic/15588-wrong-wow-language/#findComment-69848 Share on other sites More sharing options...
Droidz 2771 Posted February 7, 2025 Share Posted February 7, 2025 Download Main.cs and put this file in the folder "WRobot\Plugins\" (you can rename it). Launch WRobot (or restart it) then go to the tab "Plugins" and enable it. Skemez 1 Link to comment https://wrobot.eu/forums/topic/15588-wrong-wow-language/#findComment-69899 Share on other sites More sharing options...
Skemez 11 Posted February 10, 2025 Share Posted February 10, 2025 On 2/7/2025 at 7:05 AM, Droidz said: Download Main.cs and put this file in the folder "WRobot\Plugins\" (you can rename it). Launch WRobot (or restart it) then go to the tab "Plugins" and enable it. so i did exactly that and im still having the same issue. here are my logs 10 Feb 2025 00H32.log.html Link to comment https://wrobot.eu/forums/topic/15588-wrong-wow-language/#findComment-69905 Share on other sites More sharing options...
droopyisevolz 1 Posted February 12, 2025 Share Posted February 12, 2025 bump not working after fix for me pls help Skemez 1 Link to comment https://wrobot.eu/forums/topic/15588-wrong-wow-language/#findComment-69921 Share on other sites More sharing options...
Wenkafonte 0 Posted February 19, 2025 Share Posted February 19, 2025 On 2/9/2025 at 9:37 PM, Skemez said: so i did exactly that and im still having the same issue. here are my logs 10 Feb 2025 00H32.log.html 45 kB · 3 downloads On 2/12/2025 at 2:28 AM, droopyisevolz said: bump not working after fix for me pls help same, 2 weeks in and cant get this working. Always Chinese spell names Link to comment https://wrobot.eu/forums/topic/15588-wrong-wow-language/#findComment-69933 Share on other sites More sharing options...
Droidz 2771 Posted February 19, 2025 Share Posted February 19, 2025 And with this plugin https://wrobot.eu/forums/topic/15477-i-need-help-with-my-fightclass-thought-lua-code/?&_rid=1#findComment-69403 ? Link to comment https://wrobot.eu/forums/topic/15588-wrong-wow-language/#findComment-69935 Share on other sites More sharing options...
Gobick 1 Posted March 7, 2025 Share Posted March 7, 2025 I am having these issues too, I have tried both the plugins suggested. Didn't fix anything sadly : / Link to comment https://wrobot.eu/forums/topic/15588-wrong-wow-language/#findComment-69997 Share on other sites More sharing options...
robot1992 5 Posted May 11, 2025 Share Posted May 11, 2025 Link to comment https://wrobot.eu/forums/topic/15588-wrong-wow-language/#findComment-70146 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now