Page 1 of 2

Ad Marco to new chart

Posted: Thu Oct 02, 2014 3:48 pm
by Attila
L2J Revision Number:5649
L2JDP Revision Number:10448

Hi
how can you put a Macro whit like .buffer and if you made a chart you got it on your shortcut bar.
can some won help me whit this please.
how to make it and were i need to put it

thanks

Re: Ad Marco to new chart

Posted: Thu Oct 02, 2014 3:54 pm
by St3eT

Re: Ad Marco to new chart

Posted: Thu Oct 02, 2014 4:19 pm
by Attila
yes thanks
where to i put it and how to make won whit .buffer
and all new players get it on his your shortcut bar if the make a chart.
sorry some more help please

Re: Ad Marco to new chart

Posted: Thu Oct 02, 2014 5:26 pm
by Zealar

Code: Select all

<?xml version="1.0" encoding="UTF-8"?><list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/initialShortcuts.xsd">    <!-- Global shortcuts -->    <shortcuts>        <page pageId="0">            <slot slotId="0" shortcutType="ACTION" shortcutId="2" /> <!-- Attack -->            <slot slotId="3" shortcutType="ACTION" shortcutId="5" /> <!-- Pick Up -->            <slot slotId="10" shortcutType="ACTION" shortcutId="0" /> <!-- Sit/Stand -->            <slot slotId="11" shortcutType="ITEM" shortcutId="5588" /> <!-- Tutorial Guide -->            <slot slotId="12" shortcutType="MACRO" shortcutId="100" /> <!-- Buff -->        </page>        <!-- Custom example. -->        <page pageId="1">            <slot slotId="0" shortcutType="MACRO" shortcutId="10000" /> <!-- Macro Test -->        </page>    </shortcuts>    <!-- Human Mystic -->    <shortcuts classId="10">        <page pageId="0">            <slot slotId="1" shortcutType="SKILL" shortcutId="1177" shortcutLevel="1" /> <!-- Wind Strike -->            <slot slotId="10" shortcutType="SKILL" shortcutId="1216" shortcutLevel="1" /> <!-- Self Heal -->        </page>    </shortcuts>    <!-- Elven Mystic -->    <shortcuts classId="25">        <page pageId="0">            <slot slotId="1" shortcutType="SKILL" shortcutId="1177" shortcutLevel="1" /> <!-- Wind Strike -->            <slot slotId="10" shortcutType="SKILL" shortcutId="1216" shortcutLevel="1" /> <!-- Self Heal -->        </page>    </shortcuts>    <!-- Dark Mystic -->    <shortcuts classId="38">        <page pageId="0">            <slot slotId="1" shortcutType="SKILL" shortcutId="1177" shortcutLevel="1" /> <!-- Wind Strike -->            <slot slotId="10" shortcutType="SKILL" shortcutId="1216" shortcutLevel="1" /> <!-- Self Heal -->        </page>    </shortcuts>    <!-- Orc Mystic -->    <shortcuts classId="49">        <page pageId="0">            <slot slotId="1" shortcutType="SKILL" shortcutId="1001" shortcutLevel="1" /> <!-- Soul Cry -->        </page>    </shortcuts>    <!-- Macro presets -->    <macros>        <!-- Macro example with multiple commands. -->        <macro macroId="10000" icon="1" name="Macro name" description="This is a test." acronym="HI!" enabled="false"> <!-- Macro ID must be over 1000, use higher values to avoid conflicts with already existing macros. -->            <command type="SKILL" skillId="1177" skillLvl="1" /> <!-- To define a skill always include skill ID and level. -->            <command type="DELAY" delay="5" /> <!-- To define a delay always define the time in seconds. -->            <command type="TEXT">/loc</command> <!-- To define a command, just include the string as if it was typed in-game. -->            <command type="TEXT">!Hellooooo world!</command> <!-- To define a text, just include the string as if it was typed in-game. -->            <command type="SHORTCUT" page="0" slot="11" /> <!-- To define a shortcut (to an equipped item in example), include page and slot number. -->        </macro>        <macro macroId="100" icon="1" name="Buff" description="Buff" acronym="Buff" enabled="true">            <command type="TEXT">.buffer</command>        </macro>    </macros></list>
Test that.

