What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Method to return wether bot is currently gathering?

tmask

New Member
Joined
Jun 18, 2011
Messages
22
Reaction score
0
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?
 
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"))
Please no. That will only work for english clients.

Code:
ff14bot.Managers.GatheringWindow.WindowOpen
 
Back
Top