only
发表于 2012-12-12 15:39:02
一个柔软的披风补丁你懂的
only
发表于 2012-12-12 15:43:12
一个目前都是马甲服的网站模板 附加了点功能 什么服 这里不说了 你懂的
某垃圾服 模板 附加了功能
only
发表于 2012-12-12 15:45:34
还有东西 有需要的 可以加我QQ吧 我有的会无私奉献给你。 350504967
only
发表于 2012-12-12 15:49:33
一些新物品80---85 技能添加 简单快捷。 无错 有需要的也可以加我QQ
only
发表于 2012-12-12 15:53:02
数据库 和商业端的EB 就不在这里发了因为总有一些SB 利用查看BUG来攻击 一些可怜的GM 来达到他们那金钱的利益 这个说的哪个SB 谁清楚。 有想要的 也可以加我QQ
only
发表于 2012-12-12 15:58:15
在发一个脚本 传送龙洞 限制物品龙珠 可组队和传送人蛇之地限制物品银条 可组队 的LUA
18005 NPC 你懂的 就是 1转商人 帮忙那NPC 管理员 不是队长 注意
-- EVENT 绰 100锅 捞惑 何磐 荤侩
-- UID : 辑滚俊辑 力傍窍绰 蜡历锅龋
-- EVENT : 辑滚俊辑 力傍窍绰 涅胶飘 锅龋
-- STEP : 辑滚俊辑 力傍窍绰 涅胶飘 郴何 窜拌
-- 困狼 技啊瘤 颇扼皋鸥绰 风酒 角青矫 亲惑 傈开函荐肺 力傍?
-- 瘤开函荐 急攫...
local UserClass;
local QuestNum;
local Ret = 0;
local NPC =18005;
local ITEM_COUNT=0;
-- 吝惫粮 捞悼
if EVENT == 100 then
SelectMsg(UID, 3, -1, 45202, NPC, 50002, 101, 50003, 102, 50004, 103, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1);
end
if EVENT == 101 then
ITEM_COUNT = HowmuchItem(UID, 389200000);
if ITEM_COUNT <= 0 then
SelectMsg(UID, 2, -1, 45203, NPC, 10, 168, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1);
else
RobItem(UID, 389200000, 1)
ZoneChangeParty(UID, 34, 112, 17)
end
end
if EVENT == 102 then
ITEM_COUNT = HowmuchItem(UID, 379067000);
if ITEM_COUNT <= 0 then
SelectMsg(UID, 2, -1, 45204, NPC, 10, 168, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1);
else
RobItem(UID, 379067000, 1)
ZoneChangeParty(UID, 51, 135, 159)
end
end
only
发表于 2012-12-12 15:58:48
SelectMsg(UID, 3, 这个3 改成2
only
发表于 2012-12-12 16:00:18
就是2个对话框 45202, NPC, 50002, 101, 50003, 102, 50004, 103,这些在DATA里面添加
不会加的 也可以找我要完善的 DATA
only
发表于 2012-12-12 16:25:40
需要什么 可以直接回帖子 我看到了 有的 会发的
only
发表于 2012-12-12 17:02:30
在发个改名系统 <!--#include file="config.asp"-->
<!--#include file="md5.asp"-->
<%
action=trim(request("action"))
strAccountID=Trim(checkstr(request("strAccountID")))
strUserID=Trim(checkstr(request("strUserID")))
if action="do" And strAccountID<>"" Then
If strAccountID="" or strUserID="" Then
msg="必要段为空!"
else
Set rs=connAccount.execute("select strAccountID from TB_USER where strAccountID='"&strAccountID&"'")
If Not rs.eof Then
set ts=connAccount.execute("select strAccountID from currentuser where strAccountID='"&strAccountID&"'")
if not ts.eof then
msg="操作失败,该账号当前在线!"
else
set cs=connGame.execute("select strAccountID,strCharID1 from ACCOUNT_CHAR where strAccountID='"&strAccountID&"'")
if not cs.eof then
connGame.execute("exec ACCOUNT_CHAR_NAME_CHANGE '"&cs("strCharID1")&"','"&strUserID&"'")
msg="操作成功,更名成功!"
end if
cs.close:set cs=nothing
end if
ts.close:set ts=nothing
Else
msg="未找到指定的账号,操作失败!"
End If
rs.close:Set rs=nothing
End If
response.write("<script>parent.document.getElementById('strAccountID').value='';</script>")
response.write("<script>parent.document.getElementById('strUserID').value='';</script>")
response.write("<script>parent.document.getElementById('sendresult').innerHTML='"&msg&"';</script>")
response.write("<script>alert('"&msg&"');</script>")
response.end
end If
if action="check" then
strUserID=trim(request("strUsrID"))
if strUserID<>"" then
set rs=conngame.execute("select struserid from userdata where struserid='"&strUserID&"'")
if not rs.eof then
response.write("<script>parent.document.getElementById('checkresult').innerHTML='<font color=red>["&strUserID&"]已被占用,无法使用!</font>';</script>")
response.write("<script>alert('["&strUserID&"]已被占用!');</script>")
else
response.write("<script>parent.document.getElementById('checkresult').innerHTML='<font color=green>["&strUserID&"]可以使用!</font>';</script>")
response.write("<script>alert('["&strUserID&"]可以使用');</script>")
end if
rs.close:set rs=nothing
end if
response.end
end if
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title></title>
<link href="style.css" rel="Stylesheet" type="text/css" />
<script>
function docheck(){
if(document.getElementById('strUserID').value!=''){
document.getElementById('strUsrID').value=document.getElementById('strUserID').value;
document.getElementById('ajaxForm').action='account.namechange.asp?action=check';
document.getElementById('ajaxForm').submit();
}else{
alert('请先输入人物名');
return false;
}
}
</script>
</head>
<body id="content">
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="introTbl">
<tr>
<td colspan="2" class="t" height="25">人物改名</td>
</tr>
<tr>
<td height="25" width="50" align="right"> </td>
<td align="left">
<form id="searchFrm" name="searchFrm" method="POST" action="account.namechange.asp?action=do" style="margin:5px;" target="postFrm">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td height="25" width="70">账号:</td>
<td align="left"><input type="text" name="strAccountID" class="input" style="width:200px;" /></td>
</tr>
<tr>
<tdheight="25">新角色名:</td>
<td align="left"><input type="text" name="strUserID" id="strUserID" class="input" style="width:200px;" value="<%=strUserID%>" /> <span id="checkresult">仅支持改中间那个</span></td>
</tr>
<tr>
<td height="35"> </td>
<td align="left"><input type="button" onclick="docheck()" class="btns" value=" 检查是否重名 " /> <input type="submit" class="btns" value=" 开始改 " /></td>
</tr>
<tr>
<td height="25"> </td>
<td id="sendresult" align="left" style="color:green;font-weight:bold;"> </td>
</tr>
</table>
</form>
</td>
</tr>
</table>
<form name="ajaxForm" id="ajaxForm" action="#" method="post" target="postFrm">
<input type="hidden" name="strUsrID" id="strUsrID" value="">
</form>
<iframe id="postFtm" name="postFrm" height="0" width="0" scrolling="no" frameborder="0" src="about:blank"></iframe>
</body>
</html>
<%closeconn()%>