Re: Ad Marco to new chart

Posted: Thu Oct 02, 2014 7:33 pm
by Attila
No dont work
got notting now
also this you dont get now anny more at short bar

<slot slotId="0" shortcutType="ACTION" shortcutId="2" /> <!-- Attack -->
<slot slotId="3" shortcutType="ACTION" shortcutId="5" /> <!-- Pick Up -->
<slot slotId="10" shortcutType="ACTION" shortcutId="0" /> <!-- Sit/Stand -->
<slot slotId="11" shortcutType="ITEM" shortcutId="5588" /> <!-- Tutorial Guide -->

Re: Ad Marco to new chart

Posted: Thu Oct 02, 2014 7:58 pm
by Zealar

Code: Select all

<?xml version="1.0" encoding="UTF-8"?><list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/initialShortcuts.xsd"><!-- Global shortcuts --><shortcuts>    <page pageId="0">        <slot slotId="0" shortcutType="ACTION" shortcutId="2" /> <!-- Attack -->        <slot slotId="3" shortcutType="ACTION" shortcutId="5" /> <!-- Pick Up -->        <slot slotId="7" shortcutType="MACRO" shortcutId="1001" /> <!-- Buff -->        <slot slotId="10" shortcutType="ACTION" shortcutId="0" /> <!-- Sit/Stand -->        <slot slotId="11" shortcutType="ITEM" shortcutId="5588" /> <!-- Tutorial Guide -->    </page>    <!-- Custom example. -->    <page pageId="1">        <slot slotId="0" shortcutType="MACRO" shortcutId="10000" /> <!-- Macro Test -->    </page></shortcuts><!-- Human Mystic --><shortcuts classId="10">    <page pageId="0">        <slot slotId="1" shortcutType="SKILL" shortcutId="1177" shortcutLevel="1" /> <!-- Wind Strike -->        <slot slotId="10" shortcutType="SKILL" shortcutId="1216" shortcutLevel="1" /> <!-- Self Heal -->    </page></shortcuts><!-- Elven Mystic --><shortcuts classId="25">    <page pageId="0">        <slot slotId="1" shortcutType="SKILL" shortcutId="1177" shortcutLevel="1" /> <!-- Wind Strike -->        <slot slotId="10" shortcutType="SKILL" shortcutId="1216" shortcutLevel="1" /> <!-- Self Heal -->    </page></shortcuts><!-- Dark Mystic --><shortcuts classId="38">    <page pageId="0">        <slot slotId="1" shortcutType="SKILL" shortcutId="1177" shortcutLevel="1" /> <!-- Wind Strike -->        <slot slotId="10" shortcutType="SKILL" shortcutId="1216" shortcutLevel="1" /> <!-- Self Heal -->    </page></shortcuts><!-- Orc Mystic --><shortcuts classId="49">    <page pageId="0">        <slot slotId="1" shortcutType="SKILL" shortcutId="1001" shortcutLevel="1" /> <!-- Soul Cry -->    </page></shortcuts><!-- Macro presets --><macros>    <!-- Macro example with multiple commands. -->    <macro macroId="10000" icon="1" name="Macro name" description="This is a test." acronym="HI!" enabled="false"> <!-- Macro ID must be over 1000, use higher values to avoid conflicts with already existing macros. -->        <command type="SKILL" skillId="1177" skillLvl="1" /> <!-- To define a skill always include skill ID and level. -->        <command type="DELAY" delay="5" /> <!-- To define a delay always define the time in seconds. -->        <command type="TEXT">/loc</command> <!-- To define a command, just include the string as if it was typed in-game. -->        <command type="TEXT">!Hellooooo world!</command> <!-- To define a text, just include the string as if it was typed in-game. -->        <command type="SHORTCUT" page="0" slot="11" /> <!-- To define a shortcut (to an equipped item in example), include page and slot number. -->    </macro>    <macro macroId="1001" icon="1" name="Buff" description="Buff" acronym="Buff" enabled="true">        <command type="TEXT">.buffer</command>    </macro></macros></list>

Re: Ad Marco to new chart

