Skip to content

Commit 2b0fe29

Browse files
committed
add todo
1 parent 243e871 commit 2b0fe29

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

SomethingNeedDoing/LuaMacro/Modules/PlayerModule.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

SomethingNeedDoing/TODO.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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

0 commit comments

Comments
 (0)