Close
Showing results 31 to 40 of 60

Threaded View

olipcs Implementing an FTL quite... 01-07-2009, 06:59 AM
Freddie RE: Implementing an FTL quite... 01-07-2009, 08:27 AM
Jafula You have made it too easy!... 01-07-2009, 09:10 AM
olipcs Thanks for the kind... 01-07-2009, 10:01 AM
torytrae see below 02-16-2009, 09:06 AM
torytrae I think i figured it out: ... 02-16-2009, 11:25 AM
torytrae Hi again, I could test it... 02-17-2009, 06:12 AM
pakmanlt FTL and non FTL chars 03-20-2009, 12:28 AM
olipcs The point why the <If>... 03-20-2009, 04:47 AM
alcattle I would like to find out more... 03-31-2009, 12:58 AM
olipcs Hi, the difference is... 03-31-2009, 03:56 AM
olipcs Answering Alcatells PM... 03-31-2009, 05:41 AM
effep Hi there, first thank you all... 11-29-2012, 01:38 PM
alcattle //============================... 03-31-2009, 08:10 AM
alcattle Anyone got a bone they could... 04-06-2009, 10:45 PM
olipcs Sorry, I forgot a little bit... 04-07-2009, 05:12 AM
Flekkie Hotkeynet FTL Formations 11-05-2009, 07:25 PM
vorticone Whoa this totally blows away... 11-06-2009, 04:36 AM
Khatovar I tried answering this... 11-30-2012, 04:46 AM
effep You my friend - kick ass and... 11-30-2012, 06:17 AM
Khatovar Yeah, this is an issue with... 11-30-2012, 07:10 AM
effep One thing that you might also... 11-30-2012, 08:09 AM
krzr This is a very informative... 12-10-2012, 10:58 PM
Khatovar 10 isn't going to be any... 12-11-2012, 12:17 AM
bluelol First of all, let me show my... 03-05-2013, 02:11 PM
Khatovar The script you posted doesn't... 03-06-2013, 12:10 AM
bluelol Thank you Khatovar! This... 03-06-2013, 06:02 AM
Khatovar The part following except is... 03-06-2013, 06:21 AM
bluelol Oh I see the difference now.... 03-06-2013, 07:58 AM
bluelol So this is my current script:... 03-06-2013, 05:01 PM
Khatovar Well, like I said in an... 03-07-2013, 02:47 AM
bluelol Sometimes not using one... 03-07-2013, 03:55 AM
bluelol Tried some things, some work,... 03-07-2013, 05:05 PM
Khatovar That sounds like they aren't... 03-08-2013, 12:43 AM
bluelol Good thing weekends coming... 03-08-2013, 03:53 AM
bluelol Yes reverting back to the... 03-08-2013, 01:23 PM
Khatovar Neither will give you more... 03-09-2013, 05:15 AM
bluelol Took the weekend off... 03-11-2013, 07:15 AM
Khatovar No, you just define the whole... 03-11-2013, 08:09 AM
bluelol Tried as you suggested and... 03-11-2013, 11:36 AM
Khatovar All shocks have a ~6second... 03-11-2013, 11:07 PM
bluelol Yeah I expect it's a... 03-12-2013, 04:26 AM
bluelol Script It works without... 03-12-2013, 05:39 PM
Khatovar Yup, nothing wrong with that.... 03-13-2013, 12:09 AM
bluelol I get what you mean regarding... 03-13-2013, 04:47 AM
bluelol Been thinking about macros,... 03-14-2013, 06:41 AM
Khatovar If you pull out Flame Shock... 03-14-2013, 07:27 AM
bluelol The idea is just to do decent... 03-14-2013, 08:24 AM
Khatovar Well, using the macro as the... 03-14-2013, 08:45 AM
bluelol Ok I figured how to correct... 03-14-2013, 02:22 PM
bluelol Noticing a bug in this... 03-14-2013, 02:08 PM
bluelol Only issue is with that setup... 03-15-2013, 03:11 AM
Khatovar I don't have a means to test... 03-15-2013, 06:17 AM
bluelol Thank you for your very... 03-15-2013, 06:27 AM
Khatovar Hope it works, it's always... 03-15-2013, 06:30 AM
bluelol This works just fine. Chain... 03-15-2013, 01:59 PM
bluelol Had to do a minor change. For... 03-15-2013, 03:02 PM
bluelol Not completely surprised I... 03-15-2013, 04:47 PM
Khatovar We have success then?... 03-16-2013, 03:25 AM
bluelol Yes so far everything looks... 03-16-2013, 01:50 PM
  1. #20

    Default

    Tried as you suggested and got this working on a small scale.

    FTL template part 1
    Code:
    //----------------------------------------------------------------
    // BEGIN: FTL Engine(Focusless Leaderless Targetless engine)
    //----------------------------------------------------------------
    //Added FTL Templates
    //%1% : Master Key
    // %2% : Slave Key
    // %3% : Modifier
    // %4% : SlavesToSend
    <Template SendMasterAndSlave>
             <SendFocusWin>
                      <Key %1%>
             <Sendlabel %4%>
                      <Key %3% %2%>
    
    // PRIORITY VERSION
    
        <DoHotkey Hotkey RAlt F10>
    
    <EndTemplate>
    HotKey specifier with spells and original templates

    Code:
    <Hotkey RAlt F10>
        <SendLabel w1>
            <Key Q>
            <Key F>
        <SendLabel w2>
            <Key Q>
            <Key F>
    
    //----------------------------------------------------------------
    // FTL Key assignments
    // Create a new <ApplyTemplate FTL "x" "y">
    // x = Key pressed in the current window
    // y = Key to be sent to background windows.
    //----------------------------------------------------------------
    
    <ApplyTemplate FTL "H" "H">
    <ApplyTemplate FTL "F" "F">
    <ApplyTemplate FTL "E" "E">
    <ApplyTemplate FTL "Q" "Q">
    <ApplyTemplate FTL "Shift F" "1">
    <ApplyTemplate FTL "Shift Q" "2">
    <ApplyTemplate FTL "Shift E" "3">
    Some parts might not be required if I try this further. But fairly certain I tried skipping some parts of the code and then it stopped working.
    Right now using this, Pressing F will usually start with a Earth shock cast and then followed by a lightning bolt. I think the spell queuing might bug it sometimes because Earth Shock might take a while, but it's not non existant so I believe it's working as intended anyway.

    Tomorrow I will start removing some code and swapping keybinds and include more spells as I level. Really nice that I can use this way to keybind shift(I think/hope ) and have HKN translate it into some other spell. Would be really hard to get used to someting else.

    Many thanks
    Last edited by bluelol : 03-11-2013 at 05:14 PM Reason: Repost

Similar Threads

  1. A simple request.
    By noob123 in forum New Multi-Boxers & Support
    Replies: 5
    Last Post: 11-02-2008, 12:04 AM
  2. Just a simple question?
    By Hellsceammulti in forum New Multi-Boxers & Support
    Replies: 1
    Last Post: 10-08-2008, 04:34 PM
  3. Templates
    By Djarid in forum Off-Topic
    Replies: 2
    Last Post: 03-08-2008, 12:26 PM
  4. Class templates
    By Djarid in forum Off-Topic
    Replies: 3
    Last Post: 03-06-2008, 04:05 PM
  5. Simple Question
    By Moon in forum New Multi-Boxers & Support
    Replies: 10
    Last Post: 11-25-2007, 10:24 PM

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •