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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Method to return wether bot is currently gathering?

tmask

New Member
Joined
Jun 18, 2011
Messages
22
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