File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -19,4 +19,11 @@ public unsafe class PlayerModule : LuaModuleBase
1919
2020 [ LuaFunction ] public JobWrapper Job => new ( Player . JobId ) ;
2121 [ LuaFunction ] public JobWrapper GetJob ( uint classJobId ) => new ( classJobId ) ;
22+
23+ [ LuaFunction ] public bool IsMoving => Player . IsMoving ;
24+ [ LuaFunction ] public bool IsInDuty => Player . IsInDuty ;
25+ [ LuaFunction ] public bool IsOnIsland => Player . IsOnIsland ;
26+ [ LuaFunction ] public bool CanMount => Player . CanMount ;
27+ [ LuaFunction ] public bool CanFly => Player . CanFly ;
28+ [ LuaFunction ] public bool Revivable => Player . Revivable ;
2229}
Original file line number Diff line number Diff line change 1+ git stuff:
2+ - implement a cache system for git dependencies
3+ - cache dependencies as files in some cache folder
4+ - refresh cache if older than a day (?)
5+ - git repo browser
6+ - add links (include some by default?) and see all matching file type files and pick and choose which to download
7+ - git repo as a dependency
8+ - instead of needing to add all files individually, add one repo and it'll download all files present
9+
10+ general:
11+ - add /task command, takes in the name of some task and does the thing, main macro waits for its completion
12+ - depend/conflict with plugin specific settings (e.g. ST or pandora individual tweaks)
13+
14+ ui:
15+ - indicate in the lua docs if a field has a setter
You can’t perform that action at this time.
0 commit comments