Discussion of Inner Space
Moderators: Lavish Software Team, Moderators
-
Jedis
- Non-Subscriber
- Posts: 111
- Joined: Thu Jul 08, 2004 9:49 pm
Post
by Jedis » Sat Jul 25, 2009 5:57 pm
This doesn't seem to be working for EQ1.
I want it to press the 0 key and then after that, do shift+alt+0. It's only doing part 1 and ignoring part 2.
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<Box xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<ObjectType>System.Collections.Generic.List`1[ISBoxer_Toolkit.Configs.KeyMaps.MappedKeyAction]</ObjectType>
<SerializedObject><?xml version="1.0" encoding="utf-8"?>
<ArrayOfMappedKeyAction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<MappedKeyAction xsi:type="Keystroke">
<Target>2</Target>
<Combo>
<Combo>0</Combo>
<Modifiers>None</Modifiers>
<Key>
<Key>0</Key>
<Code>11</Code>
</Key>
</Combo>
</MappedKeyAction>
<MappedKeyAction xsi:type="Keystroke">
<Target>2</Target>
<Combo>
<Combo>Shift+Alt+0</Combo>
<Modifiers>Shift Alt</Modifiers>
<Key>
<Key>0</Key>
<Code>11</Code>
</Key>
</Combo>
</MappedKeyAction>
</ArrayOfMappedKeyAction></SerializedObject>
</Box>
-
Jedis
- Non-Subscriber
- Posts: 111
- Joined: Thu Jul 08, 2004 9:49 pm
Post
by Jedis » Sat Jul 25, 2009 5:59 pm
An edit button would be nice...
ctrl+f6 is the hotkey to start it and it triggers the 0 part but ignores the next part.
I had it working at one point so if I pressed ctrl+f6 once, it did part one and then if I pressed it again it did the next step. However, I want to do everything with one hotkey.
Any ideas?
-
Jedis
- Non-Subscriber
- Posts: 111
- Joined: Thu Jul 08, 2004 9:49 pm
Post
by Jedis » Sat Jul 25, 2009 6:01 pm
Keymap:
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<Box xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<ObjectType>ISBoxer_Toolkit.Configs.KeyMaps.MappedKey</ObjectType>
<SerializedObject><?xml version="1.0" encoding="utf-8"?>
<MappedKey xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Name>Epic Clicky</Name>
<Combo>
<Combo>Ctrl+F6</Combo>
</Combo>
<SendNextClickBlockLocal>false</SendNextClickBlockLocal>
<Steps>
<Step>
<Actions>
<MappedKeyAction xsi:type="Keystroke">
<Target>2</Target>
<Combo>
<Combo>0</Combo>
<Modifiers>None</Modifiers>
<Key>
<Key>0</Key>
<Code>11</Code>
</Key>
</Combo>
</MappedKeyAction>
<MappedKeyAction xsi:type="Keystroke">
<Target>2</Target>
<Combo>
<Combo>Shift+Alt+0</Combo>
<Modifiers>Shift Alt</Modifiers>
<Key>
<Key>0</Key>
<Code>11</Code>
</Key>
</Combo>
</MappedKeyAction>
</Actions>
</Step>
</Steps>
</MappedKey></SerializedObject>
</Box>