Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

Tsuk1ko/ff14-cn-sign-in

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FF14 国服积分签到

example

这是用 node 重写的版本,原版为 python 所写的 renchangjiu/FF14AutoSignIn

※ 暂不支持 WeGame 帐号

使用例

使用构建好的可执行文件

releases 页面按系统下载对应版本的并解压得到可执行文件,以ff14csi-win-x64.exe为例,然后可以执行

ff14csi-win-x64.exe -u 帐号 -p 密码 -a 大区 -s 服务器 -r 角色名

例如

ff14csi-win-x64.exe -u 18812345678 -p mypassword -a 陆行鸟 -s 宇宙和音 -r 我自己

已有 node.js

npm i -g ff14-cn-sign-in

然后就可以直接使用ff14csi命令,使用方法与上面同理

ff14csi -u 帐号 -p 密码 -a 大区 -s 服务器 -r 角色名

API

const Client = require('ff14-cn-sign-in');
const jifen = new Client(
  {
    user:   '帐号',
    passwd: '密码',
    area:   '大区',
    server: '服务器',
    role:   '角色名',
  },
  {
    log: false, // 是否输出日志
  }
);
jifen.signIn();