Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
lgc2333 committed Feb 24, 2024
1 parent ff7bfde commit ae78c26
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 20 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ _自用插件,功能虽然比不上论坛里的其它插件,但就是图简

## 安装方法

`StuSign.lls.js` 扔进 BDS 插件目录即可
```bash
lip install github.com/lgc-LLDev/StuSign
```

## 配置文件

Expand Down Expand Up @@ -53,5 +55,6 @@ QQ:3076823485

## 更新日志

- 0.1.1
- 添加每天 0:00 自动给所有服务器内玩家签到
### 0.1.1

- 添加每天 0:00 自动给所有服务器内玩家签到
2 changes: 1 addition & 1 deletion StuSign.lxl.js → StuSign.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ setInterval(() => {
}
}, 1000);

ll.registerPlugin('StuSign', '简洁的入服签到插件', [0, 1, 1], {
ll.registerPlugin('StuSign', '简洁的入服签到插件', [0, 1, 3], {
Author: 'student_2333',
License: 'Apache-2.0',
});
Expand Down
10 changes: 10 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"entry": "StuSign.js",
"name": "StuSign",
"type": "lse-quickjs",
"dependencies": [
{
"name": "legacy-script-engine-quickjs"
}
]
}
36 changes: 20 additions & 16 deletions tooth.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
{
"format_version": 1,
"tooth": "github.com/lgc-LLSEDev/StuSign",
"version": "0.1.1",
"dependencies": {},
"information": {
"$schema": "https://raw.githubusercontent.com/lippkg/lip/main/schemas/tooth.v2.schema.json",
"format_version": 2,
"tooth": "github.com/lgc-LLDev/StuSign",
"version": "0.1.3",
"info": {
"name": "StuSign",
"description": "简洁的签到插件",
"author": "lgc2333",
"license": "Apache-2.0",
"homepage": "https://github.com/lgc-LLSEDev/StuSign"
"description": "A simple plugin that automatically give player awards per day",
"author": "student_2333",
"tags": ["plugin", "lse", "quickjs", "check-in", "award"]
},
"placement": [
{
"source": "StuSign.lxl.js",
"destination": "plugins/StuSign.js"
}
],
"possession": ["plugins/StuSign/"]
"files": {
"place": [
{
"src": "StuSign.js",
"dest": "plugins/StuSign/StuSign.js"
},
{
"src": "manifest.json",
"dest": "plugins/StuSign/manifest.json"
}
]
}
}
7 changes: 7 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "../tsconfig.template.json",
"include": ["*.js"],
"compilerOptions": {
"outDir": "./dist"
}
}

0 comments on commit ae78c26

Please sign in to comment.