2021年1月22日
lua文档
基础类型(8种)
nil: nil boolean: false true false 和 nil 代表false,其他都是true number: 都是64-bit double精度的数值型 string: bytes序列 function: 可调用c函数或lua函数 userdata: a block of raw memory, 常通过 metatables 定义对数据的操作。lua内不可以创建、修改userdata的值,只能通过C API完成。 thread: 与系统线程无关, 用于实现协程 table: 唯一的数据结构 table, functions, threads, userdata 变量都是引用(非值传递, 仅传递指针), 意味着没有数据拷贝发生。……
阅读全文
2020年11月15日
欧陆风云 无人深空 骑马与砍杀 文明5 涉及的动作包括:
自动按键 界面判断 #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. #SingleInstance force ; #Warn ; Enable warnings to assist with detecting common errors. ; SendMode Input ; Recommended for new scripts due to its superior speed and reliability. ; SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. SetTitleMatchMode, 2 CoordMode, Mouse, Screen now = Format("20200116002159") ; #InstallKeybdHook ;start of script ;#IfWinActive UltraEdit ;^j::MsgBox You pressed Win+Spacebar in Notepad. #IfWinActive, Europa Universalis IV { savepath := Format("C:\Users\bard\Documents\Paradox Interactive\Europa Universalis IV\save games\") F12:: FormatTime, now, , yyyyMMddHHmmss FileCopy, %savepath%autosave.eu4, %savepath%backup\autosave_%now%.eu4 Sleep, 100 MsgBox "Backup to %savepath%backup\autosave_%now%.eu4 ." Return ^F12:: SendEvent, {Esc down} Sleep, 25 SendEvent, {Esc up} Random, Delay, 150, 200 FileCopy, %savepath%backup\autosave_%now%.eu4, %savepath%autosave.eu4 Return } #IfWinActive, No Man's Sky { srcDir := Format("C:\Users\bard\AppData\Roaming\HelloGames\NMS\st_76561198257103065") dstDir := Format("C:\Users\bard\AppData\Roaming\HelloGames\NMS\backup\st_76561198257103065") F12:: FormatTime, now, , yyyyMMddHHmmss FileCopyDir, %srcDir%, %dstDir%_%now% Return } #IfWinActive, Mount&Blade Warband { ; #UseHook ; savepath := Format("C:\Users\bard\Documents\Mount&Blade Warband Savegames\Perisno_0.……
阅读全文
2020年8月23日
Ctrl + Alt + V
对剪贴板中的内容做处理, 比如剪贴板中是图片的话, 会保存图片然后插入对图片的markdown引用
我想在保存后, 将本地的文件上传到服务器上 Ctrl + Alt + D
下载剪贴板中的URL所指向的文件保存在本地后, 向当前编辑器插入对文件的引用
Ctrl + Alt + T
给选中的内容加拼音标注
Ctrl + Alt + \
输入md的表情、公式字符之类的……
阅读全文