T tmask New Member Joined Jun 18, 2011 Messages 22 Reaction score 0 Oct 30, 2014 #1 Is there any method to return true/false to see if character is currently gathering at a node? I see in the documentation there is an InCombat function, but i cant find any similar one for gathering. Does one exist?
Is there any method to return true/false to see if character is currently gathering at a node? I see in the documentation there is an InCombat function, but i cant find any similar one for gathering. Does one exist?
kagamihiiragi17 Community Developer Joined Jun 24, 2014 Messages 873 Reaction score 25 Oct 30, 2014 #2 if(Core.Target.Name.Contains("Mineral Deposit") || Core.Target.Name.Contains("Rocky Outcrop") || Core.Target.Name.Contains("Mature Tree") || Core.Target.Name.Contains("Vegetation Patch"))
if(Core.Target.Name.Contains("Mineral Deposit") || Core.Target.Name.Contains("Rocky Outcrop") || Core.Target.Name.Contains("Mature Tree") || Core.Target.Name.Contains("Vegetation Patch"))
mastahg Administrator Staff member Joined Feb 27, 2011 Messages 5,381 Reaction score 388 Oct 30, 2014 #3 kagamihiiragi17 said: if(Core.Target.Name.Contains("Mineral Deposit") || Core.Target.Name.Contains("Rocky Outcrop") || Core.Target.Name.Contains("Mature Tree") || Core.Target.Name.Contains("Vegetation Patch")) Click to expand... Please no. That will only work for english clients. Code: ff14bot.Managers.GatheringWindow.WindowOpen
kagamihiiragi17 said: if(Core.Target.Name.Contains("Mineral Deposit") || Core.Target.Name.Contains("Rocky Outcrop") || Core.Target.Name.Contains("Mature Tree") || Core.Target.Name.Contains("Vegetation Patch")) Click to expand... Please no. That will only work for english clients. Code: ff14bot.Managers.GatheringWindow.WindowOpen
kagamihiiragi17 Community Developer Joined Jun 24, 2014 Messages 873 Reaction score 25 Oct 30, 2014 #4 mastahg said: Please no. That will only work for english clients. Code: ff14bot.Managers.GatheringWindow.WindowOpen Click to expand... Ahh yeah, my bad. That's an elegant solution that I wish I had thought of.
mastahg said: Please no. That will only work for english clients. Code: ff14bot.Managers.GatheringWindow.WindowOpen Click to expand... Ahh yeah, my bad. That's an elegant solution that I wish I had thought of.