こんな感じです。ただ質問されても答えられないので、詳しいことはググったりしてみてくださいな。
①コマンドを実行
script GenericGump.Shutdown = function() end
②コマンドを実行
script GenericGump.OnShown = function() end
③生産アイテムを使う(錬金術なら乳鉢、裁縫なら裁縫キット等)
④遅延 0.5秒
⑤再作成
⑥遅延 2秒
⑦コマンドを実行
script GenericGumpOnRClicked(WindowGetId(GenericGump.LastGump))
といれています。
①②はよくわかりませんがガンプの初期化かな?
⑦はガンプを閉じるコマンドです
②や⑥はガンプが表示されるのを待つ遅延と行った感じです。
一応、設定ファイルの内容をそのままコピーしておきますので参考にしてください。
<UserAction type="Macro" id="2" iconId="856017" name="Craft Last Potion" repeatEnabled="false" repeatCount="2" binding="">
<UserAction type="UserCommand" id="0" iconId="790" targetType="Cursor" text="script GenericGump.Shutdown = function() end" />
<UserAction type="UserCommand" id="0" iconId="790" targetType="Cursor" text="script GenericGump.OnShown = function() end" />
<UserAction type="UseObjectType" id="245039104" iconId="3739" targetType="Cursor" iconObjectType="0" iconObjectHue="0" />
<UserAction type="Delay" id="0" iconId="623" targetType="Cursor" delay="0.50" />
<UserAction type="UserCommand" id="6006" iconId="876006" targetType="Cursor" text="script Actions.MakeLast()" />
<UserAction type="Delay" id="0" iconId="623" targetType="Cursor" delay="2.00" />
<UserAction type="UserCommand" id="0" iconId="790" targetType="Cursor" text="script GenericGumpOnRClicked(WindowGetId(GenericGump.LastGump))" />
</UserAction>
|
|
PR