Is there possible to make something copy to the clipboard? I’m working a lot on coords and want it copied to my clipboard as it would speed up my dev by a lot, thanks.
You could make a resource where:
- Makes an log file (using LoadResourceFile)
- Save it to disk (using SaveResourceFile)
Register some commands like:
-
/addcoord <name>
, Save coordinates to some table to be later be saved to disk. -
/savecoords
, for saving out all the stored coordinates, probably want to merge with existing coords list.
Also, I think this XKCD about tooling applies x)
Typing over coordinates by hand is painful indeed, especially when dealing with floating point numbers
2 Likes
You could probably use the NUI to get/set the clipboard.
It seems more useful than writing to disk, especially if you’re on a remote server lol.