- 履歴一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Windower/Lua へ行く。
- 1 (2024-07-11 (木) 21:18:22)
- 2 (2024-08-23 (金) 00:52:06)
- 3 (2024-08-24 (土) 01:20:06)
- 4 (2024-08-24 (土) 19:10:17)
- 5 (2024-10-04 (金) 14:50:22)
- 6 (2024-11-03 (日) 16:20:49)
- 7 (2024-11-09 (土) 01:45:13)
- 8 (2024-11-09 (土) 23:38:02)
- 9 (2024-11-13 (水) 01:46:12)
- 10 (2024-11-20 (水) 15:41:23)
- 11 (2025-01-01 (水) 23:41:14)
- 12 (2025-01-13 (月) 11:17:30)
- 13 (2025-01-22 (水) 09:10:16)
- 14 (2025-01-27 (月) 03:26:40)
- 15 (2025-02-01 (土) 18:46:02)
- 16 (2025-02-20 (木) 13:38:36)
- 17 (2025-02-23 (日) 11:11:01)
- 18 (2025-03-06 (木) 19:56:26)
- 19 (2025-03-07 (金) 13:55:42)
- 20 (2025-03-10 (月) 12:50:27)
- 21 (2025-04-07 (月) 22:16:25)
- 22 (2025-04-08 (火) 23:56:32)
- 23 (2025-04-14 (月) 03:09:45)
- 24 (2025-05-06 (火) 23:00:18)
- 25 (2025-06-21 (土) 18:13:23)
- 26 (2025-07-02 (水) 15:42:27)
- 27 (2025-07-05 (土) 23:03:08)
- 28 (2025-07-10 (木) 14:20:25)
- 29 (2025-08-11 (月) 12:14:14)
- 30 (2025-08-16 (土) 23:47:28)
- 31 (2025-08-22 (金) 12:15:23)
- 32 (2025-08-22 (金) 15:37:05)
- https://github.com/Windower/Lua/wiki/FFXI-Functions#windowerffxiget_abilities
- https://github.com/Windower/Lua/wiki/FFXI-Functions#windowerffxiget_party
- Windower/Lua/Warp (移動)
- Windower/Lua/Item (アイテム)
- Windower/Lua/Bags (バッグ、収納)
- Windower/Lua/Trade (アイテム交換)
- Windower/Lua/Equip (装備、武器、装束)
- Windower/Lua/Sparks エミネンス
- Windower/Lua/Unity ユニティポイント
- Windower/Lua/Sell (売る)
- Windower/Lua/Buy (買う)
- Windower/Lua/Buff (強化)
- Windower/Lua/Party (パーティ情報)
- Windower/Lua/Fight (戦闘)
- Windower/Lua/Quest クエスト
- Windower/Lua/Packet (サーバ通信)
- Windower/Lua/IPC (内部通信)
- Windower/Lua/File ファイル操作
バージョン†
- WindowerのLuaは特殊バージョン
- https://yamamikan.blogspot.com/2018/12/windowerlua_11.html
Windower Lua APIのページには上記の通り書かれている。Lua ver.5.1を改造したものを使っているとのこと。したがって、一般的なLua実行環境でWindower4\Addons\libs\Tables.luaとかWindower固有の機能を使わない基本的なスクリプトのテストをしようとしてもエラーがでてしまいテスト出来ない。
- https://yamamikan.blogspot.com/2018/12/windowerlua_11.html
入門†
- Lua Guide for programmers
- https://forums.windower.net/index.php@sharelink=download%3BaHR0cDovL2ZvcnVtcy53aW5kb3dlci5uZXQvaW5kZXgucGhwPy90b3BpYy82OTctbHVhLWd1aWRlLWZvci1wcm9ncmFtbWVycy8,%3BTHVhIEd1aWRlIGZvciBwcm9ncmFtbWVycw,,.html
- Here are some of my major dislikes with the language: (Lua/Defact#windower)
定義†
Enter入力†
- https://forums.windower.net/index.php@sharelink=download%3BaHR0cDovL2ZvcnVtcy53aW5kb3dlci5uZXQvaW5kZXgucGhwPy90b3BpYy82MTQtbHVhLWhvdy10by1zZW5kLWEtc3BlY2lmaWMta2V5LXRvLWNsaWVudC1yZWctZW50ZXItb3Iv%3BTFVBOiBIb3cgdG8gc2VuZCBhIHNwZWNpZmljIGtleSB0byBjbGl.html
Like i said, i want to simulate ENTER to advance a cutscene or - to open the main menu. Very simple. I tried
windower.send_command('setkey enter down;setkey enter up')
and that worked. It's not pretty but it does the trick.
- Addon の Enternity で十分かも?
サンプル†
- キャラクターを移動させる
- モンスターに自動追随?
- autoAssist
- ChatMan.lua
- https://github.com/Ivaar/Windower-addons/blob/master/ChatMan/ChatMan.lua
os.clock() windower.play_sound(windower.addon_path .. '%s.wav':format(chat))
- https://github.com/Ivaar/Windower-addons/blob/master/ChatMan/ChatMan.lua
その他†
- WindowerのLuaは特殊バージョン
- S{}ってなんだ!?