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

Using hotbar actions, macros, or hotkeys

dcone

New Member
Joined
Nov 19, 2014
Messages
29
Reaction score
0
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!
 
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!

You can keybind it and send a keypress or you can send chat...if you can use macros with chat?
 
How do you do that via script, for instance, in Orderbot? :X

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
 
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">
<=!=[=C=D=A=T=A=[ 
    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 >.>;
 
Back
Top