• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Using hotbar actions, macros, or hotkeys

    Discussion in 'Community Developer Forum' started by dcone, Nov 19, 2014.

    1. dcone

      dcone New Member

      Joined:
      Nov 19, 2014
      Messages:
      29
      Likes Received:
      0
      Trophy Points:
      1
      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!
       
    2. kaihaider

      kaihaider Community Developer

      Joined:
      May 18, 2010
      Messages:
      1,325
      Likes Received:
      5
      Trophy Points:
      38
      You can keybind it and send a keypress or you can send chat...if you can use macros with chat?
       
    3. Tinytox

      Tinytox Member

      Joined:
      Nov 5, 2014
      Messages:
      370
      Likes Received:
      7
      Trophy Points:
      18
      How do you do that via script, for instance, in Orderbot? :X
       
    4. kaihaider

      kaihaider Community Developer

      Joined:
      May 18, 2010
      Messages:
      1,325
      Likes Received:
      5
      Trophy Points:
      38
      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
       
    5. Tinytox

      Tinytox Member

      Joined:
      Nov 5, 2014
      Messages:
      370
      Likes Received:
      7
      Trophy Points:
      18
      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 >.>;
       

    Share This Page