Hi there, I'm pretty noob to this, so I apologize if this is super obvious. I'm trying to make a profile that activates one of my ingame macros. I was wondering if there was a way to activate an item on my hotbar, or uses the hotkey assciated with that hotbar. Thanks!
to run c# in profiles, you do it like this: http://pastebin.com/raw.php?i=Pb5kZQRS Code: <Profile> <Name>DoActionLocation</Name> <KillRadius>50</KillRadius> <Order> <RunCode Name="DoActLoc"/> </Order> <CodeChunks> <CodeChunk Name="DoActLoc"> <![CDATA[ Actionmanager.DoActionLocation(ActionType.KeyItem,2001187, Core.Target.Location); ]]> </CodeChunk> </CodeChunks> </Profile> You can just google how to use keypresses in c# ff14bot.Managers.ChatManager.SendChat("") for chat
Sweet, thanks, I'm not sure if it's the most ideal way to do it- But I'm looking for any way that works >.>;