combrain
发表于 2018-1-31 11:53:21
笑而不语呵呵 发表于 2018-1-20 18:55
好吧。首先改金币然后酒馆刷声望刷出5个位置就可以了然后全部招满接着打开winscp 路径/home/wly/lyingdra ...
能补个链接吗
笑而不语呵呵
发表于 2018-1-31 17:43:36
combrain 发表于 2018-1-31 11:53
能补个链接吗
链接:https://pan.baidu.com/s/1eTX8o0q 密码:5eil
combrain
发表于 2018-2-1 08:44:24
:::,万分感谢
eidision520
发表于 2018-2-5 10:19:40
这游戏是哪个公司出的啊
saga0000
发表于 2018-2-5 19:12:42
好像是游奇公司
siside001
发表于 2018-2-21 19:17:42
卧斗怪灌 发表于 2018-1-17 21:52
单人刷军团
最小需求1人 最大xx 最长连胜50
改了不好使,麻烦嫩不能详细说明一下。
我只改了instance目录下的文件,听说还要改客户端的文件
siside001
发表于 2018-2-22 19:16:07
天嘿嘿喔 发表于 2018-1-13 15:41
我不知道我改了什么 现在过图掉落的紫橙物品不会掉线了
老是掉线郁闷死了
xuehongbinvssha
发表于 2018-2-27 22:48:29
天嘿嘿喔 发表于 2018-1-13 15:41
我不知道我改了什么 现在过图掉落的紫橙物品不会掉线了
求指教,怎么修改
xuehongbinvssha
发表于 2018-2-27 22:48:50
天嘿嘿喔 发表于 2018-1-13 15:41
我不知道我改了什么 现在过图掉落的紫橙物品不会掉线了
求指教,怎么修改啊啊啊
魔法兔子
发表于 2018-2-27 23:22:51
小手一抖,金币拿走!:
li8001
发表于 2018-3-4 08:26:35
静静的等待改进吧!!!
ouyanghua147
发表于 2018-3-4 12:23:10
楼主敢补个链接不!挂了!!!!
w10104
发表于 2018-3-9 12:04:32
本帖最后由 w10104 于 2018-3-9 12:12 编辑
怎么改军令数量,我找了很久,都没找到这军令数量在哪儿
呵呵,终于找到了,原来是militory_order里的数字就是
wj7610
发表于 2018-3-11 16:19:28
有大神弄好单人副本的说声啊???
c635716742
发表于 2018-3-15 16:54:17
用哪个版本的vmware, 用了9 和 14 都打不开!
ericji
发表于 2018-3-26 23:12:50
连接已挂 连接已挂 连接已挂
w10104
发表于 2018-3-30 15:58:04
c635716742 发表于 2018-3-15 16:54
用哪个版本的vmware, 用了9 和 14 都打不开!
我用的是10
hebeilyc
发表于 2018-3-30 16:07:24
鸡冻半天,链接失效……
mahua001
发表于 2018-3-30 18:27:46
你那么流逼,你家里人知道吗?
sfleehom515
发表于 2018-4-4 23:24:55
这个游戏我改通关了,165级。可以用Navicat Premium随便修改。因为图不能上传,就不上传了。麻烦。
我这里放出一个修改的51登录版,不需要真的51账号,可以用account表里面的loginname登录,也可以 自己手动创建一条纪录登录
index.html源码修改如下
<!DOCTYPE html>
<html>
<head>
<title>卧龙吟</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<style>
input, select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
input {
background-color: #4c75af;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
input:hover {
background-color: #45a049;
}
.container {
width: 22%;
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
</style>
</head>
<body>
<center>
<h1>卧龙吟</h1>
<div class="container">
<form action="toandaik.jsp" method="post" name="login">
<input type="text" placeholder="450834229" name="username" value="450834229">
<input type="submit" value="登陆" name = "login">
</form>
</div>
</center>
</body>
</html>
toandaik.jsp是核心的部分,里面用到了3个JS文件,jquery和md5网上能找到的。或者直接去51网站下载。
<%@ page language="java" contentType="text/html; charset=UTF-8" import="java.util.*" pageEncoding="UTF-8"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>卧龙吟</title>
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body>
<script src="jquery.js"></script>
<script src="md5.js"></script>
<script src="passport.js"></script>
<script>
$(function() {
var username = String(<%= request.getParameter("username") %>);
foGameClient.loginCheck("917e1feeba575bba9ae225e1352ea2c7",username, function(user) {
location.href = "51login";
});
});
</script>
</body>
</html>
改成了本地的JS引用,这样不用依赖51账号。最后也是最关键的,修改JS回调
passport.js文件如下
if (!foGameClient) {
var foGameClient = {};
}
foGameClient.getCookie = function(name) {
var val = null;
if (document.cookie && document.cookie != "") {
var cks = document.cookie.split(";");
for (var i = 0; i < cks.length; i++) {
var ck = $.trim(cks);
if (ck.substring(0, name.length + 1) == (name + "=")) {
val = decodeURIComponent(ck.substring(name.length + 1));
break;
}
}
}
return val;
};
foGameClient.setCookie = function(name, value, options) {
options = options || {};
if (null === value) {
value = "";
options.expires = -1;
}
var expires = "";
if (options.expires && ("number" == typeof options.expires || options.expires.toUTCString)) {
var date;
if ("number" == typeof options.expires) {
date = new Date();
date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
} else {
date = options.expires;
}
expires = "; expires=" + date.toUTCString();
}
var path = options.path ? "; path=" + (options.path) : "";
var domain = options.domain ? "; domain=" + (options.domain) : "";
var secure = options.secure ? "; secure" : "";
document.cookie = .join("");
};
foGameClient.passportCallback = function(params) {
if (!this.getCookie(params.app_key) || 1 || (parseInt(params.time) - parseInt(this.getCookie(params.app_key + "_time"))) > 3600) {
this.setCookie(params.app_key, params.sig, {
path: "/"
});
this.setCookie(params.app_key + "_user", params.user, {
path: "/"
});
this.setCookie(params.app_key + "_time", params.time, {
path: "/"
});
this.setCookie(params.app_key + "_session_key", params.session_key, {
path: "/"
});
}
if (foGameClient.loginCallback) {
foGameClient.loginCallback(params.user, params.time, params.session_key, params.sig);
}
return true;
};
foGameClient.loginCheck = function(pubKey, userName, callback) {
var try_user = urlrequest('try_user');
var now_user = this.getCookie(pubKey+"_user");
if (callback) {
foGameClient.loginCallback = callback;
}
var nowdate= String(Math.round(new Date().getTime()/1000).toString());
foGameClient.passportCallback({
app_key: "917e1feeba575bba9ae225e1352ea2c7",
user: userName,
time: nowdate,
session_key: hex_md5(userName),
sig: hex_md5(nowdate)
});
};
foGameClient.logout = function(pubKey) {
this.setCookie(pubKey, null, {path:"/"});
this.setCookie(pubKey+"_user", null, {path:"/"});
this.setCookie(pubKey+"_time", null, {path:"/"});
this.setCookie(pubKey+"_session_key", null, {path:"/"});
};
function urlrequest(argname)
{
var url = document.location.href;
var arrStr = url.substring(url.indexOf("?")+1).split("&");
//return arrStr;
for(var i =0;i<arrStr.length;i++)
{
var loc = arrStr.indexOf(argname+"=");
if(loc!=-1)
{
return arrStr.replace(argname+"=","").replace("?","");
break;
}
}
return "";
}
上面3个文件分别保存到/home/toandaik/wly_web目录下面即可,然后直接点登录游戏。
页:
1
2
3
4
5
6
7
8
9
10
[11]
12
13