Posted: Thu Oct 02, 2014 8:16 pm
by Attila
no still the same
it giff still notting at short bar

Re: Ad Marco to new chart

Posted: Thu Oct 02, 2014 8:22 pm
by Zealar
You do something wrong coz i just test it and work for me.

Re: Ad Marco to new chart

Posted: Thu Oct 02, 2014 8:35 pm
by Attila
Zealar wrote:You do something wrong coz i just test it and work for me.
Dont no i put your code

and put it in initialShortcuts
and restart server create new chart but i got notting at short bar :?:
also Attack and Pick Up Sit/Stand are away :(

Re: Ad Marco to new chart

Posted: Thu Oct 02, 2014 8:40 pm
by Zealar
Upload your "initialShortcuts.xml"

Re: Ad Marco to new chart

Posted: Thu Oct 02, 2014 8:51 pm
by Attila

Code: Select all

<?xml version="1.0" encoding="UTF-8"?><list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/initialShortcuts.xsd">    <!-- Global shortcuts -->    <shortcuts>        <page pageId="0">            <slot slotId="0" shortcutType="ACTION" shortcutId="2" /> <!-- Attack -->            <slot slotId="3" shortcutType="ACTION" shortcutId="5" /> <!-- Pick Up -->            <slot slotId="10" shortcutType="ACTION" shortcutId="0" /> <!-- Sit/Stand -->            <slot slotId="11" shortcutType="ITEM" shortcutId="5588" /> <!-- Tutorial Guide -->        </page>        <!-- Custom example. -->        <page pageId="1">            <slot slotId="0" shortcutType="MACRO" shortcutId="10000" /> <!-- Macro Test -->        </page>    </shortcuts>    <!-- Human Mystic -->    <shortcuts classId="10">        <page pageId="0">            <slot slotId="1" shortcutType="SKILL" shortcutId="1177" shortcutLevel="1" /> <!-- Wind Strike -->            <slot slotId="10" shortcutType="SKILL" shortcutId="1216" shortcutLevel="1" /> <!-- Self Heal -->        </page>    </shortcuts>    <!-- Elven Mystic -->    <shortcuts classId="25">        <page pageId="0">            <slot slotId="1" shortcutType="SKILL" shortcutId="1177" shortcutLevel="1" /> <!-- Wind Strike -->            <slot slotId="10" shortcutType="SKILL" shortcutId="1216" shortcutLevel="1" /> <!-- Self Heal -->        </page>    </shortcuts>    <!-- Dark Mystic -->    <shortcuts classId="38">        <page pageId="0">            <slot slotId="1" shortcutType="SKILL" shortcutId="1177" shortcutLevel="1" /> <!-- Wind Strike -->            <slot slotId="10" shortcutType="SKILL" shortcutId="1216" shortcutLevel="1" /> <!-- Self Heal -->        </page>    </shortcuts>    <!-- Orc Mystic -->    <shortcuts classId="49">        <page pageId="0">            <slot slotId="1" shortcutType="SKILL" shortcutId="1001" shortcutLevel="1" /> <!-- Soul Cry -->        </page>    </shortcuts>    <!-- Macro presets -->    <macros>        <!-- Macro example with multiple commands. -->        <macro macroId="10000" icon="1" name="Macro name" description="This is a test." acronym="HI!" enabled="false"> <!-- Macro ID must be over 1000, use higher values to avoid conflicts with already existing macros. -->            <command type="SKILL" skillId="1177" skillLvl="1" /> <!-- To define a skill always include skill ID and level. -->            <command type="DELAY" delay="5" /> <!-- To define a delay always define the time in seconds. -->            <command type="TEXT">/loc</command> <!-- To define a command, just include the string as if it was typed in-game. -->            <command type="TEXT">!Hellooooo world!</command> <!-- To define a text, just include the string as if it was typed in-game. -->            <command type="SHORTCUT" page="0" slot="11" /> <!-- To define a shortcut (to an equipped item in example), include page and slot number. -->        </macro>    </macros></list>

Re: Ad Marco to new chart

Posted: Thu Oct 02, 2014 10:17 pm
by Zealar
That is not what i give you.

Re: Ad Marco to new chart

Posted: Fri Oct 03, 2014 12:14 pm
by Attila
Zealar wrote:That is not what i give you.
no this is the won i try
And is works now strange :?
BUT FERY THANKSMAN
Only how i made that the chortcut to page 3 and shortcut 7

Code: Select all

<?xml version="1.0" encoding="UTF-8"?><list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/initialShortcuts.xsd">    <!-- Global shortcuts -->    <shortcuts>        <page pageId="0">            <slot slotId="0" shortcutType="ACTION" shortcutId="2" /> <!-- Attack -->            <slot slotId="3" shortcutType="ACTION" shortcutId="5" /> <!-- Pick Up -->                        <slot slotId="7" shortcutType="MACRO" shortcutId="1001" /> <!-- Buff -->            <slot slotId="10" shortcutType="ACTION" shortcutId="0" /> <!-- Sit/Stand -->            <slot slotId="11" shortcutType="ITEM" shortcutId="5588" /> <!-- Tutorial Guide -->        </page>        <!-- Custom example. -->        <page pageId="1">            <slot slotId="0" shortcutType="MACRO" shortcutId="10000" /> <!-- Macro Test -->        </page>    </shortcuts>    <!-- Human Mystic -->    <shortcuts classId="10">        <page pageId="0">            <slot slotId="1" shortcutType="SKILL" shortcutId="1177" shortcutLevel="1" /> <!-- Wind Strike -->            <slot slotId="10" shortcutType="SKILL" shortcutId="1216" shortcutLevel="1" /> <!-- Self Heal -->        </page>    </shortcuts>    <!-- Elven Mystic -->    <shortcuts classId="25">        <page pageId="0">            <slot slotId="1" shortcutType="SKILL" shortcutId="1177" shortcutLevel="1" /> <!-- Wind Strike -->            <slot slotId="10" shortcutType="SKILL" shortcutId="1216" shortcutLevel="1" /> <!-- Self Heal -->        </page>    </shortcuts>    <!-- Dark Mystic -->    <shortcuts classId="38">        <page pageId="0">            <slot slotId="1" shortcutType="SKILL" shortcutId="1177" shortcutLevel="1" /> <!-- Wind Strike -->            <slot slotId="10" shortcutType="SKILL" shortcutId="1216" shortcutLevel="1" /> <!-- Self Heal -->        </page>    </shortcuts>    <!-- Orc Mystic -->    <shortcuts classId="49">        <page pageId="0">            <slot slotId="1" shortcutType="SKILL" shortcutId="1001" shortcutLevel="1" /> <!-- Soul Cry -->        </page>    </shortcuts>    <!-- Macro presets -->    <macros>        <!-- Macro example with multiple commands. -->        <macro macroId="10000" icon="1" name="Macro name" description="This is a test." acronym="HI!" enabled="false"> <!-- Macro ID must be over  1000, use higher values to avoid conflicts with already existing macros. -->            <command type="SKILL" skillId="1177" skillLvl="1" /> <!-- To define a skill always include skill ID and level. -->            <command type="DELAY" delay="5" /> <!-- To define a delay always define the time in seconds. -->            <command type="TEXT">/loc</command> <!-- To define a command, just include the string as if it was typed in-game. -->            <command type="TEXT">!Hellooooo world!</command> <!-- To define a text, just include the string as if it was typed in-game. -->            <command type="SHORTCUT" page="0" slot="11" /> <!-- To define a shortcut (to an equipped item in example), include page and slot  number. -->        </macro>    <macro macroId="1001" icon="1" name="Buff" description="Buff" acronym="Buff" enabled="true">        <command type="TEXT">.buffer</command>    </macro>    </macros></list>

Re: Ad Marco to new chart

Posted: Fri Oct 03, 2014 12:43 pm
by Zealar
<slot slotId="30" shortcutType="MACRO" shortcutId="1001" /> <!-- Buff -->

Re: Ad Marco to new chart

Posted: Fri Oct 03, 2014 1:13 pm
by Attila
Zealar wrote:<slot slotId="30" shortcutType="MACRO" shortcutId="1001" /> <!-- Buff -->

Thanks all works fine now :D