Project1

标题: 请问如何将当前系统时间 年月日时分 分别存储至变量中? [打印本页]

作者: thr0116    时间: 2017-5-28 14:14
标题: 请问如何将当前系统时间 年月日时分 分别存储至变量中?
rt,求大佬帮助啊……想做一个庄园系统。
虽然想到了用new Date来获取时间,实在不知道该怎么将事件保存到变量里
作者: linphy    时间: 2017-5-28 16:30
把这个加入脚本:
$gameVariables.setValue(1, new Date)
1是变量号码
作者: fux2    时间: 2017-5-28 18:43
  1. var tmp = new Date();
  2. $gameVariables.setValue(1, tmp.getYear()+1900);
  3. $gameVariables.setValue(2, tmp.getMonth()+1);
  4. $gameVariables.setValue(3, tmp.getDate());
  5. $gameVariables.setValue(4, tmp.getHours());
  6. $gameVariables.setValue(5, tmp.getMinutes());
复制代码


执行以上脚本,完成后1,2,3,4,5号变量会分别变为年月日时分
作者: heying1900    时间: 2017-6-16 13:59
不错,简洁!




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1