赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 56 |
经验 | 1174 |
最后登录 | 2024-6-20 |
在线时间 | 177 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 5621
- 在线时间
- 177 小时
- 注册时间
- 2011-6-3
- 帖子
- 32
|
# 以下代码加入其中一个插件中;
# 获取存档ID: DataManager.savefileId
- DataManager.savefileId = 0;
- DataManager.loadGame = function(savefileId) {
- try {
- this.savefileId = savefileId;
- return this.loadGameWithoutRescue(savefileId);
- } catch (e) {
- console.error(e);
- return false;
- }
- };
复制代码
# 使用Web存储,防一般玩家
- StorageManager.save = function(savefileId, json) {
- this.saveToWebStorage(savefileId, json);
- };
- StorageManager.load = function(savefileId) {
- return this.loadFromWebStorage(savefileId);
- };
复制代码 |
|