From 700196c888e644eb7b2cebec96da81dacc2d595f Mon Sep 17 00:00:00 2001 From: Azide <rukuy@qq.com> Date: Tue, 20 Feb 2024 15:31:12 +0800 Subject: [PATCH] =?UTF-8?q?:fire:=20=E7=A7=BB=E9=99=A4=20mcbbsnews=20platf?= =?UTF-8?q?orm?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nonebot_bison/platform/mcbbsnews.py | 192 - .../mcbbsnews_raw_post_list_update.json | 218 - .../mock/mcbbsnews_new_post_html.html | 7429 ----------------- .../mock/mcbbsnews_post_list_html-0.html | 2552 ------ .../mock/mcbbsnews_post_list_html-1.html | 2601 ------ tests/platforms/test_mcbbsnews.py | 67 - 6 files changed, 13059 deletions(-) delete mode 100644 nonebot_bison/platform/mcbbsnews.py delete mode 100644 tests/platforms/static/mcbbsnews/mcbbsnews_raw_post_list_update.json delete mode 100644 tests/platforms/static/mcbbsnews/mock/mcbbsnews_new_post_html.html delete mode 100644 tests/platforms/static/mcbbsnews/mock/mcbbsnews_post_list_html-0.html delete mode 100644 tests/platforms/static/mcbbsnews/mock/mcbbsnews_post_list_html-1.html delete mode 100644 tests/platforms/test_mcbbsnews.py diff --git a/nonebot_bison/platform/mcbbsnews.py b/nonebot_bison/platform/mcbbsnews.py deleted file mode 100644 index b39e6ae..0000000 --- a/nonebot_bison/platform/mcbbsnews.py +++ /dev/null @@ -1,192 +0,0 @@ -import re -import time -import traceback - -from httpx import AsyncClient -from nonebot.log import logger -from bs4 import Tag, BeautifulSoup -from nonebot.plugin import require - -from ..post import Post -from ..types import Target, RawPost, Category -from ..utils import SchedulerConfig, http_client -from .platform import NewMessage, CategoryNotSupport, CategoryNotRecognize - - -class McbbsnewsSchedConf(SchedulerConfig): - name = "mcbbsnews" - schedule_type = "interval" - schedule_setting = {"minutes": 30} - - -class McbbsNews(NewMessage): - categories: dict[int, str] = { - 1: "Java版资讯", - 2: "基岩版资讯", - 3: "块讯", - 4: "基岩块讯", - 5: "周边", - 6: "主机", - 7: "时评", - } - enable_tag: bool = False - platform_name: str = "mcbbsnews" - name: str = "MCBBS幻翼块讯" - enabled: bool = True - is_common: bool = False - scheduler = McbbsnewsSchedConf - has_target: bool = False - - _known_cats: dict[int, str] = { - 1: "Java版资讯", - 2: "基岩版资讯", - 3: "块讯", - 4: "基岩块讯", - 5: "周边", - 6: "主机", - 7: "时评", - } - - @classmethod - async def get_target_name(cls, client: AsyncClient, target: Target) -> str: - return cls.name - - async def get_sub_list(self, _: Target) -> list[RawPost]: - url: str = "https://www.mcbbs.net/forum-news-1.html" - - html = await self.client.get(url) - soup = BeautifulSoup(html.text, "html.parser") - raw_post_list = soup.find_all("tbody", id=re.compile(r"normalthread_[0-9]*")) - post_list = self._gen_post_list(raw_post_list) - - return post_list - - def _gen_post_list(self, raw_post_list: list[Tag]) -> list[RawPost]: - """解析生成推文列表""" - post_list = [] - - for raw_post in raw_post_list: - post = {} - - url_tag = raw_post.find("a", class_="s xst") - if isinstance(url_tag, Tag): - post["url"] = url_tag.get("href") - title_tag = raw_post.find("a", class_="s xst") - if isinstance(title_tag, Tag): - title_string = title_tag.string - if isinstance(title_string, str): - post["title"] = self._format_text(title_string, "title") - post["category"] = raw_post.select("th em a")[0].string - post["author"] = raw_post.select("td:nth-of-type(2) cite a")[0].string - post["id"] = raw_post["id"] - raw_date = ( - raw_post.select("td:nth-of-type(2) em span span")[0]["title"] - if raw_post.select("td:nth-of-type(2) em span span") - else raw_post.select("td:nth-of-type(2) em span")[0].string - ) - if isinstance(raw_date, str): - post["date"] = self._stamp_date(raw_date) - - post_list.append(post) - - return post_list - - @staticmethod - def _format_text(raw_text: str, mode: str) -> str: - """ - 处理BeautifulSoup生成的string中奇怪的回车+连续空格 - - 参数: - title: 处理标题 - """ - match mode: - case "title": - ftext = re.sub(r"\n\s*", " ", raw_text) - case _: - raise NotImplementedError("不支持的处理模式: {mode}") - - return ftext - - @staticmethod - def _stamp_date(raw_date: str) -> int: - """ - 将时间转化为时间戳: - yyyy-mm-dd -> timestamp - """ - time_stamp = int(time.mktime(time.strptime(raw_date, "%Y-%m-%d"))) - - return time_stamp - - def get_id(self, post: RawPost) -> str: - return post["id"] - - def get_date(self, _: RawPost) -> int | None: - # 获取datetime精度只到日期,故暂时舍弃 - # return post["date"] - return None - - def get_category(self, post: RawPost) -> Category: - categoty_name = post["category"] - category_keys = list(self.categories.keys()) - category_values = list(self.categories.values()) - known_category_values = list(self._known_cats.values()) - - if categoty_name in category_values: - category_id = category_keys[category_values.index(categoty_name)] - elif categoty_name in known_category_values: - raise CategoryNotSupport(f"McbbsNews订阅暂不支持 {categoty_name}") - else: - raise CategoryNotRecognize(f"Mcbbsnews订阅尚未识别 {categoty_name}") - return category_id - - async def parse(self, post: RawPost) -> Post: - """获取并分配正式推文交由相应的函数渲染""" - post_url = "https://www.mcbbs.net/{}".format(post["url"]) - async with http_client() as client: - html = await client.get(post_url) - html.raise_for_status() - - soup = BeautifulSoup(html.text, "html.parser") - post_body = soup.find("td", id=re.compile(r"postmessage_[0-9]*")) - if isinstance(post_body, Tag): - post_id = post_body.attrs.get("id") - else: - post_id = None - pics = await self._news_render(post_url, f"#{post_id}") - - return Post( - self, - "{}\n│\n└由 {} 发表".format(post["title"], post["author"]), - url=post_url, - images=list(pics), - nickname=post["category"], - ) - - async def _news_render(self, url: str, selector: str) -> list[bytes]: - """ - 将给定的url网页的指定CSS选择器部分渲染成图片 - - 注意: - 一般而言每条新闻的长度都很可观,图片生成时间比较喜人 - """ - require("nonebot_plugin_htmlrender") - from nonebot_plugin_htmlrender import text_to_pic, capture_element - - try: - assert url - pic_data = await capture_element( - url, - selector, - viewport={"width": 1000, "height": 6400}, - device_scale_factor=3, - ) - assert pic_data - except Exception: - err_info = traceback.format_exc() - logger.warning(f"渲染错误:{err_info}") - - err_pic0 = await text_to_pic("错误发生!") - err_pic1 = await text_to_pic(err_info) - return [err_pic0, err_pic1] - else: - return [pic_data] diff --git a/tests/platforms/static/mcbbsnews/mcbbsnews_raw_post_list_update.json b/tests/platforms/static/mcbbsnews/mcbbsnews_raw_post_list_update.json deleted file mode 100644 index 4eb8c27..0000000 --- a/tests/platforms/static/mcbbsnews/mcbbsnews_raw_post_list_update.json +++ /dev/null @@ -1,218 +0,0 @@ -[ - { - "url": "thread-1340927-1-1.html", - "title": "Minecraft Java版 1.19-pre1 发布", - "category": "Java版资讯", - "author": "希铁石z", - "id": "normalthread_1340927", - "date": 1652889600 - }, - { - "url": "thread-1340080-1-1.html", - "title": "Mojang Status:服务器出现一些小问题", - "category": "块讯", - "author": "DreamVoid", - "id": "normalthread_1340080", - "date": 1652630400 - }, - { - "url": "thread-1339940-1-1.html", - "title": "kinbdogz 就近期荒野更新的风波发表看法", - "category": "块讯", - "author": "卡狗", - "id": "normalthread_1339940", - "date": 1652630400 - }, - { - "url": "thread-1339097-1-1.html", - "title": "Minecraft 基岩版 1.18.33 发布(仅 Switch)", - "category": "基岩版资讯", - "author": "电量量", - "id": "normalthread_1339097", - "date": 1652457600 - }, - { - "url": "thread-1338607-1-1.html", - "title": "Minecraft Java版 22w19a 发布", - "category": "Java版资讯", - "author": "寂华", - "id": "normalthread_1338607", - "date": 1652371200 - }, - { - "url": "thread-1338592-1-1.html", - "title": "Minecraft 基岩版 Beta & Preview 1.19.0.32/33 发布", - "category": "基岩版资讯", - "author": "苦力怕553", - "id": "normalthread_1338592", - "date": 1652371200 - }, - { - "url": "thread-1338588-1-1.html", - "title": "请给我们一个真正的“荒野更新”", - "category": "时评", - "author": "斯乌", - "id": "normalthread_1338588", - "date": 1652371200 - }, - { - "url": "thread-1338496-1-1.html", - "title": "slicedlime:周三无快照,推迟至周四", - "category": "块讯", - "author": "橄榄Chan", - "id": "normalthread_1338496", - "date": 1652198400 - }, - { - "url": "thread-1336371-1-1.html", - "title": "Minecraft 基岩版 1.18.32 发布(仅 Android、NS)【新增 NS 平台】", - "category": "基岩版资讯", - "author": "电量量", - "id": "normalthread_1336371", - "date": 1651766400 - }, - { - "url": "thread-1335897-1-1.html", - "title": "Minecraft 基岩版 Beta & Preview 1.19.0.30/31 发布", - "category": "基岩版资讯", - "author": "AzureZeng", - "id": "normalthread_1335897", - "date": 1651680000 - }, - { - "url": "thread-1335891-1-1.html", - "title": "Minecraft Java版 22w18a 发布", - "category": "Java版资讯", - "author": "Aurora_Feather", - "id": "normalthread_1335891", - "date": 1651680000 - }, - { - "url": "thread-1333196-1-1.html", - "title": "Minecraft 基岩版 Beta & Preview 1.19.0.28/29 发布", - "category": "基岩版资讯", - "author": "希铁石z", - "id": "normalthread_1333196", - "date": 1651161600 - }, - { - "url": "thread-1332834-1-1.html", - "title": "Minecraft 基岩版 1.18.31 发布", - "category": "基岩版资讯", - "author": "希铁石z", - "id": "normalthread_1332834", - "date": 1651075200 - }, - { - "url": "thread-1332811-1-1.html", - "title": "Minecraft Java版 22w17a 发布", - "category": "Java版资讯", - "author": "卡狗", - "id": "normalthread_1332811", - "date": 1651075200 - }, - { - "url": "thread-1332424-1-1.html", - "title": "Mojang Status:正在寻找1.18.30更新问题的解决方案", - "category": "基岩块讯", - "author": "ArmorRush", - "id": "normalthread_1332424", - "date": 1650988800 - }, - { - "url": "thread-1329712-1-1.html", - "title": "Minecraft 基岩版 Beta & Preview 1.19.0.26/27 发布", - "category": "基岩版资讯", - "author": "ArmorRush", - "id": "normalthread_1329712", - "date": 1650470400 - }, - { - "url": "thread-1329651-1-1.html", - "title": "Minecraft Java版 22w16b 发布", - "category": "Java版资讯", - "author": "卡狗", - "id": "normalthread_1329651", - "date": 1650470400 - }, - { - "url": "thread-1329644-1-1.html", - "title": "Minecraft Java版 22w16a 发布", - "category": "Java版资讯", - "author": "希铁石z", - "id": "normalthread_1329644", - "date": 1650470400 - }, - { - "url": "thread-1329335-1-1.html", - "title": "Minecraft 基岩版 1.18.30 发布", - "category": "基岩版资讯", - "author": "ArmorRush", - "id": "normalthread_1329335", - "date": 1650384000 - }, - { - "url": "thread-1328892-1-1.html", - "title": "“海王” 杰森·莫玛 有望主演《我的世界》大电影", - "category": "块讯", - "author": "广药", - "id": "normalthread_1328892", - "date": 1650297600 - }, - { - "url": "thread-1327089-1-1.html", - "title": "Minecraft 基岩版 Beta & Preview 1.19.0.24/25 发布", - "category": "基岩版资讯", - "author": "ArmorRush", - "id": "normalthread_1327089", - "date": 1649952000 - }, - { - "url": "thread-1326640-1-1.html", - "title": "Minecraft Java版 22w15a 发布", - "category": "Java版资讯", - "author": "ArmorRush", - "id": "normalthread_1326640", - "date": 1649865600 - }, - { - "url": "thread-1323762-1-1.html", - "title": "Minecraft 基岩版 Beta & Preview 1.19.0.20 发布", - "category": "基岩版资讯", - "author": "ArmorRush", - "id": "normalthread_1323762", - "date": 1649260800 - }, - { - "url": "thread-1323662-1-1.html", - "title": "Minecraft Java版 22w14a 发布", - "category": "Java版资讯", - "author": "卡狗", - "id": "normalthread_1323662", - "date": 1649260800 - }, - { - "url": "thread-1321419-1-1.html", - "title": "[愚人节] Minecraft Java版 22w13oneBlockAtATime 发布", - "category": "Java版资讯", - "author": "希铁石z", - "id": "normalthread_1321419", - "date": 1648742400 - }, - { - "url": "thread-1320986-1-1.html", - "title": "Minecraft:近期没有为主机平台添加光线追踪的计划", - "category": "基岩块讯", - "author": "ArmorRush", - "id": "normalthread_1320986", - "date": 1648742400 - }, - { - "url": "thread-1320931-1-1.html", - "title": "Minecraft Java版 22w13a 发布", - "category": "Java版资讯", - "author": "卡狗", - "id": "normalthread_1320931", - "date": 1648742400 - } -] diff --git a/tests/platforms/static/mcbbsnews/mock/mcbbsnews_new_post_html.html b/tests/platforms/static/mcbbsnews/mock/mcbbsnews_new_post_html.html deleted file mode 100644 index ea4942d..0000000 --- a/tests/platforms/static/mcbbsnews/mock/mcbbsnews_new_post_html.html +++ /dev/null @@ -1,7429 +0,0 @@ -<!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 content="IE=edge" http-equiv="X-UA-Compatible" /> - <meta content="webkit" name="force-rendering" /> - <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> - <title> - Minecraft Java版 1.19-pre1 发布 - 幻翼块讯 - Minecraft(我的世界)中文论坛 - - </title> - <meta content="webkit" name="force-rendering" /> - <meta content="upgrade-insecure-requests" http-equiv="Content-Security-Policy" /> - <meta content="IE=edge" http-equiv="X-UA-Compatible" /> - <meta content="https://www.mcbbs.net/template/mcbbs/image/logo_sc.png" itemprop="image"> - <script> - var _hmt = _hmt || []; - - (function () { - - var hm = document.createElement("script"); - - hm.src = "https://hm.baidu.com/hm.js?affdf09dddabcdf2d681acefa474b973"; - - var s = document.getElementsByTagName("script")[0]; - - s.parentNode.insertBefore(hm, s); - - })(); - </script> - <style> - .fastlg { - - display: none; - - } - </style> - <link href="https://www.mcbbs.net/thread-1340927-1-1.html" rel="canonical" /> - <meta content="我的世界幻翼块讯,Minecraft(我的世界)中文论坛,我的世界安装,我的世界下载,我的世界,我的世界中文论坛" name="keywords"> - <meta - content="Minecraft Java版 1.19-pre1 发布 - [hr]NEWSMINECRAFT 1.19 PRE-RELEASE 1MINECRAFT 1.19-pre1A Minecraft Java Pre-ReleaseMinecraft Java版 预发布版Presenting the first pre-release of 1.19 ... " - name="description"> - <meta content="Discuz! X3.5" name="generator"> - <meta content="我的世界中文论坛" name="author" /> - <meta content="2001-2013 Comsenz Inc." name="copyright" /> - <meta content="True" name="MSSmartTagsPreventParsing" /> - <meta content="Yes" http-equiv="MSThemeCompatible" /> - <base href="https://www.mcbbs.net/" /> - <link href="manifest.json" rel="manifest" /> - <link href="data/cache/style_30_common.css?T77" rel="stylesheet" type="text/css" /> - <link href="data/cache/style_30_forum_viewthread.css?T77" rel="stylesheet" type="text/css" /> - <link href="./template/mcbbs/style/nether/style.css" id="css_extstyle" rel="stylesheet" type="text/css" /> - <script type="text/javascript"> - var STYLEID = '30', STATICURL = 'static/', IMGDIR = 'template/mcbbs/image', VERHASH = 'T77', charset = 'UTF-8', discuz_uid = '0', cookiepre = 'ZxYQ_8cea_', cookiedomain = '.mcbbs.net', cookiepath = '/', showusercard = '1', attackevasive = '0', disallowfloat = 'newthread|tradeorder|nav|usergroups', creditnotice = '1|人气|点,2|金粒|粒,3|金锭[已弃用]|块,4|宝石|颗,5|下界之星|枚,6|贡献|份,7|爱心|心,8|钻石|颗', defaultstyle = './template/mcbbs/style/nether', REPORTURL = 'aHR0cHM6Ly93d3cubWNiYnMubmV0L2ZvcnVtLnBocD9tb2Q9dmlld3RocmVhZCZ0aWQ9MTM0MDkyNw==', SITEURL = 'https://www.mcbbs.net/', JSPATH = 'data/cache/', CSSPATH = 'data/cache/style_', DYNAMICURL = ''; - </script> - <script src="data/cache/common.js?T77" type="text/javascript"> - </script> - <meta content="Minecraft(我的世界)中文论坛" name="application-name" /> - <meta content="Minecraft(我的世界)中文论坛" name="msapplication-tooltip" /> - <meta - content="name=首页;action-uri=https://www.mcbbs.net/portal.php;icon-uri=https://www.mcbbs.net/template/mcbbs/image/portal.ico" - name="msapplication-task" /> - <meta - content="name=论坛;action-uri=https://www.mcbbs.net/forum.php;icon-uri=https://www.mcbbs.net/template/mcbbs/image/bbs.ico" - name="msapplication-task" /> - <meta - content="name=小组;action-uri=https://www.mcbbs.net/group.php;icon-uri=https://www.mcbbs.net/template/mcbbs/image/group.ico" - name="msapplication-task" /> - <link href="https://www.mcbbs.net/archiver/" rel="archives" title="Minecraft(我的世界)中文论坛" /> - <script src="data/cache/forum.js?T77" type="text/javascript"> - </script> - <!--<link rel="stylesheet" href="template/mcbbs/common/xw.css"/>--> - <script src="template/mcbbs/common/jquery.min.js" type="text/javascript"> - </script> - <script type="text/javascript"> - var jq = jQuery.noConflict(); - </script> - </meta> - </meta> - </meta> - </meta> - </meta> -</head> - -<body class="pg_viewthread" id="nv_forum" onkeydown="if(event.keyCode==27) return false;"> - <div id="body_fixed_bg"> - </div> - <div id="append_parent"> - </div> - <div id="ajaxwaitid"> - </div> - <div class="cl" id="toptb"> - <div class="new_wp wp"> - <div class="z light"> - <a href="https://minecraft.net" target="_blank" title="我的世界(国际版)官方网站"> - 我的世界官网 - </a> - <a href="https://minecraft.fandom.com/zh/wiki/Minecraft_Wiki" target="_blank" - title="Minecraft Wiki,设立于Fandom"> - 中文百科 - </a> - <a href="forum-server-1.html" style="font-weight: bold;" target="_blank"> - Java版服务器列表 - </a> - <a href="forum-peserver-1.html" style="font-weight: bold;" target="_blank"> - 基岩版服务器列表 - </a> - </div> - <div class="y"> - <!--<div class="y_search"> - <form id="scbar_form" method="post" autocomplete="off" onsubmit="searchFocus($('scbar_txt'))" action="search.php?searchsubmit=yes" target="_blank"> - <input type="hidden" name="mod" id="scbar_mod" value="search" /> - <input type="hidden" name="formhash" value="c4628403" /> - <input type="hidden" name="srchtype" value="title" /> - <input type="hidden" name="srhfid" value="139" /> - <input type="hidden" name="srhlocality" value="forum::viewthread" /> - <!––> - <div class="y_search_btn"><button type="submit" name="searchsubmit" id="scbar_btn" sc="1" class="pn pnc" value="true"><strong class="xi2">搜索</strong></button></div> - <div class="y_search_inp"><input type="text" name="srchtxt" id="scbar_txt" value="" placeholder="请输入搜索内容" autocomplete="off" x-webkit-speech speech title=""/></div> - - - -</form> - </div>--> - <div class="cl y_search"> - <form action="search.php?searchsubmit=yes" autocomplete="off" id="scbar_form" method="post" - onsubmit="searchFocus($('scbar_txt'))" target="_blank"> - <input id="scbar_mod" name="mod" type="hidden" value="search" /> - <input name="formhash" type="hidden" value="c4628403" /> - <input name="srchtype" type="hidden" value="title" /> - <input name="srhfid" type="hidden" value="139" /> - <input name="srhlocality" type="hidden" value="forum::viewthread" /> - <table cellpadding="0" cellspacing="0"> - <tr> - <!--<td class="scbar_icon_td"></td>--> - <td class="y_search_btn"> - <button class="pn pnc" id="scbar_btn" name="searchsubmit" sc="1" type="submit" - value="true"> - <strong class="xi2"> - 搜索 - </strong> - </button> - </td> - <td class="y_search_inp"> - <input autocomplete="off" id="scbar_txt" name="srchtxt" speech="" type="text" - value="请输入搜索内容" x-webkit-speech="" /> - </td> - <td class="scbar_type_td"> - <a class="xg1" hidefocus="true" href="javascript:;" id="scbar_type" - onclick="showMenu(this.id)" style="height: 26px"> - 搜索 - </a> - </td> - <!-- <td class="scbar_hot_td"> -<div id="scbar_hot"> -<!––> -</div> -</td>--> - </tr> - </table> - </form> - </div> - <ul class="p_pop" id="scbar_type_menu" style="display: none;"> - <li> - <a fid="139" href="javascript:;" rel="curforum"> - 本版 - </a> - </li> - <li> - <a class="curtype" href="javascript:;" rel="forum"> - 帖子 - </a> - </li> - <li> - <a href="javascript:;" rel="user"> - 用户 - </a> - </li> - </ul> - <script type="text/javascript"> - initSearchmenu('scbar', ''); - </script> - <div class="user_menu"> - <!--<a id="switchblind" href="javascript:;" onclick="toggleBlind(this)" title="开启辅助访问" class="switchblind">开启辅助访问</a>--> - </div> - <!-- -<div id="user_login_menu" style="display: none"> -<script src="data/cache/logging.js?T77" type="text/javascript"></script> -<form method="post" autocomplete="off" id="lsform" action="member.php?mod=logging&action=login&loginsubmit=yes&infloat=yes&lssubmit=yes" onsubmit="return lsSubmit();"> -<ul class="user_info_menu_info"> -<li><label for="ls_username">!account!</label><input type="text" name="username" id="ls_username" class="px vm xg1" value="用户名/Email" onfocus="if(this.value == '用户名/Email'){this.value = '';this.className = 'px vm';}" onblur="if(this.value == ''){this.value = '用户名/Email';this.className = 'px vm xg1';}" tabindex="901" /></li> -<li><label for="ls_password">!password!</label><input type="password" name="password" id="ls_password" class="px vm" autocomplete="off" tabindex="902" /></li> -<li><label for="ls_cookietime"><input type="checkbox" name="cookietime" id="ls_cookietime" class="pc" value="2592000" tabindex="903" />自动登录</label></li> -<li><button type="submit" tabindex="914" style="width:220px;height:45px;cursor:pointer;border:0;background:url('template/mcbbs/image/dl.png') 0 0 no-repeat;display: inherit;"></button></li> -</ul> -</form> -</div> ---> - <div class="avt y light" id="user_login" onmouseover="showMenu({'ctrlid':this.id})"> - <a href="member.php?mod=register"> - 注册 - </a> - <a href="member.php?mod=logging&action=login"> - 登录 - </a> - <div class="avt y hd_t_a" style="z-index:0"> - <a href="member.php?mod=logging&action=login"> - <img src="template/mcbbs/image/special_photo_bg.png" /> - </a> - </div> - </div> - </div> - </div> - </div> - <div id="user_info_menu" style="display: none"> - <ul class="user_info_menu_info"> - <li> - <p class="username"> - </p> - </li> - <li> - <a class="rank" href="home.php?mod=spacecp&ac=usergroup&gid=7"> - 游客 - </a> - </li> - <li> - <a href="home.php?mod=spacecp&ac=usergroup&gid=7" id="rank" target="_blank"> - </a> - </li> - <li> - <span class="autowidth pbg2"> - <span class="pbr2" style="width:%;"> - </span> - </span> - </li> - <li> - <a class="extcredits" href="home.php?mod=spacecp&ac=credit" title="金粒"> - <em class="gold_nugget"> - </em> - </a> - <a class="extcredits" href="home.php?mod=spacecp&ac=credit" title="绿宝石"> - <em class="emerald"> - </em> - </a> - </li> - </ul> - <ul class="user_info_menu_btn"> - <li> - <a href="home.php?mod=spacecp" target="_blank"> - 账号设置 - </a> - </li> - <li> - <a href="forum.php?mod=guide&view=my" target="_blank"> - 我的帖子 - </a> - </li> - <li> - <a href="home.php?mod=space&do=favorite&view=me" target="_blank"> - 我的收藏 - </a> - </li> - <li> - <a href="member.php?mod=logging&action=logout&formhash=c4628403" onclick="showDialog('你确定要退出登录吗?', 'confirm', '退出登录', function(){ -top.window.location.href = 'member.php?mod=logging&action=logout&formhash=c4628403'; -}, 1, null, '', '', '', '', 0);return false;"> - 退出登录 - </a> - </li> - </ul> - </div> - <!--消息通知--> - <div class="p_pop blk" id="qmenu_menu" style="display: none;"> - <div class="ptm pbw hm"> - 请 - <a class="xi2" href="javascript:;" onclick="lsSubmit()"> - <strong> - 登录 - </strong> - </a> - 后使用快捷导航没有帐号? - <a class="xi2 xw1" href="member.php?mod=register"> - 注册(register) - </a> - </div> - <div class="btda" id="fjump_menu"> - </div> - </div> - <!--整个主体div--> - <div class="mc_map_wp"> - <!--头部公用 用户状态信息--> - <div class="new_wp" style="padding: 28px 0 26px 0;"> - <div class="hdc cl"> - <h2 style="padding:0;float: left;"> - <a href="portal.php" title="Minecraft(我的世界)中文论坛"> - <img alt="Minecraft(我的世界)中文论坛" border="0" src="template/mcbbs/image/logo_sc.png" /> - </a> - </h2> - <script src="data/cache/logging.js?T77" type="text/javascript"> - </script> - <form - action="member.php?mod=logging&action=login&loginsubmit=yes&infloat=yes&lssubmit=yes" - autocomplete="off" id="lsform" method="post" onsubmit="return lsSubmit();"> - <div class="fastlg cl"> - <span id="return_ls" style="display:none"> - </span> - <div class="y pns"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td> - <label for="ls_username"> - 帐号 - </label> - </td> - <td> - <input class="px vm xg1" id="ls_username" name="username" - onblur="if(this.value == ''){this.value = '用户名/Email';this.className = 'px vm xg1';}" - onfocus="if(this.value == '用户名/Email'){this.value = '';this.className = 'px vm';}" - tabindex="901" type="text" value="用户名/Email" /> - </td> - <td class="fastlg_l"> - <label for="ls_cookietime"> - <input class="pc" id="ls_cookietime" name="cookietime" tabindex="903" - type="checkbox" value="2592000" /> - 自动登录 - </label> - </td> - <td> - <a href="member.php?mod=logging&action=login&viewlostpw=1"> - 找回密码 - </a> - </td> - </tr> - <tr> - <td> - <label for="ls_password"> - 密码 - </label> - </td> - <td> - <input autocomplete="off" class="px vm" id="ls_password" name="password" - tabindex="902" type="password" /> - </td> - <td class="fastlg_l"> - <button class="pn vm" style="width: 75px;" tabindex="904" type="submit"> - <em> - 登录 - </em> - </button> - </td> - <td> - <a class="xi2 xw1" href="member.php?mod=register"> - 注册(register) - </a> - </td> - </tr> - </table> - <input name="quickforward" type="hidden" value="yes" /> - <input name="handlekey" type="hidden" value="ls" /> - </div> - <div class="fastlg_fm y" style="padding-right: 5px; border-right: none;"> - <p> - <a href="https://www.mcbbs.net/bilibili_connect.php?mod=auth&op=login"> - <img alt="!header_login!" class="vm" src="template/mcbbs/image/bili_login.gif" /> - </a> - </p> - <p class="hm xg1" style="padding-top: 2px; color: white !important;"> - 只需一步,立刻登录 - </p> - </div> - <script src="source/plugin/geetest3/js/gt3-init.js" type="text/javascript"> - </script> - <script src="source/plugin/geetest3/js/gt.js" type="text/javascript"> - </script> - <script type="text/javascript"> - var lsform = document.getElementById('lsform'); - var o = document.createElement("button"); - o.id = "header-loggin-btn"; - o.setAttribute('type', 'submit'); - o.value = ""; - o.style.display = "none"; - lsform.appendChild(o); - </script> - <script type="text/javascript"> - var handler = function (captchaObj) { - window.__gtcaptch__ = captchaObj; - }; - var xmlHttp; - function createxmlHttpRequest() { - if (window.ActiveXObject) { - xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); - } else if (window.XMLHttpRequest) { - xmlHttp = new XMLHttpRequest(); - } - } - createxmlHttpRequest(); - xmlHttp.open("GET", "./plugin.php?id=geetest3&model=start&t=" + (new Date()).getTime()); - xmlHttp.send(null); - xmlHttp.onreadystatechange = function (result) { - if ((xmlHttp.readyState == 4) && (xmlHttp.status == 200)) { - var obj = JSON.parse(xmlHttp.responseText); - initGeetest({ - gt: obj.gt, - challenge: obj.challenge, - offline: !obj.success, - timeout: '5000', - product: "bind", // 产品形式,包括:float,popup - width: "300px" - }, handler); - } - } - </script> - </div> - </form> - <div class="y" id="T3OUUC"> - <script> - (function (i) { var l = "2.73"; if (i.support == undefined) { i.support = { opacity: !(i.browser.msie) } } function a(q) { if (i.fn.cycle.debug) { f(q) } } function f() { if (window.console && window.console.log) { window.console.log("[cycle] " + Array.prototype.join.call(arguments, " ")) } } i.fn.cycle = function (r, q) { var s = { s: this.selector, c: this.context }; if (this.length === 0 && r != "stop") { if (!i.isReady && s.s) { f("DOM not ready, queuing slideshow"); i(function () { i(s.s, s.c).cycle(r, q) }); return this } f("terminating; zero elements found by selector" + (i.isReady ? "" : " (DOM not ready)")); return this } return this.each(function () { var w = m(this, r, q); if (w === false) { return } if (this.cycleTimeout) { clearTimeout(this.cycleTimeout) } this.cycleTimeout = this.cyclePause = 0; var x = i(this); var y = w.slideExpr ? i(w.slideExpr, this) : x.children(); var u = y.get(); if (u.length < 2) { f("terminating; too few slides: " + u.length); return } var t = k(x, y, u, w, s); if (t === false) { return } var v = t.continuous ? 10 : h(t.currSlide, t.nextSlide, t, !t.rev); if (v) { v += (t.delay || 0); if (v < 10) { v = 10 } a("first timeout: " + v); this.cycleTimeout = setTimeout(function () { e(u, t, 0, !t.rev) }, v) } }) }; function m(q, t, r) { if (q.cycleStop == undefined) { q.cycleStop = 0 } if (t === undefined || t === null) { t = {} } if (t.constructor == String) { switch (t) { case "stop": q.cycleStop++; if (q.cycleTimeout) { clearTimeout(q.cycleTimeout) } q.cycleTimeout = 0; i(q).removeData("cycle.opts"); return false; case "pause": q.cyclePause = 1; return false; case "resume": q.cyclePause = 0; if (r === true) { t = i(q).data("cycle.opts"); if (!t) { f("options not found, can not resume"); return false } if (q.cycleTimeout) { clearTimeout(q.cycleTimeout); q.cycleTimeout = 0 } e(t.elements, t, 1, 1) } return false; case "prev": case "next": var u = i(q).data("cycle.opts"); if (!u) { f('options not found, "prev/next" ignored'); return false } i.fn.cycle[t](u); return false; default: t = { fx: t } }return t } else { if (t.constructor == Number) { var s = t; t = i(q).data("cycle.opts"); if (!t) { f("options not found, can not advance slide"); return false } if (s < 0 || s >= t.elements.length) { f("invalid slide index: " + s); return false } t.nextSlide = s; if (q.cycleTimeout) { clearTimeout(q.cycleTimeout); q.cycleTimeout = 0 } if (typeof r == "string") { t.oneTimeFx = r } e(t.elements, t, 1, s >= t.currSlide); return false } } return t } function b(q, r) { if (!i.support.opacity && r.cleartype && q.style.filter) { try { q.style.removeAttribute("filter") } catch (s) { } } } function k(y, J, u, t, E) { var C = i.extend({}, i.fn.cycle.defaults, t || {}, i.metadata ? y.metadata() : i.meta ? y.data() : {}); if (C.autostop) { C.countdown = C.autostopCount || u.length } var r = y[0]; y.data("cycle.opts", C); C.$cont = y; C.stopCount = r.cycleStop; C.elements = u; C.before = C.before ? [C.before] : []; C.after = C.after ? [C.after] : []; C.after.unshift(function () { C.busy = 0 }); if (!i.support.opacity && C.cleartype) { C.after.push(function () { b(this, C) }) } if (C.continuous) { C.after.push(function () { e(u, C, 0, !C.rev) }) } n(C); if (!i.support.opacity && C.cleartype && !C.cleartypeNoBg) { g(J) } if (y.css("position") == "static") { y.css("position", "relative") } if (C.width) { y.width(C.width) } if (C.height && C.height != "auto") { y.height(C.height) } if (C.startingSlide) { C.startingSlide = parseInt(C.startingSlide) } if (C.random) { C.randomMap = []; for (var H = 0; H < u.length; H++) { C.randomMap.push(H) } C.randomMap.sort(function (L, w) { return Math.random() - 0.5 }); C.randomIndex = 0; C.startingSlide = C.randomMap[0] } else { if (C.startingSlide >= u.length) { C.startingSlide = 0 } } C.currSlide = C.startingSlide = C.startingSlide || 0; var x = C.startingSlide; J.css({ position: "absolute", top: 0, left: 0 }).hide().each(function (w) { var L = x ? w >= x ? u.length - (w - x) : x - w : u.length - w; i(this).css("z-index", L) }); i(u[x]).css("opacity", 1).show(); b(u[x], C); if (C.fit && C.width) { J.width(C.width) } if (C.fit && C.height && C.height != "auto") { J.height(C.height) } var D = C.containerResize && !y.innerHeight(); if (D) { var v = 0, B = 0; for (var F = 0; F < u.length; F++) { var q = i(u[F]), K = q[0], A = q.outerWidth(), I = q.outerHeight(); if (!A) { A = K.offsetWidth } if (!I) { I = K.offsetHeight } v = A > v ? A : v; B = I > B ? I : B } if (v > 0 && B > 0) { y.css({ width: v + "px", height: B + "px" }) } } if (C.pause) { y.hover(function () { this.cyclePause++ }, function () { this.cyclePause-- }) } if (c(C) === false) { return false } var s = false; t.requeueAttempts = t.requeueAttempts || 0; J.each(function () { var N = i(this); this.cycleH = (C.fit && C.height) ? C.height : N.height(); this.cycleW = (C.fit && C.width) ? C.width : N.width(); if (N.is("img")) { var L = (i.browser.msie && this.cycleW == 28 && this.cycleH == 30 && !this.complete); var O = (i.browser.mozilla && this.cycleW == 34 && this.cycleH == 19 && !this.complete); var M = (i.browser.opera && ((this.cycleW == 42 && this.cycleH == 19) || (this.cycleW == 37 && this.cycleH == 17)) && !this.complete); var w = (this.cycleH == 0 && this.cycleW == 0 && !this.complete); if (L || O || M || w) { if (E.s && C.requeueOnImageNotLoaded && ++t.requeueAttempts < 100) { f(t.requeueAttempts, " - img slide not loaded, requeuing slideshow: ", this.src, this.cycleW, this.cycleH); setTimeout(function () { i(E.s, E.c).cycle(t) }, C.requeueTimeout); s = true; return false } else { f("could not determine size of image: " + this.src, this.cycleW, this.cycleH) } } } return true }); if (s) { return false } C.cssBefore = C.cssBefore || {}; C.animIn = C.animIn || {}; C.animOut = C.animOut || {}; J.not(":eq(" + x + ")").css(C.cssBefore); if (C.cssFirst) { i(J[x]).css(C.cssFirst) } if (C.timeout) { C.timeout = parseInt(C.timeout); if (C.speed.constructor == String) { C.speed = i.fx.speeds[C.speed] || parseInt(C.speed) } if (!C.sync) { C.speed = C.speed / 2 } while ((C.timeout - C.speed) < 250) { C.timeout += C.speed } } if (C.easing) { C.easeIn = C.easeOut = C.easing } if (!C.speedIn) { C.speedIn = C.speed } if (!C.speedOut) { C.speedOut = C.speed } C.slideCount = u.length; C.currSlide = C.lastSlide = x; if (C.random) { C.nextSlide = C.currSlide; if (++C.randomIndex == u.length) { C.randomIndex = 0 } C.nextSlide = C.randomMap[C.randomIndex] } else { C.nextSlide = C.startingSlide >= (u.length - 1) ? 0 : C.startingSlide + 1 } if (!C.multiFx) { var G = i.fn.cycle.transitions[C.fx]; if (i.isFunction(G)) { G(y, J, C) } else { if (C.fx != "custom" && !C.multiFx) { f("unknown transition: " + C.fx, "; slideshow terminating"); return false } } } var z = J[x]; if (C.before.length) { C.before[0].apply(z, [z, z, C, true]) } if (C.after.length > 1) { C.after[1].apply(z, [z, z, C, true]) } if (C.next) { i(C.next).bind(C.prevNextEvent, function () { return o(C, C.rev ? -1 : 1) }) } if (C.prev) { i(C.prev).bind(C.prevNextEvent, function () { return o(C, C.rev ? 1 : -1) }) } if (C.pager) { d(u, C) } j(C, u); return C } function n(q) { q.original = { before: [], after: [] }; q.original.cssBefore = i.extend({}, q.cssBefore); q.original.cssAfter = i.extend({}, q.cssAfter); q.original.animIn = i.extend({}, q.animIn); q.original.animOut = i.extend({}, q.animOut); i.each(q.before, function () { q.original.before.push(this) }); i.each(q.after, function () { q.original.after.push(this) }) } function c(w) { var u, s, r = i.fn.cycle.transitions; if (w.fx.indexOf(",") > 0) { w.multiFx = true; w.fxs = w.fx.replace(/\s*/g, "").split(","); for (u = 0; u < w.fxs.length; u++) { var v = w.fxs[u]; s = r[v]; if (!s || !r.hasOwnProperty(v) || !i.isFunction(s)) { f("discarding unknown transition: ", v); w.fxs.splice(u, 1); u-- } } if (!w.fxs.length) { f("No valid transitions named; slideshow terminating."); return false } } else { if (w.fx == "all") { w.multiFx = true; w.fxs = []; for (p in r) { s = r[p]; if (r.hasOwnProperty(p) && i.isFunction(s)) { w.fxs.push(p) } } } } if (w.multiFx && w.randomizeEffects) { var t = Math.floor(Math.random() * 20) + 30; for (u = 0; u < t; u++) { var q = Math.floor(Math.random() * w.fxs.length); w.fxs.push(w.fxs.splice(q, 1)[0]) } a("randomized fx sequence: ", w.fxs) } return true } function j(r, q) { r.addSlide = function (u, v) { var t = i(u), w = t[0]; if (!r.autostopCount) { r.countdown++ } q[v ? "unshift" : "push"](w); if (r.els) { r.els[v ? "unshift" : "push"](w) } r.slideCount = q.length; t.css("position", "absolute"); t[v ? "prependTo" : "appendTo"](r.$cont); if (v) { r.currSlide++; r.nextSlide++ } if (!i.support.opacity && r.cleartype && !r.cleartypeNoBg) { g(t) } if (r.fit && r.width) { t.width(r.width) } if (r.fit && r.height && r.height != "auto") { $slides.height(r.height) } w.cycleH = (r.fit && r.height) ? r.height : t.height(); w.cycleW = (r.fit && r.width) ? r.width : t.width(); t.css(r.cssBefore); if (r.pager) { i.fn.cycle.createPagerAnchor(q.length - 1, w, i(r.pager), q, r) } if (i.isFunction(r.onAddSlide)) { r.onAddSlide(t) } else { t.hide() } } } i.fn.cycle.resetState = function (r, q) { q = q || r.fx; r.before = []; r.after = []; r.cssBefore = i.extend({}, r.original.cssBefore); r.cssAfter = i.extend({}, r.original.cssAfter); r.animIn = i.extend({}, r.original.animIn); r.animOut = i.extend({}, r.original.animOut); r.fxFn = null; i.each(r.original.before, function () { r.before.push(this) }); i.each(r.original.after, function () { r.after.push(this) }); var s = i.fn.cycle.transitions[q]; if (i.isFunction(s)) { s(r.$cont, i(r.elements), r) } }; function e(x, q, w, y) { if (w && q.busy && q.manualTrump) { i(x).stop(true, true); q.busy = false } if (q.busy) { return } var u = q.$cont[0], A = x[q.currSlide], z = x[q.nextSlide]; if (u.cycleStop != q.stopCount || u.cycleTimeout === 0 && !w) { return } if (!w && !u.cyclePause && ((q.autostop && (--q.countdown <= 0)) || (q.nowrap && !q.random && q.nextSlide < q.currSlide))) { if (q.end) { q.end(q) } return } if (w || !u.cyclePause) { var v = q.fx; A.cycleH = A.cycleH || i(A).height(); A.cycleW = A.cycleW || i(A).width(); z.cycleH = z.cycleH || i(z).height(); z.cycleW = z.cycleW || i(z).width(); if (q.multiFx) { if (q.lastFx == undefined || ++q.lastFx >= q.fxs.length) { q.lastFx = 0 } v = q.fxs[q.lastFx]; q.currFx = v } if (q.oneTimeFx) { v = q.oneTimeFx; q.oneTimeFx = null } i.fn.cycle.resetState(q, v); if (q.before.length) { i.each(q.before, function (B, C) { if (u.cycleStop != q.stopCount) { return } C.apply(z, [A, z, q, y]) }) } var s = function () { i.each(q.after, function (B, C) { if (u.cycleStop != q.stopCount) { return } C.apply(z, [A, z, q, y]) }) }; if (q.nextSlide != q.currSlide) { q.busy = 1; if (q.fxFn) { q.fxFn(A, z, q, s, y) } else { if (i.isFunction(i.fn.cycle[q.fx])) { i.fn.cycle[q.fx](A, z, q, s) } else { i.fn.cycle.custom(A, z, q, s, w && q.fastOnEvent) } } } q.lastSlide = q.currSlide; if (q.random) { q.currSlide = q.nextSlide; if (++q.randomIndex == x.length) { q.randomIndex = 0 } q.nextSlide = q.randomMap[q.randomIndex] } else { var t = (q.nextSlide + 1) == x.length; q.nextSlide = t ? 0 : q.nextSlide + 1; q.currSlide = t ? x.length - 1 : q.nextSlide - 1 } if (q.pager) { i.fn.cycle.updateActivePagerLink(q.pager, q.currSlide) } } var r = 0; if (q.timeout && !q.continuous) { r = h(A, z, q, y) } else { if (q.continuous && u.cyclePause) { r = 10 } } if (r > 0) { u.cycleTimeout = setTimeout(function () { e(x, q, 0, !q.rev) }, r) } } i.fn.cycle.updateActivePagerLink = function (q, r) { i(q).each(function () { i(this).find("a").removeClass("activeSlide").filter("a:eq(" + r + ")").addClass("activeSlide") }) }; function h(v, s, u, r) { if (u.timeoutFn) { var q = u.timeoutFn(v, s, u, r); while ((q - u.speed) < 250) { q += u.speed } a("calculated timeout: " + q + "; speed: " + u.speed); if (q !== false) { return q } } return u.timeout } i.fn.cycle.next = function (q) { o(q, q.rev ? -1 : 1) }; i.fn.cycle.prev = function (q) { o(q, q.rev ? 1 : -1) }; function o(r, u) { var q = r.elements; var t = r.$cont[0], s = t.cycleTimeout; if (s) { clearTimeout(s); t.cycleTimeout = 0 } if (r.random && u < 0) { r.randomIndex--; if (--r.randomIndex == -2) { r.randomIndex = q.length - 2 } else { if (r.randomIndex == -1) { r.randomIndex = q.length - 1 } } r.nextSlide = r.randomMap[r.randomIndex] } else { if (r.random) { if (++r.randomIndex == q.length) { r.randomIndex = 0 } r.nextSlide = r.randomMap[r.randomIndex] } else { r.nextSlide = r.currSlide + u; if (r.nextSlide < 0) { if (r.nowrap) { return false } r.nextSlide = q.length - 1 } else { if (r.nextSlide >= q.length) { if (r.nowrap) { return false } r.nextSlide = 0 } } } } if (i.isFunction(r.prevNextClick)) { r.prevNextClick(u > 0, r.nextSlide, q[r.nextSlide]) } e(q, r, 1, u >= 0); return false } function d(r, s) { var q = i(s.pager); i.each(r, function (t, u) { i.fn.cycle.createPagerAnchor(t, u, q, r, s) }); i.fn.cycle.updateActivePagerLink(s.pager, s.startingSlide) } i.fn.cycle.createPagerAnchor = function (u, v, s, t, w) { var r; if (i.isFunction(w.pagerAnchorBuilder)) { r = w.pagerAnchorBuilder(u, v) } else { r = '<a href="#">' + (u + 1) + "</a>" } if (!r) { return } var x = i(r); if (x.parents("body").length === 0) { var q = []; if (s.length > 1) { s.each(function () { var y = x.clone(true); i(this).append(y); q.push(y[0]) }); x = i(q) } else { x.appendTo(s) } } x.bind(w.pagerEvent, function (A) { A.preventDefault(); w.nextSlide = u; var z = w.$cont[0], y = z.cycleTimeout; if (y) { clearTimeout(y); z.cycleTimeout = 0 } if (i.isFunction(w.pagerClick)) { w.pagerClick(w.nextSlide, t[w.nextSlide]) } e(t, w, 1, w.currSlide < u); return false }); if (w.pagerEvent != "click") { x.click(function () { return false }) } if (w.pauseOnPagerHover) { x.hover(function () { w.$cont[0].cyclePause++ }, function () { w.$cont[0].cyclePause-- }) } }; i.fn.cycle.hopsFromLast = function (t, s) { var r, q = t.lastSlide, u = t.currSlide; if (s) { r = u > q ? u - q : t.slideCount - q } else { r = u < q ? q - u : q + t.slideCount - u } return r }; function g(s) { function r(t) { t = parseInt(t).toString(16); return t.length < 2 ? "0" + t : t } function q(w) { for (; w && w.nodeName.toLowerCase() != "html"; w = w.parentNode) { var t = i.css(w, "background-color"); if (t.indexOf("rgb") >= 0) { var u = t.match(/\d+/g); return "#" + r(u[0]) + r(u[1]) + r(u[2]) } if (t && t != "transparent") { return t } } return "#ffffff" } s.each(function () { i(this).css("background-color", q(this)) }) } i.fn.cycle.commonReset = function (v, t, u, r, s, q) { i(u.elements).not(v).hide(); u.cssBefore.opacity = 1; u.cssBefore.display = "block"; if (r !== false && t.cycleW > 0) { u.cssBefore.width = t.cycleW } if (s !== false && t.cycleH > 0) { u.cssBefore.height = t.cycleH } u.cssAfter = u.cssAfter || {}; u.cssAfter.display = "none"; i(v).css("zIndex", u.slideCount + (q === true ? 1 : 0)); i(t).css("zIndex", u.slideCount + (q === true ? 0 : 1)) }; i.fn.cycle.custom = function (B, v, q, s, r) { var A = i(B), w = i(v); var t = q.speedIn, z = q.speedOut, u = q.easeIn, y = q.easeOut; w.css(q.cssBefore); if (r) { if (typeof r == "number") { t = z = r } else { t = z = 1 } u = y = null } var x = function () { w.animate(q.animIn, t, u, s) }; A.animate(q.animOut, z, y, function () { if (q.cssAfter) { A.css(q.cssAfter) } if (!q.sync) { x() } }); if (q.sync) { x() } }; i.fn.cycle.transitions = { fade: function (r, s, q) { s.not(":eq(" + q.currSlide + ")").css("opacity", 0); q.before.push(function (v, t, u) { i.fn.cycle.commonReset(v, t, u); u.cssBefore.opacity = 0 }); q.animIn = { opacity: 1 }; q.animOut = { opacity: 0 }; q.cssBefore = { top: 0, left: 0 } } }; i.fn.cycle.ver = function () { return l }; i.fn.cycle.defaults = { fx: "fade", timeout: 4000, timeoutFn: null, continuous: 0, speed: 1000, speedIn: null, speedOut: null, next: null, prev: null, prevNextClick: null, prevNextEvent: "click", pager: null, pagerClick: null, pagerEvent: "click", pagerAnchorBuilder: null, before: null, after: null, end: null, easing: null, easeIn: null, easeOut: null, shuffle: null, animIn: null, animOut: null, cssBefore: null, cssAfter: null, fxFn: null, height: "auto", startingSlide: 0, sync: 1, random: 0, fit: 0, containerResize: 1, pause: 0, pauseOnPagerHover: 0, autostop: 0, autostopCount: 0, delay: 0, slideExpr: null, cleartype: !i.support.opacity, cleartypeNoBg: false, nowrap: 0, fastOnEvent: 0, randomizeEffects: 1, rev: 0, manualTrump: true, requeueOnImageNotLoaded: true, requeueTimeout: 250 } })(jQuery); - /* - * jQuery Cycle Plugin Transition Definitions - * This script is a plugin for the jQuery Cycle Plugin - * Examples and documentation at: http://malsup.com/jquery/cycle/ - * Copyright (c) 2007-2008 M. Alsup - * Version: 2.72 - * Dual licensed under the MIT and GPL licenses: - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - */ - (function (a) { a.fn.cycle.transitions.none = function (c, d, b) { b.fxFn = function (g, e, f, h) { a(e).show(); a(g).hide(); h() } }; a.fn.cycle.transitions.scrollUp = function (d, e, c) { d.css("overflow", "hidden"); c.before.push(a.fn.cycle.commonReset); var b = d.height(); c.cssBefore = { top: b, left: 0 }; c.cssFirst = { top: 0 }; c.animIn = { top: 0 }; c.animOut = { top: -b } }; a.fn.cycle.transitions.scrollDown = function (d, e, c) { d.css("overflow", "hidden"); c.before.push(a.fn.cycle.commonReset); var b = d.height(); c.cssFirst = { top: 0 }; c.cssBefore = { top: -b, left: 0 }; c.animIn = { top: 0 }; c.animOut = { top: b } }; a.fn.cycle.transitions.scrollLeft = function (d, e, c) { d.css("overflow", "hidden"); c.before.push(a.fn.cycle.commonReset); var b = d.width(); c.cssFirst = { left: 0 }; c.cssBefore = { left: b, top: 0 }; c.animIn = { left: 0 }; c.animOut = { left: 0 - b } }; a.fn.cycle.transitions.scrollRight = function (d, e, c) { d.css("overflow", "hidden"); c.before.push(a.fn.cycle.commonReset); var b = d.width(); c.cssFirst = { left: 0 }; c.cssBefore = { left: -b, top: 0 }; c.animIn = { left: 0 }; c.animOut = { left: b } }; a.fn.cycle.transitions.scrollHorz = function (c, d, b) { c.css("overflow", "hidden").width(); b.before.push(function (h, f, g, e) { a.fn.cycle.commonReset(h, f, g); g.cssBefore.left = e ? (f.cycleW - 1) : (1 - f.cycleW); g.animOut.left = e ? -h.cycleW : h.cycleW }); b.cssFirst = { left: 0 }; b.cssBefore = { top: 0 }; b.animIn = { left: 0 }; b.animOut = { top: 0 } }; a.fn.cycle.transitions.scrollVert = function (c, d, b) { c.css("overflow", "hidden"); b.before.push(function (h, f, g, e) { a.fn.cycle.commonReset(h, f, g); g.cssBefore.top = e ? (1 - f.cycleH) : (f.cycleH - 1); g.animOut.top = e ? h.cycleH : -h.cycleH }); b.cssFirst = { top: 0 }; b.cssBefore = { left: 0 }; b.animIn = { top: 0 }; b.animOut = { left: 0 } }; a.fn.cycle.transitions.slideX = function (c, d, b) { b.before.push(function (g, e, f) { a(f.elements).not(g).hide(); a.fn.cycle.commonReset(g, e, f, false, true); f.animIn.width = e.cycleW }); b.cssBefore = { left: 0, top: 0, width: 0 }; b.animIn = { width: "show" }; b.animOut = { width: 0 } }; a.fn.cycle.transitions.slideY = function (c, d, b) { b.before.push(function (g, e, f) { a(f.elements).not(g).hide(); a.fn.cycle.commonReset(g, e, f, true, false); f.animIn.height = e.cycleH }); b.cssBefore = { left: 0, top: 0, height: 0 }; b.animIn = { height: "show" }; b.animOut = { height: 0 } }; a.fn.cycle.transitions.shuffle = function (e, f, d) { var c, b = e.css("overflow", "visible").width(); f.css({ left: 0, top: 0 }); d.before.push(function (i, g, h) { a.fn.cycle.commonReset(i, g, h, true, true, true) }); if (!d.speedAdjusted) { d.speed = d.speed / 2; d.speedAdjusted = true } d.random = 0; d.shuffle = d.shuffle || { left: -b, top: 15 }; d.els = []; for (c = 0; c < f.length; c++) { d.els.push(f[c]) } for (c = 0; c < d.currSlide; c++) { d.els.push(d.els.shift()) } d.fxFn = function (m, j, l, g, i) { var h = i ? a(m) : a(j); a(j).css(l.cssBefore); var k = l.slideCount; h.animate(l.shuffle, l.speedIn, l.easeIn, function () { var o = a.fn.cycle.hopsFromLast(l, i); for (var q = 0; q < o; q++) { i ? l.els.push(l.els.shift()) : l.els.unshift(l.els.pop()) } if (i) { for (var r = 0, n = l.els.length; r < n; r++) { a(l.els[r]).css("z-index", n - r + k) } } else { var s = a(m).css("z-index"); h.css("z-index", parseInt(s) + 1 + k) } h.animate({ left: 0, top: 0 }, l.speedOut, l.easeOut, function () { a(i ? this : m).hide(); if (g) { g() } }) }) }; d.cssBefore = { display: "block", opacity: 1, top: 0, left: 0 } }; a.fn.cycle.transitions.turnUp = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, true, false); f.cssBefore.top = e.cycleH; f.animIn.height = e.cycleH }); b.cssFirst = { top: 0 }; b.cssBefore = { left: 0, height: 0 }; b.animIn = { top: 0 }; b.animOut = { height: 0 } }; a.fn.cycle.transitions.turnDown = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, true, false); f.animIn.height = e.cycleH; f.animOut.top = g.cycleH }); b.cssFirst = { top: 0 }; b.cssBefore = { left: 0, top: 0, height: 0 }; b.animOut = { height: 0 } }; a.fn.cycle.transitions.turnLeft = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, true); f.cssBefore.left = e.cycleW; f.animIn.width = e.cycleW }); b.cssBefore = { top: 0, width: 0 }; b.animIn = { left: 0 }; b.animOut = { width: 0 } }; a.fn.cycle.transitions.turnRight = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, true); f.animIn.width = e.cycleW; f.animOut.left = g.cycleW }); b.cssBefore = { top: 0, left: 0, width: 0 }; b.animIn = { left: 0 }; b.animOut = { width: 0 } }; a.fn.cycle.transitions.zoom = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, false, true); f.cssBefore.top = e.cycleH / 2; f.cssBefore.left = e.cycleW / 2; f.animIn = { top: 0, left: 0, width: e.cycleW, height: e.cycleH }; f.animOut = { width: 0, height: 0, top: g.cycleH / 2, left: g.cycleW / 2 } }); b.cssFirst = { top: 0, left: 0 }; b.cssBefore = { width: 0, height: 0 } }; a.fn.cycle.transitions.fadeZoom = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, false); f.cssBefore.left = e.cycleW / 2; f.cssBefore.top = e.cycleH / 2; f.animIn = { top: 0, left: 0, width: e.cycleW, height: e.cycleH } }); b.cssBefore = { width: 0, height: 0 }; b.animOut = { opacity: 0 } }; a.fn.cycle.transitions.blindX = function (d, e, c) { var b = d.css("overflow", "hidden").width(); c.before.push(function (h, f, g) { a.fn.cycle.commonReset(h, f, g); g.animIn.width = f.cycleW; g.animOut.left = h.cycleW }); c.cssBefore = { left: b, top: 0 }; c.animIn = { left: 0 }; c.animOut = { left: b } }; a.fn.cycle.transitions.blindY = function (d, e, c) { var b = d.css("overflow", "hidden").height(); c.before.push(function (h, f, g) { a.fn.cycle.commonReset(h, f, g); g.animIn.height = f.cycleH; g.animOut.top = h.cycleH }); c.cssBefore = { top: b, left: 0 }; c.animIn = { top: 0 }; c.animOut = { top: b } }; a.fn.cycle.transitions.blindZ = function (e, f, d) { var c = e.css("overflow", "hidden").height(); var b = e.width(); d.before.push(function (i, g, h) { a.fn.cycle.commonReset(i, g, h); h.animIn.height = g.cycleH; h.animOut.top = i.cycleH }); d.cssBefore = { top: c, left: b }; d.animIn = { top: 0, left: 0 }; d.animOut = { top: c, left: b } }; a.fn.cycle.transitions.growX = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, true); f.cssBefore.left = this.cycleW / 2; f.animIn = { left: 0, width: this.cycleW }; f.animOut = { left: 0 } }); b.cssBefore = { width: 0, top: 0 } }; a.fn.cycle.transitions.growY = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, true, false); f.cssBefore.top = this.cycleH / 2; f.animIn = { top: 0, height: this.cycleH }; f.animOut = { top: 0 } }); b.cssBefore = { height: 0, left: 0 } }; a.fn.cycle.transitions.curtainX = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, true, true); f.cssBefore.left = e.cycleW / 2; f.animIn = { left: 0, width: this.cycleW }; f.animOut = { left: g.cycleW / 2, width: 0 } }); b.cssBefore = { top: 0, width: 0 } }; a.fn.cycle.transitions.curtainY = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, true, false, true); f.cssBefore.top = e.cycleH / 2; f.animIn = { top: 0, height: e.cycleH }; f.animOut = { top: g.cycleH / 2, height: 0 } }); b.cssBefore = { left: 0, height: 0 } }; a.fn.cycle.transitions.cover = function (f, g, e) { var i = e.direction || "left"; var b = f.css("overflow", "hidden").width(); var c = f.height(); e.before.push(function (j, d, h) { a.fn.cycle.commonReset(j, d, h); if (i == "right") { h.cssBefore.left = -b } else { if (i == "up") { h.cssBefore.top = c } else { if (i == "down") { h.cssBefore.top = -c } else { h.cssBefore.left = b } } } }); e.animIn = { left: 0, top: 0 }; e.animOut = { opacity: 1 }; e.cssBefore = { top: 0, left: 0 } }; a.fn.cycle.transitions.uncover = function (f, g, e) { var i = e.direction || "left"; var b = f.css("overflow", "hidden").width(); var c = f.height(); e.before.push(function (j, d, h) { a.fn.cycle.commonReset(j, d, h, true, true, true); if (i == "right") { h.animOut.left = b } else { if (i == "up") { h.animOut.top = -c } else { if (i == "down") { h.animOut.top = c } else { h.animOut.left = -b } } } }); e.animIn = { left: 0, top: 0 }; e.animOut = { opacity: 1 }; e.cssBefore = { top: 0, left: 0 } }; a.fn.cycle.transitions.toss = function (e, f, d) { var b = e.css("overflow", "visible").width(); var c = e.height(); d.before.push(function (i, g, h) { a.fn.cycle.commonReset(i, g, h, true, true, true); if (!h.animOut.left && !h.animOut.top) { h.animOut = { left: b * 2, top: -c / 2, opacity: 0 } } else { h.animOut.opacity = 0 } }); d.cssBefore = { left: 0, top: 0 }; d.animIn = { left: 0 } }; a.fn.cycle.transitions.wipe = function (s, m, e) { var q = s.css("overflow", "hidden").width(); var j = s.height(); e.cssBefore = e.cssBefore || {}; var g; if (e.clip) { if (/l2r/.test(e.clip)) { g = "rect(0px 0px " + j + "px 0px)" } else { if (/r2l/.test(e.clip)) { g = "rect(0px " + q + "px " + j + "px " + q + "px)" } else { if (/t2b/.test(e.clip)) { g = "rect(0px " + q + "px 0px 0px)" } else { if (/b2t/.test(e.clip)) { g = "rect(" + j + "px " + q + "px " + j + "px 0px)" } else { if (/zoom/.test(e.clip)) { var o = parseInt(j / 2); var f = parseInt(q / 2); g = "rect(" + o + "px " + f + "px " + o + "px " + f + "px)" } } } } } } e.cssBefore.clip = e.cssBefore.clip || g || "rect(0px 0px 0px 0px)"; var k = e.cssBefore.clip.match(/(\d+)/g); var u = parseInt(k[0]), c = parseInt(k[1]), n = parseInt(k[2]), i = parseInt(k[3]); e.before.push(function (w, h, t) { if (w == h) { return } var d = a(w), b = a(h); a.fn.cycle.commonReset(w, h, t, true, true, false); t.cssAfter.display = "block"; var r = 1, l = parseInt((t.speedIn / 13)) - 1; (function v() { var y = u ? u - parseInt(r * (u / l)) : 0; var z = i ? i - parseInt(r * (i / l)) : 0; var A = n < j ? n + parseInt(r * ((j - n) / l || 1)) : j; var x = c < q ? c + parseInt(r * ((q - c) / l || 1)) : q; b.css({ clip: "rect(" + y + "px " + x + "px " + A + "px " + z + "px)" }); (r++ <= l) ? setTimeout(v, 13) : d.css("display", "none") })() }); e.cssBefore = { display: "block", opacity: 1, top: 0, left: 0 }; e.animIn = { left: 0 }; e.animOut = { left: 0 } } })(jQuery); - </script> - </div> - </div> - </div> - <!--img class="mc_top" src="template/mcbbs/image/muddy_pig_subhero_updated6-19.png"/--> - <!--框背景的头部--> - <div class="mc_map_border_top"> - </div> - <!--框背景的左右--> - <div class="mc_map_border_left"> - <div class="mc_map_border_right"> - <div id="hd"> - <div class="imgshadow" height="600" width="400"> - </div> - <div class="wp"> - <div id="nv"> - <!--<a href="javascript:;" id="qmenu" onmouseover="delayShow(this, function () {showMenu({'ctrlid':'qmenu','pos':'34!','ctrlclass':'a','duration':2});showForummenu(139);})">快捷导航</a>--> - <ul class="nv_ul"> - <li id="mn_portal"> - <a hidefocus="true" href="portal.php" title="Portal"> - 首页 - <span> - Portal - </span> - </a> - </li> - <li class="a" id="mn_forum" - onmouseover="showMenu({'ctrlid':this.id,'ctrlclass':'hover','duration':2})"> - <a hidefocus="true" href="forum.php" title="Forum"> - 论坛 - <span> - Forum - </span> - </a> - </li> - <li id="mn_group" - onmouseover="showMenu({'ctrlid':this.id,'ctrlclass':'hover','duration':2})"> - <a hidefocus="true" href="group.php" title="Groups"> - 小组 - <span> - Groups - </span> - </a> - </li> - <li id="mn_Nce95" - onmouseover="showMenu({'ctrlid':this.id,'ctrlclass':'hover','duration':2})"> - <a hidefocus="true" href="https://minecraft.fandom.com/zh/wiki/Minecraft_Wiki" - title="Wiki"> - 百科 - <span> - Wiki - </span> - </a> - </li> - <li id="mn_N45f0" - onmouseover="showMenu({'ctrlid':this.id,'ctrlclass':'hover','duration':2})"> - <a hidefocus="true" href="#" title="Utilities"> - 工具 - <span> - Utilities - </span> - </a> - </li> - </ul> - </div> - <div id="nv_right"> - <div id="an"> - <dl class="cl"> - <dt class="z xw1"> - </dt> - <dd> - <div id="anc"> - <ul id="ancl"> - <li> - <span> - <a class="xi2" - href="https://www.mcbbs.net/thread-1272232-1-1.html" - target="_blank"> - <b> - 请勿外借您的论坛账号,设置高强度密码 - </b> - </a> - </span> - </li> - </ul> - </div> - </dd> - </dl> - </div> - <script type="text/javascript"> - announcement(); - </script> - </div> - <script type="text/javascript"> - jq(function () { - jq("ul.p_pop").on("mouseover", function () { - var id = jq(this).attr("ctrlid"); - jq("#" + id).css({ background: "#e4dcc7", color: "#339933" }); - }); - jq("ul.p_pop").on("mouseleave", function () { - var id = jq(this).attr("ctrlid"); - setTimeout(function () { - jq("#" + id).css({ background: "none", color: "#fff" }); - }, 250); - }); - }) - </script> - <ul class="p_pop h_pop" id="plugin_menu" style="display: none"> - <li> - <a href="plugin.php?id=dc_signin:dc_signin" id="mn_plink_dc_signin"> - 每日签到 - </a> - </li> - </ul> - <ul class="p_pop h_pop" id="mn_forum_menu" style="display: none"> - <li> - <a hidefocus="true" href="thread-7808-1-1.html"> - 坛规 - </a> - </li> - <li> - <a hidefocus="true" href="thread-12685-1-1.html"> - 勋章申请 - </a> - </li> - <li> - <a hidefocus="true" href="thread-924844-1-2.html"> - 身份认证 - </a> - </li> - </ul> - <ul class="p_pop h_pop" id="mn_group_menu" style="display: none"> - <li> - <a hidefocus="true" href="/thread-332265-1-1.html"> - 优秀小组申请 - </a> - </li> - </ul> - <div class="p_pop h_pop" id="mn_userapp_menu" style="display: none"> - </div> - <ul class="p_pop h_pop" id="mn_Nce95_menu" style="display: none"> - <li> - <a hidefocus="true" href="https://wiki.biligame.com/mc/Minecraft_Wiki"> - 中文百科镜像 - </a> - </li> - <li> - <a hidefocus="true" href="https://minecraft.fandom.com/zh/wiki/%E6%88%90%E5%B0%B1"> - 成就(基岩版) - </a> - </li> - <li> - <a hidefocus="true" href="https://minecraft.fandom.com/zh/wiki/%E8%BF%9B%E5%BA%A6"> - 进度(Java版) - </a> - </li> - <li> - <a hidefocus="true" href="https://minecraft.fandom.com/zh/wiki/%E7%94%9F%E7%89%A9"> - 生物 - </a> - </li> - <li> - <a hidefocus="true" href="https://minecraft.fandom.com/zh/wiki/%E6%96%B9%E5%9D%97"> - 方块 - </a> - </li> - <li> - <a hidefocus="true" href="https://minecraft.fandom.com/zh/wiki/%E7%89%A9%E5%93%81"> - 物品 - </a> - </li> - <li> - <a hidefocus="true" - href="https://minecraft.fandom.com/zh/wiki/%E7%94%9F%E7%89%A9%E7%BE%A4%E7%B3%BB"> - 生物群系 - </a> - </li> - <li> - <a hidefocus="true" - href="https://minecraft.fandom.com/zh/wiki/%E7%8A%B6%E6%80%81%E6%95%88%E6%9E%9C"> - 状态效果 - </a> - </li> - <li> - <a hidefocus="true" href="https://minecraft.fandom.com/zh/wiki/%E9%99%84%E9%AD%94"> - 附魔 - </a> - </li> - <li> - <a hidefocus="true" href="https://minecraft.fandom.com/zh/wiki/%E4%BA%A4%E6%98%93"> - 交易 - </a> - </li> - <li> - <a hidefocus="true" - href="https://minecraft.fandom.com/zh/wiki/%E7%BA%A2%E7%9F%B3%E5%85%83%E4%BB%B6"> - 红石元件 - </a> - </li> - <li> - <a hidefocus="true" - href="https://minecraft.fandom.com/zh/wiki/Special:%E6%9C%80%E8%BF%91%E6%9B%B4%E6%94%B9"> - 最近更改 - </a> - </li> - </ul> - <ul class="p_pop h_pop" id="mn_N45f0_menu" style="display: none"> - <li> - <a hidefocus="true" href="misc.php?mod=faq" target="_blank"> - 帮助 - </a> - </li> - <li> - <a hidefocus="true" href="https://pastebin.com/" target="_blank"> - 剪贴板 - Pastebin - </a> - </li> - <li> - <a hidefocus="true" href="https://sm.ms/" target="_blank"> - 图床 - sm.ms - </a> - </li> - <li> - <a hidefocus="true" href="http://pan.baidu.com" target="_blank"> - 网盘 - 百度网盘 - </a> - </li> - <li> - <a hidefocus="true" href="https://www.weiyun.com/" target="_blank"> - 网盘 - 微云 - </a> - </li> - <li> - <a hidefocus="true" href="https://www.baidu.com/s?wd=%20site%3Amcbbs.net" - target="_blank"> - 搜索 - 百度站内搜索 - </a> - </li> - </ul> - <div class="cl" id="mu"> - </div> - </div> - </div> - <script src="/source/plugin/zhaisoul_thread_album/static/album.js" type="text/javascript"> - </script> - <link href="/source/plugin/zhaisoul_thread_album/static/album.css" rel="stylesheet" /> - <script type="text/javascript"> - document.onselectstart = function () { return false }; - </script> - <style type="text/css"> - html { - -ms-user-select: none; - -moz-user-select: none; - -webkit-user-select: none; - } - </style> - <script type="text/javascript"> - function copyright(msg, script) { script = !script ? '' : script; var c = '<div class="f_c"><div class="c floatwrap" style="height:130px;">' + msg + '</div></div>'; var t = '论坛版权'; showDialog(c, 'info', t); } document.oncontextmenu = function () { copyright('1、本主题所有言论和图片纯属会员个人意见,与本论坛立场无关<br>2、本站所有主题由该帖子作者发表,该帖子作者享有帖子相关版权<br>3、其他单位或个人使用、转载或引用本文时必须征得该帖子作者的同意<br>4、帖子作者须承担一切因本文发表而直接或间接导致的民事或刑事法律责任<br>5、本帖部分内容转载自其它媒体,但并不代表本站赞同其观点和对其真实性负责<br>6、若本帖涉及任何版权问题,请立即告知本站,本站将及时予以处理并致以最深的歉意<br>7、<a href=https://www.mcbbs.net/ rel=nofollow><font color=#FF6600>Minecraft(我的世界)中文论坛</font></a>管理员和版主有权不事先通知发贴者而删除本文', this.href); return false; } - </script> - <div class="wp" id="wp" style="margin:0 85px;float:left;"> - <style> - embed { - max-width: 800px; - !important; - } - </style> - <script type="text/javascript"> - var fid = parseInt('139'), tid = parseInt('1340927'); - </script> - <script src="/template/mcbbs/common/RangeDownloader.min.js?T77" type="text/javascript"> - </script> - <script> - function attach_download_ctrl(obj) { - if (obj.className.indexOf("attach-download-link") >= 0) { - var main = obj.parentNode.parentNode; - var isCtrl = false; - } else if (obj.className.indexOf("attach-download-indicator") >= 0) { - var main = obj.parentNode; - var isCtrl = true; - } else { - return true; - } - var urlObj = main.querySelector(".attach-download-link"); - if (!urlObj) { return true; } - if (!main.DownloadInit) { - main.DownProgress = main.querySelector(".download-progress"); - main.DownCircle = main.querySelector(".attach-download-circle circle") - main.Downloader = new RangeDownloader({ - url: urlObj.href, - onload: function (_self) { - main.classList.remove("downloading"); - main.classList.add("downloaded"); - main.DownProgress.innerText = ""; - main.DownLink.href = URL.createObjectURL(_self.getResultAsBlob()); - main.DownLink.click(); - clearInterval(main.DownIndicator); - }, - onerror: function (_self) { - main.DownProgress.innerText = "下载错误"; - main.classList.remove("downloading"); - main.classList.add("download-err"); - } - }); - main.DownIndicator = setInterval(function () { - main.DownProgress.innerText = calc1024Unit(main.Downloader.downloadedSize); - var downP = main.Downloader.totalSize == 0 ? (main.Downloader.supportPartial ? 0 : 0.5) : main.Downloader.downloadedSize / main.Downloader.totalSize; - main.DownCircle.setAttribute("stroke-dashoffset", (1 - downP) * 80); - }, 1000); - var ele = document.createElement("a"); - ele.style.display = "none"; - ele.download = urlObj.innerText; - main.append(ele); - main.DownLink = ele; - main.DownloadInit = true; - } - var down = main.Downloader; - if (!down.running && !down.loaded) { - down.start(); - main.classList.add("downloading"); - } - if (isCtrl && down.running == true) { - down.pause(); - main.classList.remove("downloading"); - } - if (down.loaded == true) { - main.DownLink.click(); - } - - return false; - } - </script> - <script src="data/cache/forum_viewthread.js?T77" type="text/javascript"> - </script> - <script type="text/javascript"> - zoomstatus = parseInt(1); var imagemaxwidth = '700'; var aimgcount = new Array(); - </script> - <style id="diy_style" type="text/css"> - </style> - <!--[diy=diynavtop]--> - <div class="area" id="diynavtop"> - </div> - <!--[/diy]--> - <div class="bm cl" id="pt"> - <div class="z"> - <a class="nvhm" href="./" title="首页"> - Minecraft(我的世界)中文论坛 - </a> - <em> - » - </em> - <a href="forum.php"> - 论坛 - </a> - <em> - › - </em> - <a href="forum.php?gid=36"> - 综合讨论 - </a> - <em> - › - </em> - <a href="forum-news-1.html"> - 幻翼块讯 - </a> - <em> - › - </em> - <a href="thread-1340927-1-1.html"> - Minecraft Java版 1.19-pre1 发布 - </a> - </div> - </div> - <style id="diy_style" type="text/css"> - </style> - <div class="wp"> - <!--[diy=diy1]--> - <div class="area" id="diy1"> - </div> - <!--[/diy]--> - </div> - <div class="wp cl" id="ct"> - <div class="pgs mbm cl" id="pgt"> - <div class="pgt"> - <div class="pg"> - <strong> - 1 - </strong> - <a href="thread-1340927-2-1.html"> - 2 - </a> - <label> - <input class="px" name="custompage" - onkeydown="if(event.keyCode==13) {window.location='forum.php?mod=viewthread&tid=1340927&extra=&page='+this.value;; doane(event);}" - size="2" title="输入页码,按回车快速跳转" type="text" value="1" /> - <span title="共 2 页"> - / 2 页 - </span> - </label> - <a class="nxt" href="thread-1340927-2-1.html"> - 下一页 - </a> - </div> - </div> - <span class="y pgb" id="visitedforums" - onmouseover="$('visitedforums').id = 'visitedforumstmp';this.id = 'visitedforums';showMenu({'ctrlid':this.id,'pos':'34'})"> - <a href="forum-news-1.html"> - 返回列表 - </a> - </span> - <!--<a id="newspecial" onmouseover="$('newspecial').id = 'newspecialtmp';this.id = 'newspecial';showMenu({'ctrlid':this.id})" onclick="showWindow('newthread', 'forum.php?mod=post&action=newthread&fid=139')" href="javascript:;" title="发新帖"><img src="template/mcbbs/image/pn_post.png" alt="发新帖" /></a>--> - <a href="javascript:;" id="" - onclick="showWindow('reply', 'forum.php?mod=post&action=reply&fid=139&tid=1340927')" - title="回复"> - <img alt="回复" src="template/mcbbs/image/pn_reply.png" /> - </a> - </div> - <div class="pl bm" id="postlist"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="pls ptn pbn"> - <div class="hm ptn"> - <span class="xg1"> - 查看: - </span> - <span class="xi1"> - 1622 - </span> - <span class="pipe"> - | - </span> - <span class="xg1"> - 回复: - </span> - <span class="xi1"> - 26 - </span> - </div> - </td> - <td class="plc ptm pbn vwthd"> - <div class="y"> - <a href="forum.php?mod=viewthread&action=printable&tid=1340927" - target="_blank" title="打印"> - <img alt="打印" class="vm" src="template/mcbbs/image/print.png" /> - </a> - <a href="forum.php?mod=redirect&goto=nextoldset&tid=1340927" - title="上一主题"> - <img alt="上一主题" class="vm" src="template/mcbbs/image/thread-prev.png" /> - </a> - <a href="forum.php?mod=redirect&goto=nextnewset&tid=1340927" - title="下一主题"> - <img alt="下一主题" class="vm" src="template/mcbbs/image/thread-next.png" /> - </a> - </div> - <h1 class="ts"> - <a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204"> - [Java版本资讯] - </a> - <span id="thread_subject"> - Minecraft Java版 1.19-pre1 发布 - </span> - </h1> - <span class="xg1"> - <a href="thread-1340927-1-1.html" - onclick="return copyThreadUrl(this, 'Minecraft(我的世界)中文论坛')"> - [复制链接] - </a> - </span> - </td> - </tr> - </table> - <table cellpadding="0" cellspacing="0" class="ad"> - <tr> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - <div id="post_25849603"> - <div id="threadstamp"> - <img src="static/image/stamp/008.gif" title="版主推荐" /> - </div> - <table cellpadding="0" cellspacing="0" class="plhin" id="pid25849603" - summary="pid25849603"> - <tr> - <td class="pls" rowspan="2"> - <div class="pls favatar" id="favatar25849603"> - <div class="pi"> - <div class="authi"> - <a class="xw1" href="home.php?mod=space&uid=3152226" - target="_blank"> - 希铁石z - </a> - </div> - </div> - <div class="p_pop blk bui card_gender_" id="userinfo25849603" - style="opacity: 0; transition: opacity 200ms ease 0s; pointer-events: none; margin-top: -11px;"> - <div class="m z"> - <div id="userinfo25849603_ma"> - </div> - </div> - <div class="i y"> - <div> - <strong> - <a class="xi2" href="home.php?mod=space&uid=3152226" - target="_blank"> - 希铁石z - </a> - </strong> - <em> - 当前离线 - </em> - </div> - <dl class="cl"> - <dt> - 积分 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=3152226&do=profile" - target="_blank"> - 1718 - </a> - </dd> - <dt> - 帖子 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=3152226&do=thread&type=reply&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 主题 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=3152226&do=thread&type=thread&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 精华 - </dt> - <dd> - </dd> - <dt> - <img src="template\mcbbs\image\nautilus_shell.png" - style="vertical-align:middle" /> - 贡献 - </dt> - <dd> - 份 - </dd> - <dt> - <img src="template/mcbbs/image/apple.png" - style="vertical-align:middle" /> - 爱心 - </dt> - <dd> - 心 - </dd> - <dt> - 钻石 - </dt> - <dd> - 颗 - </dd> - <dt> - 人气 - </dt> - <dd> - 点 - </dd> - <dt> - 下界之星 - </dt> - <dd> - 枚 - </dd> - <dt> - 最后登录 - </dt> - <dd> - 1970-1-1 - </dd> - <dt> - 注册时间 - </dt> - <dd> - 2020-3-21 - </dd> - </dl> - <div class="imicn"> - <a href="home.php?mod=space&uid=3152226&do=profile" - target="_blank" title="查看详细资料"> - <img alt="查看详细资料" - src="template/mcbbs/image/userinfo.gif" /> - </a> - </div> - <div id="avatarfeed"> - <span id="threadsortswait"> - </span> - </div> - </div> - </div> - <div> - <div class="avatar"> - <a class="avtm" href="home.php?mod=space&uid=3152226" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/003/15/22/26_avatar_big.jpg/middle" /> - </a> - </div> - </div> - </div> - </td> - <td class="plc"> - <div class="pi"> - <div class="y" id="fj"> - <label class="z"> - 电梯直达 - </label> - <input class="px p_fre z" - onkeydown="if(event.keyCode==13) {window.location=$('fj_btn').href;return false;}" - onkeyup="$('fj_btn').href='forum.php?mod=redirect&ptid=1340927&authorid=0&postno='+this.value" - size="2" title="跳转到指定楼层" type="text" /> - <a class="z" href="javascript:;" id="fj_btn" title="跳转到指定楼层"> - <img alt="跳转到指定楼层" class="vm" - src="template/mcbbs/image/fj_btn.png" /> - </a> - </div> - <strong> - <a href="thread-1340927-1-1.html" id="postnum25849603" - onclick="setCopy(this.href, '帖子地址复制成功');return false;"> - 楼主 - </a> - </strong> - <div class="pti"> - <div class="pdbt"> - </div> - <div class="authi"> - <img class="authicn vm" id="authicon25849603" - src="static/image/common/icon_member.gif" /> - <em id="authorposton25849603"> - 发表于 - <span title="2022-5-19 00:35:31"> - 昨天 00:35 - </span> - </em> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=viewthread&tid=1340927&page=1&authorid=3152226" - rel="nofollow"> - 只看该作者 - </a> - <span class="pipe"> - | - </span> - <a - href="forum.php?mod=viewthread&tid=1340927&from=album"> - 只看大图 - </a> - <span class="none"> - <img alt="回帖奖励" class="vm" - src="template/mcbbs/image/arw_r.gif" /> - </span> - <span class="pipe show"> - | - </span> - <a class="show" - href="forum.php?mod=viewthread&tid=1340927&extra=&ordertype=1"> - 倒序浏览 - </a> - <span class="pipe show"> - | - </span> - <a class="show" href="javascript:;" - onclick="readmode($('thread_subject').innerHTML, 25849603);"> - 阅读模式 - </a> - </div> - </div> - </div> - <div class="pct"> - <style type="text/css"> - .pcb { - margin-right: 0 - } - </style> - <div class="pcb"> - <div class="t_fsz"> - <style type="text/css"> - #pid25849603 { - background-image: url("static/image/postbg/bg3.png"); - } - </style> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="t_f" id="postmessage_25849603"> - <div class="attach_nopermission attach_tips"> - <div> - <h3> - <strong> - 您尚未登录,立即登录享受更好的浏览体验! - </strong> - </h3> - <p> - 您需要 - <a href="member.php?mod=logging&action=login" - onclick="showWindow('login', this.href);return false;"> - 登录 - </a> - 才可以下载或查看,没有帐号? - <a href="member.php?mod=register" - title="注册帐号"> - 注册(register) - </a> - </p> - </div> - <span class="atips_close" - onclick="this.parentNode.style.display='none'"> - x - </span> - </div> - <i class="pstatus"> - 本帖最后由 希铁石z 于 2022-5-19 10:17 编辑 - </i> - <div align="center"> - <font - face="-apple-system, BlinkMacSystemFont,Segoe UI, Roboto, Helvetica, Arial, sans-serif"> - <table cellspacing="0" class="t_table" - style="width:85%"> - <tr style="background-color:#E3C99E"> - <td> - <span - style="float:left;margin-right:5px"> - <img alt="" border="0" - class="zoom" - file="https://attachment.mcbbs.net/data/myattachment/common/6c/common_45_icon.png" - height="48" - id="aimg_W1BFp" - onclick="zoom(this, this.src, 0, 0, 0)" - width="48" /> - </span> - <font style="font-size:32px"> - <strong> - <font color="#645944"> - 预发布版 - </font> - </strong> - </font> - </td> - </tr> - <tr style="background-color:#FDF6E5"> - <td> - <font style="font-size:16px"> - <ul> - <li> - <strong> - 预发布版 - </strong> - 是 Minecraft Java - 版的测试机制,主要是为了收集漏洞反馈,为正式发布做好准备。 - <li> - <font - color="#8E2609"> - 预发布版有可能导致存档损坏,因此请注意备份,不要直接在你的主存档游玩预发布版。 - </font> - <li> - 转载本贴时须要注明原作者以及本帖地址。 - <font - style="font-size:0px"> - 本贴来自 - <a href="http://www.mcbbs.net" - target="_blank"> - www.mcbbs.net - </a> - </font> - <li> - 部分新特性译名仅供参考,不代表最终结果。 - </li> - </li> - </li> - </li> - </ul> - </font> - </td> - </tr> - </table> - </font> - </div> - <hr class="l" /> - <div align="center"> - <img alt="" border="0" class="zoom" - file="https://www.minecraft.net/content/dam/games/minecraft/screenshots/1-19-pre-release-1-header.jpg" - height="299" id="aimg_aqGQr" - onclick="zoom(this)" - onmouseover="img_onmouseoverfunc(this)" - style="cursor:pointer" width="700" /> - <font style="background-color:Black"> - <font color="White"> - <strong> - NEWS - </strong> - </font> - </font> - </div> - <div align="center"> - <font size="6"> - <strong> - <font color="Silver"> - MINECRAFT 1.19 PRE-RELEASE 1 - </font> - </strong> - </font> - <font size="6"> - <strong> - MINECRAFT 1.19-pre1 - </strong> - </font> - <font size="4"> - <strong> - <font size="2"> - <font color="Silver"> - A Minecraft Java Pre-Release - </font> - </font> - </strong> - </font> - <font size="4"> - <strong> - Minecraft Java版 预发布版 - </strong> - </font> - </div> - <blockquote> - <blockquote> - <font size="2"> - <font color="Silver"> - Presenting the first pre-release of - 1.19: The Wild Update! - </font> - </font> - 1.19:荒野更新的第一个预发布版已发布! - <font size="2"> - <font color="Silver"> - From now on, you should mostly see - bugs being fixed. In addition to - that, pre-releases don't follow the - regular snapshot cadence of - releasing on Wednesdays, so keep an - eye out for the next pre-release ;) - </font> - </font> - 这个版本之后的改动,应该都会是漏洞修复。因此,预发布版不会遵循普通快照周三发布的规律,所以请关注后续预发布版的消息 - ;) - <font size="2"> - <font color="Silver"> - As always, a big thank you to the - community for your feedback, bugs - reported, and awesome ideas - throughout the snapshot series. Let - the pre-releases commence! - </font> - </font> - 如同往常,我们对社区给予的反馈、漏洞报告和对快照提出的好主意表示衷心的感谢。迎接预发布版的到来吧! - <font size="6"> - <strong> - <font color="Silver"> - CHANGES IN 1.19 PRE-RELEASE 1 - </font> - </strong> - </font> - <font size="6"> - <strong> - 1.19-pre1 的修改内容 - </strong> - </font> - <ul> - <li> - <font color="Silver"> - Slightly reduced the number of - Mangrove trees in Mangrove - Swamps - </font> - <li> - 稍微下调了红树木沼泽中红树的生成数量 - <li> - <font color="Silver"> - Endermen, Skeletons, Wither - Skeletons, and Piglins now spawn - in a wider range of light levels - in the Nether (from light level - 0 to 11) - </font> - <li> - 末影人,骷髅,凋灵骷髅和猪灵现在会在下界中更广的光照强度范围中生成(从光照强度等级0到11) - <li> - <font color="Silver"> - Item interaction vibrations are - now emitted when you start or - finish "using" an item with a - start and finish state (such as - Bows, Crossbows, Goat Horns, - Shields, Food) - </font> - <li> - 在开始或结束“使用”一个物品时,与物品交互会产生振动(例如弓、十字弩、山羊角、盾和食物) - <li> - <font color="Silver"> - Item interaction vibrations are - now ignored when sneaking - </font> - <li> - 现在潜行时与物品交互不会产生振动 - <li> - <font color="Silver"> - Placing items that aren’t armor - (such as Pumpkins and Skulls) in - your headwear slot now plays a - generic equip sound - </font> - <li> - 在装备栏中装备非盔甲的物品(如南瓜和头颅)现在有单独的装备音效 - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </ul> - <font size="6"> - <strong> - <font color="Silver"> - TECHNICAL CHANGES IN 1.19 - PRE-RELEASE 1 - </font> - </strong> - </font> - <font size="6"> - <strong> - 1.19-pre1 的技术性修改 - </strong> - </font> - <ul> - <li> - <font color="Silver"> - Auto-completion is now available - for the template argument to - <font - style="background-color:#f1edec"> - <font color="Silver"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - place template - </font> - </font> - </font> - </font> - <li> - 自动补全现在可用于 - <font - style="background-color:#f1edec"> - <font color="#7824c5"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - place template - </font> - </font> - </font> - 的模板参数 - <li> - <font color="Silver"> - Custom servers can now enable or - disable chat preview for certain - clients by sending a new network - packet - </font> - <li> - 自定义服务器现在可以通过发送新的网络数据包的方式以对特定客户端启用或禁用聊天预览 - <li> - <font color="Silver"> - Now, a chat preview is also - shown for chat-related commands, - such as - <font - style="background-color:#f1edec"> - <font color="Silver"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - /say - </font> - </font> - </font> - and - <font - style="background-color:#f1edec"> - <font color="Silver"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - /msg - </font> - </font> - </font> - </font> - <li> - 现在,聊天预览在聊天相关指令中也会展示。例如 - <font - style="background-color:#f1edec"> - <font color="#7824c5"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - /say - </font> - </font> - </font> - 和 - <font - style="background-color:#f1edec"> - <font color="#7824c5"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - /msg - </font> - </font> - </font> - <li> - <font color="Silver"> - <font - style="background-color:#f1edec"> - <font color="Silver"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - test-rainbow-chat - </font> - </font> - </font> - has been removed from - <font - style="background-color:#f1edec"> - <font color="Silver"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - server.properties - </font> - </font> - </font> - </font> - <li> - <font - style="background-color:#f1edec"> - <font color="#7824c5"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - test-rainbow-chat - </font> - </font> - </font> - 从 - <font - style="background-color:#f1edec"> - <font color="#7824c5"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - server.properties - </font> - </font> - </font> - 中移除了 - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </ul> - <font size="5"> - <strong> - <font color="Silver"> - ADDED GAME EVENTS - </font> - </strong> - </font> - <font size="5"> - <strong> - 添加的游戏事件 - </strong> - </font> - <ul> - <li> - <font color="Silver"> - <font - style="background-color:#f1edec"> - <font color="Silver"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - note_block_play - </font> - </font> - </font> - with a vibration frequency of 6 - </font> - <li> - <font - style="background-color:#f1edec"> - <font color="#7824c5"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - note_block_play - </font> - </font> - </font> - 带有振动频率6 - <li> - <font color="Silver"> - <font - style="background-color:#f1edec"> - <font color="Silver"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - instrument_play - </font> - </font> - </font> - with a vibration frequency of 15 - </font> - <li> - <font - style="background-color:#f1edec"> - <font color="#7824c5"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - instrument_play - </font> - </font> - </font> - 带有振动频率15 - </li> - </li> - </li> - </li> - </ul> - <font size="6"> - <strong> - <font color="Silver"> - FIXED BUGS IN 1.19 PRE-RELEASE 1 - </font> - </strong> - </font> - <font size="6"> - <strong> - 1.19-pre1 修复的漏洞 - </strong> - </font> - <ul> - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-94060" - target="_blank"> - <font color="Silver"> - MC-94060 - </font> - </a> - - Equipping armor/elytra through - inventory or dispenser doesn’t - play sounds - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-94060" - target="_blank"> - <strong> - <font color="#de8500"> - MC-94060 - </font> - </strong> - </a> - - 通过物品栏或发射器装备盔甲/鞘翅时不会播放声音 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-134892" - target="_blank"> - <font color="Silver"> - MC-134892 - </font> - </a> - - PacketBuffer.writeString’s max - length is in bytes, while - readString is in characters - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-134892" - target="_blank"> - <strong> - <font color="#a2d2e2"> - MC-134892 - </font> - </strong> - </a> - - - <font - style="background-color:#f1edec"> - <font color="#7824c5"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - PacketBuffer.writeString - </font> - </font> - </font> - 以 byte 类型检查最大长度,而 - <font - style="background-color:#f1edec"> - <font color="#7824c5"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - readString - </font> - </font> - </font> - 按字符串长度检查 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-209222" - target="_blank"> - <font color="Silver"> - MC-209222 - </font> - </a> - - Attempting to open the - Minecraft Realms menu claims - that the client is outdated, - even if the snapshot may be - newer than the release - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-209222" - target="_blank"> - <strong> - <font color="#de8500"> - MC-209222 - </font> - </strong> - </a> - - 尝试打开 Minecraft Realms - 菜单时会声称客户端已过时,即使快照的版本比正式版更新 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-210279" - target="_blank"> - <font color="Silver"> - MC-210279 - </font> - </a> - - Sculk sensors are not - activated upon entities being - summoned by a spawner - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-210279" - target="_blank"> - <strong> - <font color="#de8500"> - MC-210279 - </font> - </strong> - </a> - - 刷怪笼生成实体时,幽匿感测体不会激活 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-213915" - target="_blank"> - <font color="Silver"> - MC-213915 - </font> - </a> - - Equipping armor through the - inventory does not count as a - vibration - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-213915" - target="_blank"> - <strong> - <font color="#de8500"> - MC-213915 - </font> - </strong> - </a> - - 通过物品栏装备盔甲不被算作振动 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-218222" - target="_blank"> - <font color="Silver"> - MC-218222 - </font> - </a> - - Distance value for Sculk - Sensors is limited to integers - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-218222" - target="_blank"> - <strong> - <font color="#de8500"> - MC-218222 - </font> - </strong> - </a> - - 幽匿感测体的距离值被限制为整数,从而导致某些值永远不会被输出 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-225195" - target="_blank"> - <font color="Silver"> - MC-225195 - </font> - </a> - - Goats don’t panic when tempted - with their favorite food - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-225195" - target="_blank"> - <strong> - <font color="#de8500"> - MC-225195 - </font> - </strong> - </a> - - 山羊在被它们喜爱的食物引诱时不会惊慌 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-230735" - target="_blank"> - <font color="Silver"> - MC-230735 - </font> - </a> - - “FOV Effects” setting - description is innacurate - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-230735" - target="_blank"> - <strong> - <font color="#de8500"> - MC-230735 - </font> - </strong> - </a> - - “视场角效果”在设置中的描述不准确 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-249141" - target="_blank"> - <font color="Silver"> - MC-249141 - </font> - </a> - - No subtitles are produced upon - frogs stepping - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-249141" - target="_blank"> - <strong> - <font color="#de8500"> - MC-249141 - </font> - </strong> - </a> - - 青蛙行走时没有相应的字幕 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-249164" - target="_blank"> - <font color="Silver"> - MC-249164 - </font> - </a> - - The entity.frog.tounge sound - is misspelled - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-249164" - target="_blank"> - <strong> - <font color="#de8500"> - MC-249164 - </font> - </strong> - </a> - - 声音名称 - <font - style="background-color:#f1edec"> - <font color="#7824c5"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - entity.frog.tounge - </font> - </font> - </font> - 拼写错误 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-249209" - target="_blank"> - <font color="Silver"> - MC-249209 - </font> - </a> - - Frogs don’t panic when tempted - with their favorite food - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-249209" - target="_blank"> - <strong> - <font color="#de8500"> - MC-249209 - </font> - </strong> - </a> - - 青蛙在被它们喜爱的食物引诱时不会惊慌 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-249260" - target="_blank"> - <font color="Silver"> - MC-249260 - </font> - </a> - - Tadpoles are not tempted by - slime balls - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-249260" - target="_blank"> - <strong> - <font color="#de8500"> - MC-249260 - </font> - </strong> - </a> - - 蝌蚪不会被黏液球引诱 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-249328" - target="_blank"> - <font color="Silver"> - MC-249328 - </font> - </a> - - Frogs can jump around while - being tempted with slimeballs - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-249328" - target="_blank"> - <strong> - <font color="#de8500"> - MC-249328 - </font> - </strong> - </a> - - 青蛙被黏液球引诱时会跳来跳去 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-249456" - target="_blank"> - <font color="Silver"> - MC-249456 - </font> - </a> - - Tadpoles drop experience, - unlike other baby mobs - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-249456" - target="_blank"> - <strong> - <font color="#de8500"> - MC-249456 - </font> - </strong> - </a> - - 与其它幼年生物不同,蝌蚪死亡后会掉落经验 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-249619" - target="_blank"> - <font color="Silver"> - MC-249619 - </font> - </a> - - The comparator frequency of - sculk sensors when you are - stepping on it is the last - frequency it heard - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-249619" - target="_blank"> - <strong> - <font color="#bb45ee"> - MC-249619 - </font> - </strong> - </a> - - - 幽匿感测体在有实体压在正上方时发出的红石信号强度是它最后感受到声音的强度 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-249711" - target="_blank"> - <font color="Silver"> - MC-249711 - </font> - </a> - - Items collected off the ground - by allays travel too high above - their hitboxes - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-249711" - target="_blank"> - <strong> - <font color="#bb45ee"> - MC-249711 - </font> - </strong> - </a> - - 物品被悦灵从地上捡起时会飞到比悦灵碰撞箱更高的位置 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-249757" - target="_blank"> - <font color="Silver"> - MC-249757 - </font> - </a> - - ‘It Spreads’ advancement is - not a child of ‘Monster Hunter’ - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-249757" - target="_blank"> - <strong> - <font color="#bb45ee"> - MC-249757 - </font> - </strong> - </a> - - “它蔓延了”成就不是“怪物猎人”的子项 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-249834" - target="_blank"> - <font color="Silver"> - MC-249834 - </font> - </a> - - Swapping items to the player’s - off-hand can generate vibrations - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-249834" - target="_blank"> - <strong> - <font color="#de8500"> - MC-249834 - </font> - </strong> - </a> - - 与玩家的副手交换物品时会产生振动 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-249980" - target="_blank"> - <font color="Silver"> - MC-249980 - </font> - </a> - - The Birthday Song advancement - description doesn’t capitalise - the word Cake - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-249980" - target="_blank"> - <strong> - <font color="#808000"> - MC-249980 - </font> - </strong> - </a> - - 进度“生日快乐歌”的描述中有不正确的大小写 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-250006" - target="_blank"> - <font color="Silver"> - MC-250006 - </font> - </a> - - ID of the british cat doesn’t - match texture name - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-250006" - target="_blank"> - <strong> - <font color="#de8500"> - MC-250006 - </font> - </strong> - </a> - - 英国短毛猫的纹理名称与ID不匹配 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-250019" - target="_blank"> - <font color="Silver"> - MC-250019 - </font> - </a> - - Sculk catalyst triggers when a - villager converts into zombie - villager by a zombie - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-250019" - target="_blank"> - <strong> - <font color="#de8500"> - MC-250019 - </font> - </strong> - </a> - - 当村民被僵尸转换为僵尸村民时,幽匿催化体会被触发 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-250317" - target="_blank"> - <font color="Silver"> - MC-250317 - </font> - </a> - - The subtitle for picking up a - Tadpole with a bucket is the - generic “Bucket fills” subtitle - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-250317" - target="_blank"> - <strong> - <font color="#de8500"> - MC-250317 - </font> - </strong> - </a> - - 用桶装一只蝌蚪的字幕为通用的“桶:装满”字幕 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-250351" - target="_blank"> - <font color="Silver"> - MC-250351 - </font> - </a> - - /tp “argument” duplicated on - the tab options - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-250351" - target="_blank"> - <strong> - <font color="#de8500"> - MC-250351 - </font> - </strong> - </a> - - /tp “参数” 在 Tab 键选项中重复 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-250919" - target="_blank"> - <font color="Silver"> - MC-250919 - </font> - </a> - - The server crashes when - attempting to load chunks that - contain command blocks that - consist of large numbers of - characters within the previous - output field - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-250919" - target="_blank"> - <strong> - <font color="#de8500"> - MC-250919 - </font> - </strong> - </a> - - - 当尝试加载包括由前一个输出字段中的大量字符组成的含有命令方块的区块时,服务器会崩溃 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-250932" - target="_blank"> - <font color="Silver"> - MC-250932 - </font> - </a> - - Goat horn subtitles are - improperly capitalized - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-250932" - target="_blank"> - <strong> - <font color="#de8500"> - MC-250932 - </font> - </strong> - </a> - - 山羊角(Goat horn)的字幕未正确大小写 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-250940" - target="_blank"> - <font color="Silver"> - MC-250940 - </font> - </a> - - Goat horn playing isn’t - detected as a vibration - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-250940" - target="_blank"> - <strong> - <font color="#de8500"> - MC-250940 - </font> - </strong> - </a> - - 使用山羊角时不会检测为振动 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251132" - target="_blank"> - <font color="Silver"> - MC-251132 - </font> - </a> - - Server logs “Game test server” - messages - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251132" - target="_blank"> - <strong> - <font color="#de8500"> - MC-251132 - </font> - </strong> - </a> - - 服务器日志的“游戏测试服务器”消息 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251312" - target="_blank"> - <font color="Silver"> - MC-251312 - </font> - </a> - - Entity selectors in /say - commands are no longer evaluated - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251312" - target="_blank"> - <strong> - <font color="#a2d2e2"> - MC-251312 - </font> - </strong> - </a> - - - <font - style="background-color:#f1edec"> - <font color="#7824c5"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - /say - </font> - </font> - </font> - 命令里的实体选择器不再被计算 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251355" - target="_blank"> - <font color="Silver"> - MC-251355 - </font> - </a> - - Potted mangrove propagule - model is incorrect - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251355" - target="_blank"> - <strong> - <font color="#808000"> - MC-251355 - </font> - </strong> - </a> - - 红树胎生苗盆栽的模型不正确 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251405" - target="_blank"> - <font color="Silver"> - MC-251405 - </font> - </a> - - Structure Block messages are - formatted as chat - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251405" - target="_blank"> - <strong> - <font color="#808000"> - MC-251405 - </font> - </strong> - </a> - - 结构方块的消息被当作聊天消息来格式化 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251479" - target="_blank"> - <font color="Silver"> - MC-251479 - </font> - </a> - - Duplicate object key [lang - file] - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251479" - target="_blank"> - <strong> - <font color="#a2d2e2"> - MC-251479 - </font> - </strong> - </a> - - 语言文件里出现重复的键值对 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251550" - target="_blank"> - <font color="Silver"> - MC-251550 - </font> - </a> - - Failed to launch the game on - 32-bit operating system - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251550" - target="_blank"> - <strong> - <font color="#de8500"> - MC-251550 - </font> - </strong> - </a> - - 无法在 32 位操作系统中启动游戏 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251640" - target="_blank"> - <font color="Silver"> - MC-251640 - </font> - </a> - - - <a href="https://www.minecraft.net/zh-hans/article/io.net" - target="_blank"> - <font color="Silver"> - io.net - </font> - </a> - ty.handler.codec.EncoderException - when using special characters in - chat message - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251640" - target="_blank"> - <strong> - <font color="#808000"> - MC-251640 - </font> - </strong> - </a> - - - 在聊天消息中使用特殊字符时报错:io.netty.handler.codec.EncoderException - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251641" - target="_blank"> - <font color="Silver"> - MC-251641 - </font> - </a> - - Game crash regarding warden - anger - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251641" - target="_blank"> - <strong> - <font color="#808000"> - MC-251641 - </font> - </strong> - </a> - - 与监守者发怒有关的游戏崩溃 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251647" - target="_blank"> - <font color="Silver"> - MC-251647 - </font> - </a> - - Chat closes itself if the - control for Open Chat is set to - Enter - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251647" - target="_blank"> - <strong> - <font color="#de8500"> - MC-251647 - </font> - </strong> - </a> - - 如果打开聊天栏的按键绑定为 Enter 键,则聊天栏会自动关闭 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251649" - target="_blank"> - <font color="Silver"> - MC-251649 - </font> - </a> - - Clicking “incomplete command” - message removes / in chat - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251649" - target="_blank"> - <strong> - <font color="#808000"> - MC-251649 - </font> - </strong> - </a> - - 点击“命令不完整”提示后会移除输入框中的斜杠 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251650" - target="_blank"> - <font color="Silver"> - MC-251650 - </font> - </a> - - Iron golems can spawn on non - spawnable blocks such as leaves, - glass, sea lanterns, etc - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251650" - target="_blank"> - <strong> - <font color="#de8500"> - MC-251650 - </font> - </strong> - </a> - - 铁傀儡可以在树叶、玻璃、海晶灯等非生成方块上生成 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251652" - target="_blank"> - <font color="Silver"> - MC-251652 - </font> - </a> - - Warden emerge/roar/sonic - charge/dig animation (and - possibly other similar - animations) don’t start unless - the player looks at the Warden - first - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251652" - target="_blank"> - <strong> - <font color="#de8500"> - MC-251652 - </font> - </strong> - </a> - - 除非玩家先看见监守者,否则监守者的出现/咆哮/蓄力/掘地动画不会启动 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251656" - target="_blank"> - <font color="Silver"> - MC-251656 - </font> - </a> - - /say command fails to apply - server message styling when sent - from a command block, server - console, or RCON, unlike /msg - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251656" - target="_blank"> - <strong> - <font color="#a2d2e2"> - MC-251656 - </font> - </strong> - </a> - - 不像 - <font - style="background-color:#f1edec"> - <font color="#7824c5"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - /msg - </font> - </font> - </font> - 命令, - <font - style="background-color:#f1edec"> - <font color="#7824c5"> - <font - face="SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"> - /say - </font> - </font> - </font> - 命令被命令方块、服务器控制台或 RCON - 执行时,应用服务器消息格式会失败 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251690" - target="_blank"> - <font color="Silver"> - MC-251690 - </font> - </a> - Wardens can spawn on any - non-full block, as long as it’s - solid - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251690" - target="_blank"> - <strong> - <font color="#de8500"> - MC-251690 - </font> - </strong> - </a> - - 监守者可以在任何非完整的固体方块上生成 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251736" - target="_blank"> - <font color="Silver"> - MC-251736 - </font> - </a> - - Reflected ghast fireball - cannot hit the ghast - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251736" - target="_blank"> - <strong> - <font color="#de8500"> - MC-251736 - </font> - </strong> - </a> - - 恶魂的火球在反弹后不能击中恶魂 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251762" - target="_blank"> - <font color="Silver"> - MC-251762 - </font> - </a> - - You can run commands with - double slash prefix - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251762" - target="_blank"> - <strong> - <font color="#808000"> - MC-251762 - </font> - </strong> - </a> - - 使用两条斜杠作前缀时也可执行命令 - <li> - <font color="Silver"> - <a href="https://bugs.mojang.com/browse/MC-251773" - target="_blank"> - <font color="Silver"> - MC-251773 - </font> - </a> - - The --dev argument for the - data generators no longer - converts NBT to SNBT properly - </font> - <li> - <a href="https://bugs.mojang.com/browse/MC-251773" - target="_blank"> - <strong> - <font color="#de8500"> - MC-251773 - </font> - </strong> - </a> - - 数据生成器的 --dev 参数不再正确地将 NBT 转换为 SNBT - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </li> - </ul> - <span style="float:left;margin-right:5px"> - <img alt="" border="0" class="zoom" - file="https://www.minecraft.net/content/dam/archive/47546af0dc1b3d456e04447c5f34c52c-NewAdrian.png" - height="121" id="aimg_hES55" - onclick="zoom(this, this.src, 0, 0, 0)" - width="82" /> - </span> - <strong> - 【希铁石z 译自 - <a href="https://www.minecraft.net/zh-hans/article/minecraft-1-19-pre-release-1" - target="_blank"> - <font color="#388d40"> - <u> - 官网 2022 年 05 月 18 日发布的 - Minecraft 1.19 Pre-Release 1 - </u> - </font> - </a> - ;原作者 Adrian Östergård】 - </strong> - <div align="center"> - <font - face="-apple-system, BlinkMacSystemFont,Segoe UI, Roboto, Helvetica, Arial, sans-serif"> - <table cellspacing="0" - class="t_table" - style="width:85%"> - <tr - style="background-color:#E3C99E"> - <td> - <span - style="float:left;margin-right:5px"> - <img alt="" - border="0" - class="zoom" - file="https://attachment.mcbbs.net/data/myattachment/common/39/common_137_icon.png" - height="32" - id="aimg_uZIjv" - onclick="zoom(this, this.src, 0, 0, 0)" - width="32" /> - </span> - <font - style="font-size:24px"> - <strong> - <font - color="#645944"> - 实用链接 - </font> - </strong> - </font> - </td> - </tr> - <tr - style="background-color:#FDF6E5"> - <td> - <font - style="font-size:16px"> - <ul> - <li> - <a href="https://launcher.mojang.com/v1/objects/1be90ec671e145e56b789de428b63ec43a2d9721/server.jar" - target="_blank"> - <font - color="Sienna"> - 官方服务端 - jar - 下载地址 - </font> - </a> - <li> - <a href="https://www.minecraft.net/zh-hans/download/" - target="_blank"> - <font - color="Sienna"> - 正版启动器下载地址 - </font> - </a> - <li> - <a href="https://bugs.mojang.com/browse/MC" - target="_blank"> - <font - color="Sienna"> - 漏洞报告站点(仅限英文) - </font> - </a> - <li> - <a href="https://www.mcbbs.net/plugin.php?id=link_redirect&target=https%3A%2F%2Faka.ms%2FJavaSnapshotFeedback%3Fref%3Dminecraftnet" - target="_blank"> - <font - color="Sienna"> - 官方反馈网站(仅限英文,适用于Java版) - </font> - </a> - </li> - </li> - </li> - </li> - </ul> - </font> - </td> - </tr> - </table> - </font> - </div> - <div align="center"> - <font - face="-apple-system, BlinkMacSystemFont,Segoe UI, Roboto, Helvetica, Arial, sans-serif"> - <table cellspacing="0" - class="t_table" - style="width:85%"> - <tr - style="background-color:#E3C99E"> - <td> - <span - style="float:left;margin-right:5px"> - <img alt="" - border="0" - class="zoom" - file="https://attachment.mcbbs.net/data/myattachment/common/d6/common_39_icon.png" - height="32" - id="aimg_r5rGP" - onclick="zoom(this, this.src, 0, 0, 0)" - width="40" /> - </span> - <font - style="font-size:24px"> - <strong> - <font - color="#645944"> - 如何游玩预发布版? - </font> - </strong> - </font> - </td> - </tr> - <tr - style="background-color:#FDF6E5"> - <td> - <font - style="font-size:16px"> - <ul> - <li> - 对于正版用户:请打开官方启动器,在「配置」选项卡中启用「快照」,选择「最新快照」即可。 - <li> - 对于非正版用户:请于 - <a href="http://www.mcbbs.net/forum.php?mod=viewthread&tid=38297&page=1#pid547821" - target="_blank"> - <font - color="Sienna"> - 推荐启动器列表 - </font> - </a> - 寻找合适的启动器。目前绝大多数主流启动器都带有下载功能。如仍有疑惑请到 - <a href="http://www.mcbbs.net/forum-qanda-1.html" - target="_blank"> - <font - color="Sienna"> - 原版问答 - </font> - </a> - 板块提问。 - </li> - </li> - </ul> - </font> - </td> - </tr> - </table> - </font> - </div> - <div align="center"> - <font - face="-apple-system, BlinkMacSystemFont,Segoe UI, Roboto, Helvetica, Arial, sans-serif"> - <table cellspacing="0" - class="t_table" - style="width:85%"> - <tr - style="background-color:#E3C99E"> - <td> - <span - style="float:left;margin-right:5px"> - <img alt="" - border="0" - class="zoom" - file="https://attachment.mcbbs.net/data/myattachment/common/e0/common_139_icon.png" - height="32" - id="aimg_UngA2" - onclick="zoom(this, this.src, 0, 0, 0)" - width="32" /> - </span> - <font - style="font-size:24px"> - <strong> - <font - color="#645944"> - 想了解更多资讯? - </font> - </strong> - </font> - </td> - </tr> - <tr - style="background-color:#FDF6E5"> - <td> - <font - style="font-size:16px"> - <ul> - <li> - <a href="https://www.mcbbs.net/thread-874677-1-1.html" - target="_blank"> - <font - color="Sienna"> - 外部来源以及详细的更新条目追踪 - </font> - </a> - <li> - <a href="https://www.mcbbs.net/forum.php?mod=forumdisplay&fid=139" - target="_blank"> - <font - color="Sienna"> - 我的世界中文论坛 - - - 幻翼块讯板块 - </font> - </a> - </li> - </li> - </ul> - </font> - </td> - </tr> - </table> - </font> - </div> - <div align="center"> - <font size="1"> - <font color="Silver"> - Powered by SPXX 2.4.7 with love - </font> - </font> - </div> - </blockquote> - </blockquote> - </td> - </tr> - </table> - <div class="modact"> - <a href="forum.php?mod=misc&action=viewthreadmod&tid=1340927" - onclick="showWindow('viewthreadmod', this.href)" - title="帖子模式"> - 本主题由 ff98sha 于 - <span title="2022-5-19 00:39"> - 昨天 00:39 - </span> - 设置高亮 - </a> - </div> - </div> - <div class="cm" id="comment_25849603"> - </div> - <h3 class="psth xs1"> - <span class="icon_ring vm"> - </span> - 评分 - </h3> - <dl class="rate" id="ratelog_25849603"> - <dd style="margin:0"> - <div id="post_rate_25849603"> - </div> - <table class="ratl"> - <tr> - <th class="xw1" width="120"> - <a href="forum.php?mod=misc&action=viewratings&tid=1340927&pid=25849603" - onclick="showWindow('viewratings', this.href)" - title="查看全部评分"> - 参与人数 - <span class="xi1"> - 5 - </span> - </a> - </th> - <th class="xw1" width="80"> - 人气 - <i> - <span class="xi1"> - +9 - </span> - </i> - </th> - <th class="xw1" width="80"> - 金粒 - <i> - <span class="xi1"> - +70 - </span> - </i> - </th> - <th> - <a class="y xi2 op" href="javascript:;" - onclick="toggleRatelogCollapse('ratelog_25849603', this);"> - 收起 - </a> - <i class="txt_h"> - 理由 - </i> - </th> - </tr> - <tbody class="ratl_l"> - <tr id="rate_25849603_3350682"> - <td> - <a href="home.php?mod=space&uid=3350682" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/003/35/06/82_avatar_big.jpg/small" /> - </a> - <a href="home.php?mod=space&uid=3350682" - target="_blank"> - for(;;i++) - </a> - </td> - <td class="xi1"> - + 1 - </td> - <td class="xi1"> - + 20 - </td> - <td class="xg1"> - MCBBS有你更精彩~ - </td> - </tr> - <tr id="rate_25849603_1602734"> - <td> - <a href="home.php?mod=space&uid=1602734" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/001/60/27/34_avatar_big.jpg/small" /> - </a> - <a href="home.php?mod=space&uid=1602734" - target="_blank"> - buhuichongfu - </a> - </td> - <td class="xi1"> - + 2 - </td> - <td class="xg1"> - </td> - <td class="xg1"> - MCBBS有你更精彩~ - </td> - </tr> - <tr id="rate_25849603_2961523"> - <td> - <a href="home.php?mod=space&uid=2961523" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/002/96/15/23_avatar_big.jpg/small" /> - </a> - <a href="home.php?mod=space&uid=2961523" - target="_blank"> - AkashaMCPK - </a> - </td> - <td class="xi1"> - + 1 - </td> - <td class="xi1"> - + 20 - </td> - <td class="xg1"> - MCBBS有你更精彩~ - </td> - </tr> - <tr id="rate_25849603_3034006"> - <td> - <a href="home.php?mod=space&uid=3034006" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/003/03/40/06_avatar_big.jpg/small" /> - </a> - <a href="home.php?mod=space&uid=3034006" - target="_blank"> - 念 - </a> - </td> - <td class="xi1"> - + 2 - </td> - <td class="xg1"> - </td> - <td class="xg1"> - MCBBS有你更精彩~ - </td> - </tr> - <tr id="rate_25849603_1575538"> - <td> - <a href="home.php?mod=space&uid=1575538" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/001/57/55/38_avatar_big.jpg/small" /> - </a> - <a href="home.php?mod=space&uid=1575538" - target="_blank"> - ff98sha - </a> - </td> - <td class="xi1"> - + 3 - </td> - <td class="xi1"> - + 30 - </td> - <td class="xg1"> - MCBBS有你更精彩~ - </td> - </tr> - </tbody> - </table> - <p class="ratc"> - <a class="xi2" - href="forum.php?mod=misc&action=viewratings&tid=1340927&pid=25849603" - onclick="showWindow('viewratings', this.href)" - title="查看全部评分"> - 查看全部评分 - </a> - </p> - </dd> - </dl> - </div> - </div> - </td> - </tr> - <tr> - <td class="plc plm"> - <div class="mtw mbm hm cl" id="p_btn"> - <a href="home.php?mod=spacecp&ac=favorite&type=thread&id=1340927&formhash=c4628403" - id="k_favorite" onclick="showWindow(this.id, this.href, 'get', 0);" - onmouseover="this.title = $('favoritenumber').innerHTML + ' 人收藏'" - title="收藏本帖"> - <i> - <img alt="收藏" src="template/mcbbs/image/fav.gif" /> - 收藏 - <span id="favoritenumber" style="display:none"> - 0 - </span> - </i> - </a> - <a href="forum.php?mod=misc&action=recommend&do=add&tid=1340927&hash=1de209cd" - id="recommend_add" onclick="showWindow('login', this.href)" - onmouseover="this.title = $('recommendv_add').innerHTML + ' 人顶一下'" - title="顶一下"> - <i> - <img alt="顶一下" src="template/mcbbs/image/rec_add.gif" /> - 顶一下 - <span id="recommendv_add" style="display:none"> - 0 - </span> - </i> - </a> - <a href="forum.php?mod=misc&action=recommend&do=subtract&tid=1340927&hash=1de209cd" - id="recommend_subtract" onclick="showWindow('login', this.href)" - onmouseover="this.title = $('recommendv_subtract').innerHTML + ' 人踩一下'" - title="踩一下"> - <i> - <img alt="踩一下" src="template/mcbbs/image/rec_subtract.gif" /> - 踩一下 - <span id="recommendv_subtract" style="display:none"> - 0 - </span> - </i> - </a> - </div> - <div> - <div - style="padding:5px;text-align:center;margin-top:10px;color:#00A2D2;"> - <b> - 帖子永久链接: - </b> - <input class="px" readonly="readonly" size="40" - style="vertical-align:middle;" type="text" - value="https://www.mcbbs.net/thread-1340927-1-1.html" /> - <button class="pn" - onclick="setCopy('https://www.mcbbs.net/thread-1340927-1-1.html', '帖子地址已经复制到剪贴板您可以用快捷键 Ctrl + V 粘贴到 QQ、MSN 里。')" - type="submit"> - <em> - 点击复制 - </em> - </button> - </div> - <fieldset - style="border:1px dashed #FF0000;padding:10px;-moz-border-radius:8px;-webkit-border-radius:8px;border-radius:8px;"> - <legend align="center" - style="color:#FFFFFF;width:200px;text-align:center;background-color:#FF0000;"> - Minecraft中文论坛 - 论坛版权 - </legend> - 1、本主题所有言论和图片纯属会员个人意见,与本论坛立场无关 - - 2、本站所有主题由该帖子作者发表,该帖子作者享有帖子相关版权 - - 3、其他单位或个人使用、转载或引用本文时必须同时征得该帖子作者的同意 - - 4、帖子作者须承担一切因本文发表而直接或间接导致的民事或刑事法律责任 - - 5、本帖若有内容转载自其它媒体,不代表本站赞同其观点和对其真实性负责 - - 6、若本帖涉及任何版权问题,请立即告知本站,本站将及时予以删除并致以最深的歉意 - - 7、 - <a href="https://www.mcbbs.net/" rel="nofollow"> - <font color="#FF6600"> - Minecraft(我的世界)中文论坛 - </font> - </a> - 管理员和版主有权不事先通知发贴者而删除本文 - </fieldset> - </div> - </td> - </tr> - <tr id="_postposition25849603"> - </tr> - <tr> - <td class="pls"> - </td> - <td class="plc" style="overflow:visible;"> - <div class="po hin"> - <div class="pob cl"> - <em> - <a class="fastre" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&reppost=25849603&extra=&page=1" - onclick="showWindow('reply', this.href)"> - 回复 - </a> - </em> - <p> - <a class="showmenu" href="javascript:;" id="mgc_post_25849603" - onmouseover="showMenu(this.id)"> - 使用道具 - </a> - <a href="javascript:;" - onclick="showWindow('miscreport25849603', 'misc.php?mod=report&rtype=post&rid=25849603&tid=1340927&fid=139', 'get', -1);return false;"> - 举报 - </a> - </p> - <ul class="p_pop mgcmn" id="mgc_post_25849603_menu" - style="display: none;"> - <li> - <a href="home.php?mod=magic&mid=bump&idtype=tid&id=1340927" - id="a_bump" onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/bump.small.gif" /> - 提升卡 - </a> - </li> - <li> - <a href="home.php?mod=magic&mid=close&idtype=tid&id=1340927" - id="a_stick" onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/close.small.gif" /> - 沉默卡 - </a> - </li> - <li> - <a href="home.php?mod=magic&mid=open&idtype=tid&id=1340927" - id="a_stick" onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/open.small.gif" /> - 喧嚣卡 - </a> - </li> - <li> - <a href="home.php?mod=magic&mid=highlight&idtype=tid&id=1340927" - id="a_stick" onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/highlight.small.gif" /> - 变色卡 - </a> - </li> - <li> - <a href="home.php?mod=magic&mid=namepost&idtype=pid&id=25849603:1340927" - id="a_namepost_25849603" - onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/namepost.small.gif" /> - 显身卡 - </a> - <li> - </li> - </li> - </ul> - <script reload="1" type="text/javascript"> - checkmgcmn('post_25849603') - </script> - </div> - </div> - </td> - </tr> - <tr class="ad"> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - <script reload="1" type="text/javascript"> - aimgcount[25849603] = ['W1BFp', 'aqGQr', 'hES55', 'uZIjv', 'r5rGP', 'UngA2']; - attachimggroup(25849603); - var aimgfid = 0; - </script> - </div> - <div id="post_25849631"> - <table cellpadding="0" cellspacing="0" class="plhin" id="pid25849631" - summary="pid25849631"> - <tr> - <td class="pls" rowspan="2"> - <div class="pls favatar" id="favatar25849631"> - <div class="pi"> - <div class="authi"> - <a class="xw1" href="home.php?mod=space&uid=10240" - style="color: #0099FF" target="_blank"> - 卡狗 - </a> - </div> - </div> - <div class="p_pop blk bui card_gender_" id="userinfo25849631" - style="opacity: 0; transition: opacity 200ms ease 0s; pointer-events: none; margin-top: -11px;"> - <div class="m z"> - <div id="userinfo25849631_ma"> - </div> - </div> - <div class="i y"> - <div> - <strong> - <a class="xi2" href="home.php?mod=space&uid=10240" - style="color: #0099FF" target="_blank"> - 卡狗 - </a> - </strong> - <em> - 当前离线 - </em> - </div> - <dl class="cl"> - <dt> - 积分 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=10240&do=profile" - target="_blank"> - 19076 - </a> - </dd> - <dt> - 帖子 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=10240&do=thread&type=reply&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 主题 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=10240&do=thread&type=thread&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 精华 - </dt> - <dd> - </dd> - <dt> - <img src="template\mcbbs\image\nautilus_shell.png" - style="vertical-align:middle" /> - 贡献 - </dt> - <dd> - 份 - </dd> - <dt> - <img src="template/mcbbs/image/apple.png" - style="vertical-align:middle" /> - 爱心 - </dt> - <dd> - 心 - </dd> - <dt> - 钻石 - </dt> - <dd> - 颗 - </dd> - <dt> - 人气 - </dt> - <dd> - 点 - </dd> - <dt> - 下界之星 - </dt> - <dd> - 枚 - </dd> - <dt> - 最后登录 - </dt> - <dd> - 1970-1-1 - </dd> - <dt> - 注册时间 - </dt> - <dd> - 2011-5-22 - </dd> - </dl> - <div class="imicn"> - <a href="home.php?mod=space&uid=10240&do=profile" - target="_blank" title="查看详细资料"> - <img alt="查看详细资料" - src="template/mcbbs/image/userinfo.gif" /> - </a> - </div> - <div id="avatarfeed"> - <span id="threadsortswait"> - </span> - </div> - </div> - </div> - <div> - <div class="avatar"> - <a class="avtm" href="home.php?mod=space&uid=10240" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/000/01/02/40_avatar_big.jpg/middle" /> - </a> - </div> - </div> - </div> - </td> - <td class="plc"> - <div class="pi"> - <strong> - <a href="forum.php?mod=redirect&goto=findpost&ptid=1340927&pid=25849631" - id="postnum25849631" - onclick="setCopy(this.href, '帖子地址复制成功');return false;"> - 沙发 - </a> - </strong> - <div class="pti"> - <div class="pdbt"> - </div> - <div class="authi"> - <img class="authicn vm" id="authicon25849631" - src="static/image/common/icon_cow.png" /> - <em id="authorposton25849631"> - 发表于 - <span title="2022-5-19 00:37:05"> - 昨天 00:37 - </span> - </em> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=viewthread&tid=1340927&page=1&authorid=10240" - rel="nofollow"> - 只看该作者 - </a> - </div> - </div> - </div> - <div class="pct"> - <div class="pcb"> - <div class="t_fsz"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="t_f" id="postmessage_25849631"> - <ignore_js_op> - <img aid="2029160" class="zoom" - file="https://attachment.mcbbs.net/data/myattachment/forum/202205/19/003640fzx3yxyxgl0ohyk2.png" - id="aimg_2029160" inpost="1" - onclick="zoom(this, this.src, 0, 0, 0)" - onmouseover="showMenu({'ctrlid':this.id,'pos':'12'})" - src="static/image/common/none.gif" - width="685" - zoomfile="https://attachment.mcbbs.net/data/myattachment/forum/202205/19/003640fzx3yxyxgl0ohyk2.png" /> - <div class="tip tip_4 aimg_tip" - disautofocus="true" id="aimg_2029160_menu" - style="position: absolute; display: none"> - <div class="xs0"> - <p> - <strong> - UHCA@59ZDWE%]2C)FXPXFX2.png - </strong> - <em class="xg1"> - (20.42 KB, 下载次数: 0) - </em> - </p> - <p> - <a href="forum.php?mod=attachment&aid=MjAyOTE2MHw0NDEzNDc4M3wxNjUyOTc2NzEwfDB8MTM0MDkyNw%3D%3D&nothumb=yes" - target="_blank"> - 下载附件 - </a> - </p> - <p class="xg1 y"> - <span title="2022-5-19 00:36"> - 昨天 00:36 - </span> - 上传 - </p> - </div> - <div class="tip_horn"> - </div> - </div> - </ignore_js_op> - 本期漏洞翻译积分 - - - - 想参与 SPXX 漏洞翻译吗?请见签名档 - </td> - </tr> - </table> - </div> - <div class="cm" id="comment_25849631"> - </div> - <h3 class="psth xs1"> - <span class="icon_ring vm"> - </span> - 评分 - </h3> - <dl class="rate" id="ratelog_25849631"> - <dd style="margin:0"> - <div id="post_rate_25849631"> - </div> - <table class="ratl"> - <tr> - <th class="xw1" width="120"> - <a href="forum.php?mod=misc&action=viewratings&tid=1340927&pid=25849631" - onclick="showWindow('viewratings', this.href)" - title="查看全部评分"> - 参与人数 - <span class="xi1"> - 1 - </span> - </a> - </th> - <th class="xw1" width="80"> - 人气 - <i> - <span class="xi1"> - +2 - </span> - </i> - </th> - <th> - <a class="y xi2 op" href="javascript:;" - onclick="toggleRatelogCollapse('ratelog_25849631', this);"> - 收起 - </a> - <i class="txt_h"> - 理由 - </i> - </th> - </tr> - <tbody class="ratl_l"> - <tr id="rate_25849631_3152226"> - <td> - <a href="home.php?mod=space&uid=3152226" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/003/15/22/26_avatar_big.jpg/small" /> - </a> - <a href="home.php?mod=space&uid=3152226" - target="_blank"> - 希铁石z - </a> - </td> - <td class="xi1"> - + 2 - </td> - <td class="xg1"> - 高呼666! - </td> - </tr> - </tbody> - </table> - <p class="ratc"> - <a class="xi2" - href="forum.php?mod=misc&action=viewratings&tid=1340927&pid=25849631" - onclick="showWindow('viewratings', this.href)" - title="查看全部评分"> - 查看全部评分 - </a> - </p> - </dd> - </dl> - </div> - </div> - </td> - </tr> - <tr> - <td class="plc plm"> - </td> - </tr> - <tr id="_postposition25849631"> - </tr> - <tr> - <td class="pls"> - </td> - <td class="plc" style="overflow:visible;"> - <div class="po hin"> - <div class="pob cl"> - <em> - <a class="fastre" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&repquote=25849631&extra=&page=1" - onclick="showWindow('reply', this.href)"> - 回复 - </a> - </em> - <p> - <a class="showmenu" href="javascript:;" id="mgc_post_25849631" - onmouseover="showMenu(this.id)"> - 使用道具 - </a> - <a href="javascript:;" - onclick="showWindow('miscreport25849631', 'misc.php?mod=report&rtype=post&rid=25849631&tid=1340927&fid=139', 'get', -1);return false;"> - 举报 - </a> - </p> - <ul class="p_pop mgcmn" id="mgc_post_25849631_menu" - style="display: none;"> - <li> - <a href="home.php?mod=magic&mid=namepost&idtype=pid&id=25849631:1340927" - id="a_namepost_25849631" - onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/namepost.small.gif" /> - 显身卡 - </a> - <li> - </li> - </li> - </ul> - <script reload="1" type="text/javascript"> - checkmgcmn('post_25849631') - </script> - </div> - </div> - </td> - </tr> - <tr class="ad"> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - <script reload="1" type="text/javascript"> - aimgcount[25849631] = ['2029160']; - attachimggroup(25849631); - var aimgfid = 0; - </script> - </div> - <div id="post_25849641"> - <table cellpadding="0" cellspacing="0" class="plhin" id="pid25849641" - summary="pid25849641"> - <tr> - <td class="pls" rowspan="2"> - <div class="pls favatar" id="favatar25849641"> - <div class="pi"> - <div class="authi"> - <a class="xw1" href="home.php?mod=space&uid=3034006" - target="_blank"> - 念 - </a> - </div> - </div> - <div class="p_pop blk bui card_gender_" id="userinfo25849641" - style="opacity: 0; transition: opacity 200ms ease 0s; pointer-events: none; margin-top: -11px;"> - <div class="m z"> - <div id="userinfo25849641_ma"> - </div> - </div> - <div class="i y"> - <div> - <strong> - <a class="xi2" href="home.php?mod=space&uid=3034006" - target="_blank"> - 念 - </a> - </strong> - <em> - 当前离线 - </em> - </div> - <dl class="cl"> - <dt> - 积分 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=3034006&do=profile" - target="_blank"> - 16658 - </a> - </dd> - <dt> - 帖子 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=3034006&do=thread&type=reply&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 主题 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=3034006&do=thread&type=thread&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 精华 - </dt> - <dd> - </dd> - <dt> - <img src="template\mcbbs\image\nautilus_shell.png" - style="vertical-align:middle" /> - 贡献 - </dt> - <dd> - 份 - </dd> - <dt> - <img src="template/mcbbs/image/apple.png" - style="vertical-align:middle" /> - 爱心 - </dt> - <dd> - 心 - </dd> - <dt> - 钻石 - </dt> - <dd> - 颗 - </dd> - <dt> - 人气 - </dt> - <dd> - 点 - </dd> - <dt> - 下界之星 - </dt> - <dd> - 枚 - </dd> - <dt> - 最后登录 - </dt> - <dd> - 1970-1-1 - </dd> - <dt> - 注册时间 - </dt> - <dd> - 2020-2-12 - </dd> - </dl> - <div class="imicn"> - <a href="home.php?mod=space&uid=3034006&do=profile" - target="_blank" title="查看详细资料"> - <img alt="查看详细资料" - src="template/mcbbs/image/userinfo.gif" /> - </a> - </div> - <div id="avatarfeed"> - <span id="threadsortswait"> - </span> - </div> - </div> - </div> - <div> - <div class="avatar"> - <a class="avtm" href="home.php?mod=space&uid=3034006" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/003/03/40/06_avatar_big.jpg/middle" /> - </a> - </div> - </div> - </div> - </td> - <td class="plc"> - <div class="pi"> - <strong> - <a href="forum.php?mod=redirect&goto=findpost&ptid=1340927&pid=25849641" - id="postnum25849641" - onclick="setCopy(this.href, '帖子地址复制成功');return false;"> - 板凳 - </a> - </strong> - <div class="pti"> - <div class="pdbt"> - </div> - <div class="authi"> - <img class="authicn vm" id="authicon25849641" - src="static/image/common/icon_skeleton.png" /> - <em id="authorposton25849641"> - 发表于 - <span title="2022-5-19 00:37:59"> - 昨天 00:37 - </span> - </em> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=viewthread&tid=1340927&page=1&authorid=3034006" - rel="nofollow"> - 只看该作者 - </a> - </div> - </div> - </div> - <div class="pct"> - <div class="pcb"> - <div class="t_fsz"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="t_f" id="postmessage_25849641"> - 寄,就差两分钟 - - 大佬tql - </td> - </tr> - </table> - </div> - <div class="cm" id="comment_25849641"> - </div> - <div id="post_rate_div_25849641"> - </div> - </div> - </div> - </td> - </tr> - <tr> - <td class="plc plm"> - </td> - </tr> - <tr id="_postposition25849641"> - </tr> - <tr> - <td class="pls"> - </td> - <td class="plc" style="overflow:visible;"> - <div class="po hin"> - <div class="pob cl"> - <em> - <a class="fastre" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&repquote=25849641&extra=&page=1" - onclick="showWindow('reply', this.href)"> - 回复 - </a> - </em> - <p> - <a class="showmenu" href="javascript:;" id="mgc_post_25849641" - onmouseover="showMenu(this.id)"> - 使用道具 - </a> - <a href="javascript:;" - onclick="showWindow('miscreport25849641', 'misc.php?mod=report&rtype=post&rid=25849641&tid=1340927&fid=139', 'get', -1);return false;"> - 举报 - </a> - </p> - <ul class="p_pop mgcmn" id="mgc_post_25849641_menu" - style="display: none;"> - <li> - <a href="home.php?mod=magic&mid=namepost&idtype=pid&id=25849641:1340927" - id="a_namepost_25849641" - onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/namepost.small.gif" /> - 显身卡 - </a> - <li> - </li> - </li> - </ul> - <script reload="1" type="text/javascript"> - checkmgcmn('post_25849641') - </script> - </div> - </div> - </td> - </tr> - <tr class="ad"> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - </div> - <div id="post_25849696"> - <table cellpadding="0" cellspacing="0" class="plhin" id="pid25849696" - summary="pid25849696"> - <tr> - <td class="pls" rowspan="2"> - <div class="pls favatar" id="favatar25849696"> - <div class="pi"> - <div class="authi"> - <a class="xw1" href="home.php?mod=space&uid=3171761" - target="_blank"> - 可爱小天空 - </a> - </div> - </div> - <div class="p_pop blk bui card_gender_" id="userinfo25849696" - style="opacity: 0; transition: opacity 200ms ease 0s; pointer-events: none; margin-top: -11px;"> - <div class="m z"> - <div id="userinfo25849696_ma"> - </div> - </div> - <div class="i y"> - <div> - <strong> - <a class="xi2" href="home.php?mod=space&uid=3171761" - target="_blank"> - 可爱小天空 - </a> - </strong> - <em> - 当前离线 - </em> - </div> - <dl class="cl"> - <dt> - 积分 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=3171761&do=profile" - target="_blank"> - 8837 - </a> - </dd> - <dt> - 帖子 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=3171761&do=thread&type=reply&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 主题 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=3171761&do=thread&type=thread&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 精华 - </dt> - <dd> - </dd> - <dt> - <img src="template\mcbbs\image\nautilus_shell.png" - style="vertical-align:middle" /> - 贡献 - </dt> - <dd> - 份 - </dd> - <dt> - <img src="template/mcbbs/image/apple.png" - style="vertical-align:middle" /> - 爱心 - </dt> - <dd> - 心 - </dd> - <dt> - 钻石 - </dt> - <dd> - 颗 - </dd> - <dt> - 人气 - </dt> - <dd> - 点 - </dd> - <dt> - 下界之星 - </dt> - <dd> - 枚 - </dd> - <dt> - 最后登录 - </dt> - <dd> - 1970-1-1 - </dd> - <dt> - 注册时间 - </dt> - <dd> - 2020-3-28 - </dd> - </dl> - <div class="imicn"> - <a href="home.php?mod=space&uid=3171761&do=profile" - target="_blank" title="查看详细资料"> - <img alt="查看详细资料" - src="template/mcbbs/image/userinfo.gif" /> - </a> - </div> - <div id="avatarfeed"> - <span id="threadsortswait"> - </span> - </div> - </div> - </div> - <div> - <div class="avatar"> - <a class="avtm" href="home.php?mod=space&uid=3171761" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/003/17/17/61_avatar_big.jpg/middle" /> - </a> - </div> - </div> - </div> - </td> - <td class="plc"> - <div class="pi"> - <strong> - <a href="forum.php?mod=redirect&goto=findpost&ptid=1340927&pid=25849696" - id="postnum25849696" - onclick="setCopy(this.href, '帖子地址复制成功');return false;"> - 地板 - </a> - </strong> - <div class="pti"> - <div class="pdbt"> - </div> - <div class="authi"> - <img class="authicn vm" id="authicon25849696" - src="static/image/common/icon_zombie_pigman.png" /> - <em id="authorposton25849696"> - 发表于 - <span title="2022-5-19 00:42:50"> - 昨天 00:42 - </span> - </em> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=viewthread&tid=1340927&page=1&authorid=3171761" - rel="nofollow"> - 只看该作者 - </a> - </div> - </div> - </div> - <div class="pct"> - <div class="pcb"> - <div class="t_fsz"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="t_f" id="postmessage_25849696"> - 总结:1.19 寄 - </td> - </tr> - </table> - </div> - <div class="cm" id="comment_25849696"> - </div> - <div id="post_rate_div_25849696"> - </div> - </div> - </div> - </td> - </tr> - <tr> - <td class="plc plm"> - </td> - </tr> - <tr id="_postposition25849696"> - </tr> - <tr> - <td class="pls"> - </td> - <td class="plc" style="overflow:visible;"> - <div class="po hin"> - <div class="pob cl"> - <em> - <a class="fastre" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&repquote=25849696&extra=&page=1" - onclick="showWindow('reply', this.href)"> - 回复 - </a> - </em> - <p> - <a class="showmenu" href="javascript:;" id="mgc_post_25849696" - onmouseover="showMenu(this.id)"> - 使用道具 - </a> - <a href="javascript:;" - onclick="showWindow('miscreport25849696', 'misc.php?mod=report&rtype=post&rid=25849696&tid=1340927&fid=139', 'get', -1);return false;"> - 举报 - </a> - </p> - <ul class="p_pop mgcmn" id="mgc_post_25849696_menu" - style="display: none;"> - <li> - <a href="home.php?mod=magic&mid=namepost&idtype=pid&id=25849696:1340927" - id="a_namepost_25849696" - onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/namepost.small.gif" /> - 显身卡 - </a> - <li> - </li> - </li> - </ul> - <script reload="1" type="text/javascript"> - checkmgcmn('post_25849696') - </script> - </div> - </div> - </td> - </tr> - <tr class="ad"> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - </div> - <div id="post_25849697"> - <table cellpadding="0" cellspacing="0" class="plhin" id="pid25849697" - summary="pid25849697"> - <tr> - <td class="pls" rowspan="2"> - <div class="pls favatar" id="favatar25849697"> - <div class="pi"> - <div class="authi"> - <a class="xw1" href="home.php?mod=space&uid=1694714" - style="color: #660000" target="_blank"> - AzureZeng - </a> - </div> - </div> - <div class="p_pop blk bui card_gender_" id="userinfo25849697" - style="opacity: 0; transition: opacity 200ms ease 0s; pointer-events: none; margin-top: -11px;"> - <div class="m z"> - <div id="userinfo25849697_ma"> - </div> - </div> - <div class="i y"> - <div> - <strong> - <a class="xi2" href="home.php?mod=space&uid=1694714" - style="color: #660000" target="_blank"> - AzureZeng - </a> - </strong> - <em> - 当前离线 - </em> - </div> - <dl class="cl"> - <dt> - 积分 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=1694714&do=profile" - target="_blank"> - 17211 - </a> - </dd> - <dt> - 帖子 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=1694714&do=thread&type=reply&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 主题 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=1694714&do=thread&type=thread&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 精华 - </dt> - <dd> - </dd> - <dt> - <img src="template\mcbbs\image\nautilus_shell.png" - style="vertical-align:middle" /> - 贡献 - </dt> - <dd> - 份 - </dd> - <dt> - <img src="template/mcbbs/image/apple.png" - style="vertical-align:middle" /> - 爱心 - </dt> - <dd> - 心 - </dd> - <dt> - 钻石 - </dt> - <dd> - 颗 - </dd> - <dt> - 人气 - </dt> - <dd> - 点 - </dd> - <dt> - 下界之星 - </dt> - <dd> - 枚 - </dd> - <dt> - 最后登录 - </dt> - <dd> - 1970-1-1 - </dd> - <dt> - 注册时间 - </dt> - <dd> - 2016-2-13 - </dd> - </dl> - <div class="imicn"> - <a href="home.php?mod=space&uid=1694714&do=profile" - target="_blank" title="查看详细资料"> - <img alt="查看详细资料" - src="template/mcbbs/image/userinfo.gif" /> - </a> - </div> - <div id="avatarfeed"> - <span id="threadsortswait"> - </span> - </div> - </div> - </div> - <div> - <div class="avatar"> - <a class="avtm" href="home.php?mod=space&uid=1694714" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/001/69/47/14_avatar_big.jpg/middle" /> - </a> - </div> - </div> - </div> - </td> - <td class="plc"> - <div class="pi"> - <strong> - <a href="forum.php?mod=redirect&goto=findpost&ptid=1340927&pid=25849697" - id="postnum25849697" - onclick="setCopy(this.href, '帖子地址复制成功');return false;"> - <em> - 5 - </em> - <sup> - # - </sup> - </a> - </strong> - <div class="pti"> - <div class="pdbt"> - </div> - <div class="authi"> - <img class="authicn vm" id="authicon25849697" - src="static/image/common/icon_moderator.gif" /> - <em id="authorposton25849697"> - 发表于 - <span title="2022-5-19 00:42:55"> - 昨天 00:42 - </span> - </em> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=viewthread&tid=1340927&page=1&authorid=1694714" - rel="nofollow"> - 只看该作者 - </a> - </div> - </div> - </div> - <div class="pct"> - <div class="pcb"> - <div class="t_fsz"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="t_f" id="postmessage_25849697"> - 1.19新特性锁定了? - - 那可太糟糕了。 - </td> - </tr> - </table> - </div> - <div class="cm" id="comment_25849697"> - </div> - <div id="post_rate_div_25849697"> - </div> - </div> - </div> - </td> - </tr> - <tr> - <td class="plc plm"> - </td> - </tr> - <tr id="_postposition25849697"> - </tr> - <tr> - <td class="pls"> - </td> - <td class="plc" style="overflow:visible;"> - <div class="po hin"> - <div class="pob cl"> - <em> - <a class="fastre" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&repquote=25849697&extra=&page=1" - onclick="showWindow('reply', this.href)"> - 回复 - </a> - </em> - <p> - <a class="showmenu" href="javascript:;" id="mgc_post_25849697" - onmouseover="showMenu(this.id)"> - 使用道具 - </a> - <a href="javascript:;" - onclick="showWindow('miscreport25849697', 'misc.php?mod=report&rtype=post&rid=25849697&tid=1340927&fid=139', 'get', -1);return false;"> - 举报 - </a> - </p> - <ul class="p_pop mgcmn" id="mgc_post_25849697_menu" - style="display: none;"> - <li> - <a href="home.php?mod=magic&mid=namepost&idtype=pid&id=25849697:1340927" - id="a_namepost_25849697" - onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/namepost.small.gif" /> - 显身卡 - </a> - <li> - </li> - </li> - </ul> - <script reload="1" type="text/javascript"> - checkmgcmn('post_25849697') - </script> - </div> - </div> - </td> - </tr> - <tr class="ad"> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - </div> - <div id="post_25849779"> - <table cellpadding="0" cellspacing="0" class="plhin" id="pid25849779" - summary="pid25849779"> - <tr> - <td class="pls" rowspan="2"> - <div class="pls favatar" id="favatar25849779"> - <div class="pi"> - <div class="authi"> - <a class="xw1" href="home.php?mod=space&uid=70058" - target="_blank"> - 10935336 - </a> - </div> - </div> - <div class="p_pop blk bui card_gender_" id="userinfo25849779" - style="opacity: 0; transition: opacity 200ms ease 0s; pointer-events: none; margin-top: -11px;"> - <div class="m z"> - <div id="userinfo25849779_ma"> - </div> - </div> - <div class="i y"> - <div> - <strong> - <a class="xi2" href="home.php?mod=space&uid=70058" - target="_blank"> - 10935336 - </a> - </strong> - <em> - 当前离线 - </em> - </div> - <dl class="cl"> - <dt> - 积分 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=70058&do=profile" - target="_blank"> - 3489 - </a> - </dd> - <dt> - 帖子 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=70058&do=thread&type=reply&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 主题 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=70058&do=thread&type=thread&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 精华 - </dt> - <dd> - </dd> - <dt> - <img src="template\mcbbs\image\nautilus_shell.png" - style="vertical-align:middle" /> - 贡献 - </dt> - <dd> - 份 - </dd> - <dt> - <img src="template/mcbbs/image/apple.png" - style="vertical-align:middle" /> - 爱心 - </dt> - <dd> - 心 - </dd> - <dt> - 钻石 - </dt> - <dd> - 颗 - </dd> - <dt> - 人气 - </dt> - <dd> - 点 - </dd> - <dt> - 下界之星 - </dt> - <dd> - 枚 - </dd> - <dt> - 最后登录 - </dt> - <dd> - 1970-1-1 - </dd> - <dt> - 注册时间 - </dt> - <dd> - 2012-6-1 - </dd> - </dl> - <div class="imicn"> - <a href="home.php?mod=space&uid=70058&do=profile" - target="_blank" title="查看详细资料"> - <img alt="查看详细资料" - src="template/mcbbs/image/userinfo.gif" /> - </a> - </div> - <div id="avatarfeed"> - <span id="threadsortswait"> - </span> - </div> - </div> - </div> - <div> - <div class="avatar"> - <a class="avtm" href="home.php?mod=space&uid=70058" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/000/07/00/58_avatar_big.jpg/middle" /> - </a> - </div> - </div> - </div> - </td> - <td class="plc"> - <div class="pi"> - <strong> - <a href="forum.php?mod=redirect&goto=findpost&ptid=1340927&pid=25849779" - id="postnum25849779" - onclick="setCopy(this.href, '帖子地址复制成功');return false;"> - <em> - 6 - </em> - <sup> - # - </sup> - </a> - </strong> - <div class="pti"> - <div class="pdbt"> - </div> - <div class="authi"> - <img class="authicn vm" id="authicon25849779" - src="static/image/common/icon_member.gif" /> - <em id="authorposton25849779"> - 发表于 - <span title="2022-5-19 00:50:09"> - 昨天 00:50 - </span> - </em> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=viewthread&tid=1340927&page=1&authorid=70058" - rel="nofollow"> - 只看该作者 - </a> - </div> - </div> - </div> - <div class="pct"> - <div class="pcb"> - <div class="t_fsz"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="t_f" id="postmessage_25849779"> - 特性这就没啦?不愧是 Mojang。 - </td> - </tr> - </table> - </div> - <div class="cm" id="comment_25849779"> - </div> - <div id="post_rate_div_25849779"> - </div> - </div> - </div> - </td> - </tr> - <tr> - <td class="plc plm"> - </td> - </tr> - <tr id="_postposition25849779"> - </tr> - <tr> - <td class="pls"> - </td> - <td class="plc" style="overflow:visible;"> - <div class="po hin"> - <div class="pob cl"> - <em> - <a class="fastre" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&repquote=25849779&extra=&page=1" - onclick="showWindow('reply', this.href)"> - 回复 - </a> - </em> - <p> - <a class="showmenu" href="javascript:;" id="mgc_post_25849779" - onmouseover="showMenu(this.id)"> - 使用道具 - </a> - <a href="javascript:;" - onclick="showWindow('miscreport25849779', 'misc.php?mod=report&rtype=post&rid=25849779&tid=1340927&fid=139', 'get', -1);return false;"> - 举报 - </a> - </p> - <ul class="p_pop mgcmn" id="mgc_post_25849779_menu" - style="display: none;"> - <li> - <a href="home.php?mod=magic&mid=namepost&idtype=pid&id=25849779:1340927" - id="a_namepost_25849779" - onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/namepost.small.gif" /> - 显身卡 - </a> - <li> - </li> - </li> - </ul> - <script reload="1" type="text/javascript"> - checkmgcmn('post_25849779') - </script> - </div> - </div> - </td> - </tr> - <tr class="ad"> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - </div> - <div id="post_25849948"> - <table cellpadding="0" cellspacing="0" class="plhin" id="pid25849948" - summary="pid25849948"> - <tr> - <td class="pls" rowspan="2"> - <div class="pls favatar" id="favatar25849948"> - <div class="pi"> - <div class="authi"> - <a class="xw1" href="home.php?mod=space&uid=780532" - target="_blank"> - 164ebr - </a> - </div> - </div> - <div class="p_pop blk bui card_gender_" id="userinfo25849948" - style="opacity: 0; transition: opacity 200ms ease 0s; pointer-events: none; margin-top: -11px;"> - <div class="m z"> - <div id="userinfo25849948_ma"> - </div> - </div> - <div class="i y"> - <div> - <strong> - <a class="xi2" href="home.php?mod=space&uid=780532" - target="_blank"> - 164ebr - </a> - </strong> - <em> - 当前离线 - </em> - </div> - <dl class="cl"> - <dt> - 积分 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=780532&do=profile" - target="_blank"> - 4047 - </a> - </dd> - <dt> - 帖子 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=780532&do=thread&type=reply&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 主题 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=780532&do=thread&type=thread&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 精华 - </dt> - <dd> - </dd> - <dt> - <img src="template\mcbbs\image\nautilus_shell.png" - style="vertical-align:middle" /> - 贡献 - </dt> - <dd> - 份 - </dd> - <dt> - <img src="template/mcbbs/image/apple.png" - style="vertical-align:middle" /> - 爱心 - </dt> - <dd> - 心 - </dd> - <dt> - 钻石 - </dt> - <dd> - 颗 - </dd> - <dt> - 人气 - </dt> - <dd> - 点 - </dd> - <dt> - 下界之星 - </dt> - <dd> - 枚 - </dd> - <dt> - 最后登录 - </dt> - <dd> - 1970-1-1 - </dd> - <dt> - 注册时间 - </dt> - <dd> - 2014-7-29 - </dd> - </dl> - <div class="imicn"> - <a href="home.php?mod=space&uid=780532&do=profile" - target="_blank" title="查看详细资料"> - <img alt="查看详细资料" - src="template/mcbbs/image/userinfo.gif" /> - </a> - </div> - <div id="avatarfeed"> - <span id="threadsortswait"> - </span> - </div> - </div> - </div> - <div> - <div class="avatar"> - <a class="avtm" href="home.php?mod=space&uid=780532" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/000/78/05/32_avatar_big.jpg/middle" /> - </a> - </div> - </div> - </div> - </td> - <td class="plc"> - <div class="pi"> - <strong> - <a href="forum.php?mod=redirect&goto=findpost&ptid=1340927&pid=25849948" - id="postnum25849948" - onclick="setCopy(this.href, '帖子地址复制成功');return false;"> - <em> - 7 - </em> - <sup> - # - </sup> - </a> - </strong> - <div class="pti"> - <div class="pdbt"> - </div> - <div class="authi"> - <img class="authicn vm" id="authicon25849948" - src="static/image/common/icon_member.gif" /> - <em id="authorposton25849948"> - 发表于 - <span title="2022-5-19 01:22:59"> - 昨天 01:22 - </span> - </em> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=viewthread&tid=1340927&page=1&authorid=780532" - rel="nofollow"> - 只看该作者 - </a> - </div> - </div> - </div> - <div class="pct"> - <div class="pcb"> - <div class="t_fsz"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="t_f" id="postmessage_25849948"> - bug还没捂热乎(bushi就修了 - </td> - </tr> - </table> - </div> - <div class="cm" id="comment_25849948"> - </div> - <div id="post_rate_div_25849948"> - </div> - </div> - </div> - </td> - </tr> - <tr> - <td class="plc plm"> - </td> - </tr> - <tr id="_postposition25849948"> - </tr> - <tr> - <td class="pls"> - </td> - <td class="plc" style="overflow:visible;"> - <div class="po hin"> - <div class="pob cl"> - <em> - <a class="fastre" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&repquote=25849948&extra=&page=1" - onclick="showWindow('reply', this.href)"> - 回复 - </a> - </em> - <p> - <a class="showmenu" href="javascript:;" id="mgc_post_25849948" - onmouseover="showMenu(this.id)"> - 使用道具 - </a> - <a href="javascript:;" - onclick="showWindow('miscreport25849948', 'misc.php?mod=report&rtype=post&rid=25849948&tid=1340927&fid=139', 'get', -1);return false;"> - 举报 - </a> - </p> - <ul class="p_pop mgcmn" id="mgc_post_25849948_menu" - style="display: none;"> - <li> - <a href="home.php?mod=magic&mid=namepost&idtype=pid&id=25849948:1340927" - id="a_namepost_25849948" - onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/namepost.small.gif" /> - 显身卡 - </a> - <li> - </li> - </li> - </ul> - <script reload="1" type="text/javascript"> - checkmgcmn('post_25849948') - </script> - </div> - </div> - </td> - </tr> - <tr class="ad"> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - </div> - <div id="post_25849949"> - <table cellpadding="0" cellspacing="0" class="plhin" id="pid25849949" - summary="pid25849949"> - <tr> - <td class="pls" rowspan="2"> - <div class="pls favatar" id="favatar25849949"> - <div class="pi"> - <div class="authi"> - <a class="xw1" href="home.php?mod=space&uid=2933654" - target="_blank"> - 橄榄Chan - </a> - </div> - </div> - <div class="p_pop blk bui card_gender_" id="userinfo25849949" - style="opacity: 0; transition: opacity 200ms ease 0s; pointer-events: none; margin-top: -11px;"> - <div class="m z"> - <div id="userinfo25849949_ma"> - </div> - </div> - <div class="i y"> - <div> - <strong> - <a class="xi2" href="home.php?mod=space&uid=2933654" - target="_blank"> - 橄榄Chan - </a> - </strong> - <em> - 当前离线 - </em> - </div> - <dl class="cl"> - <dt> - 积分 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=2933654&do=profile" - target="_blank"> - 629 - </a> - </dd> - <dt> - 帖子 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=2933654&do=thread&type=reply&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 主题 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=2933654&do=thread&type=thread&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 精华 - </dt> - <dd> - </dd> - <dt> - <img src="template\mcbbs\image\nautilus_shell.png" - style="vertical-align:middle" /> - 贡献 - </dt> - <dd> - 份 - </dd> - <dt> - <img src="template/mcbbs/image/apple.png" - style="vertical-align:middle" /> - 爱心 - </dt> - <dd> - 心 - </dd> - <dt> - 钻石 - </dt> - <dd> - 颗 - </dd> - <dt> - 人气 - </dt> - <dd> - 点 - </dd> - <dt> - 下界之星 - </dt> - <dd> - 枚 - </dd> - <dt> - 最后登录 - </dt> - <dd> - 1970-1-1 - </dd> - <dt> - 注册时间 - </dt> - <dd> - 2019-11-29 - </dd> - </dl> - <div class="imicn"> - <a href="home.php?mod=space&uid=2933654&do=profile" - target="_blank" title="查看详细资料"> - <img alt="查看详细资料" - src="template/mcbbs/image/userinfo.gif" /> - </a> - </div> - <div id="avatarfeed"> - <span id="threadsortswait"> - </span> - </div> - </div> - </div> - <div> - <div class="avatar"> - <a class="avtm" href="home.php?mod=space&uid=2933654" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/002/93/36/54_avatar_big.jpg/middle" /> - </a> - </div> - </div> - </div> - </td> - <td class="plc"> - <div class="pi"> - <strong> - <a href="forum.php?mod=redirect&goto=findpost&ptid=1340927&pid=25849949" - id="postnum25849949" - onclick="setCopy(this.href, '帖子地址复制成功');return false;"> - <em> - 8 - </em> - <sup> - # - </sup> - </a> - </strong> - <div class="pti"> - <div class="pdbt"> - </div> - <div class="authi"> - <img class="authicn vm" id="authicon25849949" - src="static/image/common/icon_member.gif" /> - <em id="authorposton25849949"> - 发表于 - <span title="2022-5-19 01:22:59"> - 昨天 01:22 - </span> - </em> - <span class="xg1"> - 来自手机 - </span> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=viewthread&tid=1340927&page=1&authorid=2933654" - rel="nofollow"> - 只看该作者 - </a> - </div> - </div> - </div> - <div class="pct"> - <div class="pcb"> - <div class="t_fsz"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="t_f" id="postmessage_25849949"> - 荒野更新大结局啦,祝 Minecraft 越做越好! - <img alt="" border="0" smilieid="694" - src="static/image/smiley/rabbit/44.gif" /> - </td> - </tr> - </table> - </div> - <div class="cm" id="comment_25849949"> - </div> - <div id="post_rate_div_25849949"> - </div> - </div> - </div> - </td> - </tr> - <tr> - <td class="plc plm"> - </td> - </tr> - <tr id="_postposition25849949"> - </tr> - <tr> - <td class="pls"> - </td> - <td class="plc" style="overflow:visible;"> - <div class="po hin"> - <div class="pob cl"> - <em> - <a class="fastre" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&repquote=25849949&extra=&page=1" - onclick="showWindow('reply', this.href)"> - 回复 - </a> - </em> - <p> - <a class="showmenu" href="javascript:;" id="mgc_post_25849949" - onmouseover="showMenu(this.id)"> - 使用道具 - </a> - <a href="javascript:;" - onclick="showWindow('miscreport25849949', 'misc.php?mod=report&rtype=post&rid=25849949&tid=1340927&fid=139', 'get', -1);return false;"> - 举报 - </a> - </p> - <ul class="p_pop mgcmn" id="mgc_post_25849949_menu" - style="display: none;"> - <li> - <a href="home.php?mod=magic&mid=namepost&idtype=pid&id=25849949:1340927" - id="a_namepost_25849949" - onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/namepost.small.gif" /> - 显身卡 - </a> - <li> - </li> - </li> - </ul> - <script reload="1" type="text/javascript"> - checkmgcmn('post_25849949') - </script> - </div> - </div> - </td> - </tr> - <tr class="ad"> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - </div> - <div id="post_25849973"> - <table cellpadding="0" cellspacing="0" class="plhin" id="pid25849973" - summary="pid25849973"> - <tr> - <td class="pls" rowspan="2"> - <div class="pls favatar" id="favatar25849973"> - <div class="pi"> - <div class="authi"> - <a class="xw1" href="home.php?mod=space&uid=4632323" - target="_blank"> - 春枫微微倾城 - </a> - </div> - </div> - <div class="p_pop blk bui card_gender_" id="userinfo25849973" - style="opacity: 0; transition: opacity 200ms ease 0s; pointer-events: none; margin-top: -11px;"> - <div class="m z"> - <div id="userinfo25849973_ma"> - </div> - </div> - <div class="i y"> - <div> - <strong> - <a class="xi2" href="home.php?mod=space&uid=4632323" - target="_blank"> - 春枫微微倾城 - </a> - </strong> - <em> - 当前离线 - </em> - </div> - <dl class="cl"> - <dt> - 积分 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=4632323&do=profile" - target="_blank"> - 778 - </a> - </dd> - <dt> - 帖子 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=4632323&do=thread&type=reply&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 主题 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=4632323&do=thread&type=thread&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 精华 - </dt> - <dd> - </dd> - <dt> - <img src="template\mcbbs\image\nautilus_shell.png" - style="vertical-align:middle" /> - 贡献 - </dt> - <dd> - 份 - </dd> - <dt> - <img src="template/mcbbs/image/apple.png" - style="vertical-align:middle" /> - 爱心 - </dt> - <dd> - 心 - </dd> - <dt> - 钻石 - </dt> - <dd> - 颗 - </dd> - <dt> - 人气 - </dt> - <dd> - 点 - </dd> - <dt> - 下界之星 - </dt> - <dd> - 枚 - </dd> - <dt> - 最后登录 - </dt> - <dd> - 1970-1-1 - </dd> - <dt> - 注册时间 - </dt> - <dd> - 2022-1-20 - </dd> - </dl> - <div class="imicn"> - <a href="home.php?mod=space&uid=4632323&do=profile" - target="_blank" title="查看详细资料"> - <img alt="查看详细资料" - src="template/mcbbs/image/userinfo.gif" /> - </a> - </div> - <div id="avatarfeed"> - <span id="threadsortswait"> - </span> - </div> - </div> - </div> - <div> - <div class="avatar"> - <a class="avtm" href="home.php?mod=space&uid=4632323" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/004/63/23/23_avatar_big.jpg/middle" /> - </a> - </div> - </div> - </div> - </td> - <td class="plc"> - <div class="pi"> - <strong> - <a href="forum.php?mod=redirect&goto=findpost&ptid=1340927&pid=25849973" - id="postnum25849973" - onclick="setCopy(this.href, '帖子地址复制成功');return false;"> - <em> - 9 - </em> - <sup> - # - </sup> - </a> - </strong> - <div class="pti"> - <div class="pdbt"> - </div> - <div class="authi"> - <img class="authicn vm" id="authicon25849973" - src="static/image/common/icon_member.gif" /> - <em id="authorposton25849973"> - 发表于 - <span title="2022-5-19 01:31:34"> - 昨天 01:31 - </span> - </em> - <span class="xg1"> - 来自手机 - </span> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=viewthread&tid=1340927&page=1&authorid=4632323" - rel="nofollow"> - 只看该作者 - </a> - </div> - </div> - </div> - <div class="pct"> - <div class="pcb"> - <div class="t_fsz"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="t_f" id="postmessage_25849973"> - 1.19越来越水了,只修了一些BUG,不愧是猫酱 - <img alt="" border="0" smilieid="1443" - src="static/image/smiley/tong/....png" /> - , - </td> - </tr> - </table> - </div> - <div class="cm" id="comment_25849973"> - </div> - <div id="post_rate_div_25849973"> - </div> - </div> - </div> - </td> - </tr> - <tr> - <td class="plc plm"> - </td> - </tr> - <tr id="_postposition25849973"> - </tr> - <tr> - <td class="pls"> - </td> - <td class="plc" style="overflow:visible;"> - <div class="po hin"> - <div class="pob cl"> - <em> - <a class="fastre" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&repquote=25849973&extra=&page=1" - onclick="showWindow('reply', this.href)"> - 回复 - </a> - </em> - <p> - <a class="showmenu" href="javascript:;" id="mgc_post_25849973" - onmouseover="showMenu(this.id)"> - 使用道具 - </a> - <a href="javascript:;" - onclick="showWindow('miscreport25849973', 'misc.php?mod=report&rtype=post&rid=25849973&tid=1340927&fid=139', 'get', -1);return false;"> - 举报 - </a> - </p> - <ul class="p_pop mgcmn" id="mgc_post_25849973_menu" - style="display: none;"> - <li> - <a href="home.php?mod=magic&mid=namepost&idtype=pid&id=25849973:1340927" - id="a_namepost_25849973" - onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/namepost.small.gif" /> - 显身卡 - </a> - <li> - </li> - </li> - </ul> - <script reload="1" type="text/javascript"> - checkmgcmn('post_25849973') - </script> - </div> - </div> - </td> - </tr> - <tr class="ad"> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - </div> - <div id="post_25850038"> - <table cellpadding="0" cellspacing="0" class="plhin" id="pid25850038" - summary="pid25850038"> - <tr> - <td class="pls" rowspan="2"> - <div class="pls favatar" id="favatar25850038"> - <div class="pi"> - <div class="authi"> - <a class="xw1" href="home.php?mod=space&uid=2704445" - target="_blank"> - Wudji - </a> - </div> - </div> - <div class="p_pop blk bui card_gender_" id="userinfo25850038" - style="opacity: 0; transition: opacity 200ms ease 0s; pointer-events: none; margin-top: -11px;"> - <div class="m z"> - <div id="userinfo25850038_ma"> - </div> - </div> - <div class="i y"> - <div> - <strong> - <a class="xi2" href="home.php?mod=space&uid=2704445" - target="_blank"> - Wudji - </a> - </strong> - <em> - 当前离线 - </em> - </div> - <dl class="cl"> - <dt> - 积分 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=2704445&do=profile" - target="_blank"> - 17325 - </a> - </dd> - <dt> - 帖子 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=2704445&do=thread&type=reply&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 主题 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=2704445&do=thread&type=thread&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 精华 - </dt> - <dd> - </dd> - <dt> - <img src="template\mcbbs\image\nautilus_shell.png" - style="vertical-align:middle" /> - 贡献 - </dt> - <dd> - 份 - </dd> - <dt> - <img src="template/mcbbs/image/apple.png" - style="vertical-align:middle" /> - 爱心 - </dt> - <dd> - 心 - </dd> - <dt> - 钻石 - </dt> - <dd> - 颗 - </dd> - <dt> - 人气 - </dt> - <dd> - 点 - </dd> - <dt> - 下界之星 - </dt> - <dd> - 枚 - </dd> - <dt> - 最后登录 - </dt> - <dd> - 1970-1-1 - </dd> - <dt> - 注册时间 - </dt> - <dd> - 2019-3-30 - </dd> - </dl> - <div class="imicn"> - <a href="home.php?mod=space&uid=2704445&do=profile" - target="_blank" title="查看详细资料"> - <img alt="查看详细资料" - src="template/mcbbs/image/userinfo.gif" /> - </a> - </div> - <div id="avatarfeed"> - <span id="threadsortswait"> - </span> - </div> - </div> - </div> - <div> - <div class="avatar"> - <a class="avtm" href="home.php?mod=space&uid=2704445" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/002/70/44/45_avatar_big.jpg/middle" /> - </a> - </div> - </div> - </div> - </td> - <td class="plc"> - <div class="pi"> - <strong> - <a href="forum.php?mod=redirect&goto=findpost&ptid=1340927&pid=25850038" - id="postnum25850038" - onclick="setCopy(this.href, '帖子地址复制成功');return false;"> - <em> - 10 - </em> - <sup> - # - </sup> - </a> - </strong> - <div class="pti"> - <div class="pdbt"> - </div> - <div class="authi"> - <img class="authicn vm" id="authicon25850038" - src="static/image/common/icon_skeleton.png" /> - <em id="authorposton25850038"> - 发表于 - <span title="2022-5-19 01:54:58"> - 昨天 01:54 - </span> - </em> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=viewthread&tid=1340927&page=1&authorid=2704445" - rel="nofollow"> - 只看该作者 - </a> - </div> - </div> - </div> - <div class="pct"> - <div class="pcb"> - <div class="t_fsz"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="t_f" id="postmessage_25850038"> - 1.17的升级版(指新特性量 - </td> - </tr> - </table> - </div> - <div class="cm" id="comment_25850038"> - </div> - <div id="post_rate_div_25850038"> - </div> - </div> - </div> - </td> - </tr> - <tr> - <td class="plc plm"> - </td> - </tr> - <tr id="_postposition25850038"> - </tr> - <tr> - <td class="pls"> - </td> - <td class="plc" style="overflow:visible;"> - <div class="po hin"> - <div class="pob cl"> - <em> - <a class="fastre" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&repquote=25850038&extra=&page=1" - onclick="showWindow('reply', this.href)"> - 回复 - </a> - </em> - <p> - <a class="showmenu" href="javascript:;" id="mgc_post_25850038" - onmouseover="showMenu(this.id)"> - 使用道具 - </a> - <a href="javascript:;" - onclick="showWindow('miscreport25850038', 'misc.php?mod=report&rtype=post&rid=25850038&tid=1340927&fid=139', 'get', -1);return false;"> - 举报 - </a> - </p> - <ul class="p_pop mgcmn" id="mgc_post_25850038_menu" - style="display: none;"> - <li> - <a href="home.php?mod=magic&mid=namepost&idtype=pid&id=25850038:1340927" - id="a_namepost_25850038" - onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/namepost.small.gif" /> - 显身卡 - </a> - <li> - </li> - </li> - </ul> - <script reload="1" type="text/javascript"> - checkmgcmn('post_25850038') - </script> - </div> - </div> - </td> - </tr> - <tr class="ad"> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - </div> - <div id="post_25850511"> - <table cellpadding="0" cellspacing="0" class="plhin" id="pid25850511" - summary="pid25850511"> - <tr> - <td class="pls" rowspan="2"> - <div class="pls favatar" id="favatar25850511"> - <div class="pi"> - <div class="authi"> - <a class="xw1" href="home.php?mod=space&uid=636673" - target="_blank"> - 117779284 - </a> - </div> - </div> - <div class="p_pop blk bui card_gender_" id="userinfo25850511" - style="opacity: 0; transition: opacity 200ms ease 0s; pointer-events: none; margin-top: -11px;"> - <div class="m z"> - <div id="userinfo25850511_ma"> - </div> - </div> - <div class="i y"> - <div> - <strong> - <a class="xi2" href="home.php?mod=space&uid=636673" - target="_blank"> - 117779284 - </a> - </strong> - <em> - 当前离线 - </em> - </div> - <dl class="cl"> - <dt> - 积分 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=636673&do=profile" - target="_blank"> - 7122 - </a> - </dd> - <dt> - 帖子 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=636673&do=thread&type=reply&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 主题 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=636673&do=thread&type=thread&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 精华 - </dt> - <dd> - </dd> - <dt> - <img src="template\mcbbs\image\nautilus_shell.png" - style="vertical-align:middle" /> - 贡献 - </dt> - <dd> - 份 - </dd> - <dt> - <img src="template/mcbbs/image/apple.png" - style="vertical-align:middle" /> - 爱心 - </dt> - <dd> - 心 - </dd> - <dt> - 钻石 - </dt> - <dd> - 颗 - </dd> - <dt> - 人气 - </dt> - <dd> - 点 - </dd> - <dt> - 下界之星 - </dt> - <dd> - 枚 - </dd> - <dt> - 最后登录 - </dt> - <dd> - 1970-1-1 - </dd> - <dt> - 注册时间 - </dt> - <dd> - 2014-4-28 - </dd> - </dl> - <div class="imicn"> - <a href="home.php?mod=space&uid=636673&do=profile" - target="_blank" title="查看详细资料"> - <img alt="查看详细资料" - src="template/mcbbs/image/userinfo.gif" /> - </a> - </div> - <div id="avatarfeed"> - <span id="threadsortswait"> - </span> - </div> - </div> - </div> - <div> - <div class="avatar"> - <a class="avtm" href="home.php?mod=space&uid=636673" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/000/63/66/73_avatar_big.jpg/middle" /> - </a> - </div> - </div> - </div> - </td> - <td class="plc"> - <div class="pi"> - <strong> - <a href="forum.php?mod=redirect&goto=findpost&ptid=1340927&pid=25850511" - id="postnum25850511" - onclick="setCopy(this.href, '帖子地址复制成功');return false;"> - <em> - 11 - </em> - <sup> - # - </sup> - </a> - </strong> - <div class="pti"> - <div class="pdbt"> - </div> - <div class="authi"> - <img class="authicn vm" id="authicon25850511" - src="static/image/common/icon_zombie_pigman.png" /> - <em id="authorposton25850511"> - 发表于 - <span title="2022-5-19 06:10:52"> - 昨天 06:10 - </span> - </em> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=viewthread&tid=1340927&page=1&authorid=636673" - rel="nofollow"> - 只看该作者 - </a> - </div> - </div> - </div> - <div class="pct"> - <div class="pcb"> - <div class="t_fsz"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="t_f" id="postmessage_25850511"> - <img alt="" border="0" smilieid="696" - src="static/image/smiley/rabbit/46.gif" /> - MOD应该停留在1.18或者1.16 - </td> - </tr> - </table> - </div> - <div class="cm" id="comment_25850511"> - </div> - <div id="post_rate_div_25850511"> - </div> - </div> - </div> - </td> - </tr> - <tr> - <td class="plc plm"> - </td> - </tr> - <tr id="_postposition25850511"> - </tr> - <tr> - <td class="pls"> - </td> - <td class="plc" style="overflow:visible;"> - <div class="po hin"> - <div class="pob cl"> - <em> - <a class="fastre" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&repquote=25850511&extra=&page=1" - onclick="showWindow('reply', this.href)"> - 回复 - </a> - </em> - <p> - <a class="showmenu" href="javascript:;" id="mgc_post_25850511" - onmouseover="showMenu(this.id)"> - 使用道具 - </a> - <a href="javascript:;" - onclick="showWindow('miscreport25850511', 'misc.php?mod=report&rtype=post&rid=25850511&tid=1340927&fid=139', 'get', -1);return false;"> - 举报 - </a> - </p> - <ul class="p_pop mgcmn" id="mgc_post_25850511_menu" - style="display: none;"> - <li> - <a href="home.php?mod=magic&mid=namepost&idtype=pid&id=25850511:1340927" - id="a_namepost_25850511" - onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/namepost.small.gif" /> - 显身卡 - </a> - <li> - </li> - </li> - </ul> - <script reload="1" type="text/javascript"> - checkmgcmn('post_25850511') - </script> - </div> - </div> - </td> - </tr> - <tr class="ad"> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - </div> - <div id="post_25850926"> - <table cellpadding="0" cellspacing="0" class="plhin" id="pid25850926" - summary="pid25850926"> - <tr> - <td class="pls" rowspan="2"> - <div class="pls favatar" id="favatar25850926"> - <div class="pi"> - <div class="authi"> - <a class="xw1" href="home.php?mod=space&uid=4786293" - target="_blank"> - miller8887090 - </a> - </div> - </div> - <div class="p_pop blk bui card_gender_" id="userinfo25850926" - style="opacity: 0; transition: opacity 200ms ease 0s; pointer-events: none; margin-top: -11px;"> - <div class="m z"> - <div id="userinfo25850926_ma"> - </div> - </div> - <div class="i y"> - <div> - <strong> - <a class="xi2" href="home.php?mod=space&uid=4786293" - target="_blank"> - miller8887090 - </a> - </strong> - <em> - 当前离线 - </em> - </div> - <dl class="cl"> - <dt> - 积分 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=4786293&do=profile" - target="_blank"> - 155 - </a> - </dd> - <dt> - 帖子 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=4786293&do=thread&type=reply&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 主题 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=4786293&do=thread&type=thread&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 精华 - </dt> - <dd> - </dd> - <dt> - <img src="template\mcbbs\image\nautilus_shell.png" - style="vertical-align:middle" /> - 贡献 - </dt> - <dd> - 份 - </dd> - <dt> - <img src="template/mcbbs/image/apple.png" - style="vertical-align:middle" /> - 爱心 - </dt> - <dd> - 心 - </dd> - <dt> - 钻石 - </dt> - <dd> - 颗 - </dd> - <dt> - 人气 - </dt> - <dd> - 点 - </dd> - <dt> - 下界之星 - </dt> - <dd> - 枚 - </dd> - <dt> - 最后登录 - </dt> - <dd> - 1970-1-1 - </dd> - <dt> - 注册时间 - </dt> - <dd> - 2022-4-22 - </dd> - </dl> - <div class="imicn"> - <a href="home.php?mod=space&uid=4786293&do=profile" - target="_blank" title="查看详细资料"> - <img alt="查看详细资料" - src="template/mcbbs/image/userinfo.gif" /> - </a> - </div> - <div id="avatarfeed"> - <span id="threadsortswait"> - </span> - </div> - </div> - </div> - <div> - <div class="avatar"> - <a class="avtm" href="home.php?mod=space&uid=4786293" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/004/78/62/93_avatar_big.jpg/middle" /> - </a> - </div> - </div> - </div> - </td> - <td class="plc"> - <div class="pi"> - <strong> - <a href="forum.php?mod=redirect&goto=findpost&ptid=1340927&pid=25850926" - id="postnum25850926" - onclick="setCopy(this.href, '帖子地址复制成功');return false;"> - <em> - 12 - </em> - <sup> - # - </sup> - </a> - </strong> - <div class="pti"> - <div class="pdbt"> - </div> - <div class="authi"> - <img class="authicn vm" id="authicon25850926" - src="static/image/common/icon_member.gif" /> - <em id="authorposton25850926"> - 发表于 - <span title="2022-5-19 07:55:14"> - 昨天 07:55 - </span> - </em> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=viewthread&tid=1340927&page=1&authorid=4786293" - rel="nofollow"> - 只看该作者 - </a> - </div> - </div> - </div> - <div class="pct"> - <div class="pcb"> - <div class="t_fsz"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="t_f" id="postmessage_25850926"> - 总结:考古1.20吧 - <img alt="" border="0" smilieid="1469" - src="static/image/smiley/tong/XDPB.png" /> - </td> - </tr> - </table> - </div> - <div class="cm" id="comment_25850926"> - </div> - <div id="post_rate_div_25850926"> - </div> - </div> - </div> - </td> - </tr> - <tr> - <td class="plc plm"> - </td> - </tr> - <tr id="_postposition25850926"> - </tr> - <tr> - <td class="pls"> - </td> - <td class="plc" style="overflow:visible;"> - <div class="po hin"> - <div class="pob cl"> - <em> - <a class="fastre" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&repquote=25850926&extra=&page=1" - onclick="showWindow('reply', this.href)"> - 回复 - </a> - </em> - <p> - <a class="showmenu" href="javascript:;" id="mgc_post_25850926" - onmouseover="showMenu(this.id)"> - 使用道具 - </a> - <a href="javascript:;" - onclick="showWindow('miscreport25850926', 'misc.php?mod=report&rtype=post&rid=25850926&tid=1340927&fid=139', 'get', -1);return false;"> - 举报 - </a> - </p> - <ul class="p_pop mgcmn" id="mgc_post_25850926_menu" - style="display: none;"> - <li> - <a href="home.php?mod=magic&mid=namepost&idtype=pid&id=25850926:1340927" - id="a_namepost_25850926" - onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/namepost.small.gif" /> - 显身卡 - </a> - <li> - </li> - </li> - </ul> - <script reload="1" type="text/javascript"> - checkmgcmn('post_25850926') - </script> - </div> - </div> - </td> - </tr> - <tr class="ad"> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - </div> - <div id="post_25850946"> - <table cellpadding="0" cellspacing="0" class="plhin" id="pid25850946" - summary="pid25850946"> - <tr> - <td class="pls" rowspan="2"> - <div class="pls favatar" id="favatar25850946"> - <div class="pi"> - <div class="authi"> - <a class="xw1" href="home.php?mod=space&uid=2850068" - target="_blank"> - mztnql9gz - </a> - </div> - </div> - <div class="p_pop blk bui card_gender_" id="userinfo25850946" - style="opacity: 0; transition: opacity 200ms ease 0s; pointer-events: none; margin-top: -11px;"> - <div class="m z"> - <div id="userinfo25850946_ma"> - </div> - </div> - <div class="i y"> - <div> - <strong> - <a class="xi2" href="home.php?mod=space&uid=2850068" - target="_blank"> - mztnql9gz - </a> - </strong> - <em> - 当前离线 - </em> - </div> - <dl class="cl"> - <dt> - 积分 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=2850068&do=profile" - target="_blank"> - 1652 - </a> - </dd> - <dt> - 帖子 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=2850068&do=thread&type=reply&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 主题 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=2850068&do=thread&type=thread&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 精华 - </dt> - <dd> - </dd> - <dt> - <img src="template\mcbbs\image\nautilus_shell.png" - style="vertical-align:middle" /> - 贡献 - </dt> - <dd> - 份 - </dd> - <dt> - <img src="template/mcbbs/image/apple.png" - style="vertical-align:middle" /> - 爱心 - </dt> - <dd> - 心 - </dd> - <dt> - 钻石 - </dt> - <dd> - 颗 - </dd> - <dt> - 人气 - </dt> - <dd> - 点 - </dd> - <dt> - 下界之星 - </dt> - <dd> - 枚 - </dd> - <dt> - 最后登录 - </dt> - <dd> - 1970-1-1 - </dd> - <dt> - 注册时间 - </dt> - <dd> - 2019-8-16 - </dd> - </dl> - <div class="imicn"> - <a href="home.php?mod=space&uid=2850068&do=profile" - target="_blank" title="查看详细资料"> - <img alt="查看详细资料" - src="template/mcbbs/image/userinfo.gif" /> - </a> - </div> - <div id="avatarfeed"> - <span id="threadsortswait"> - </span> - </div> - </div> - </div> - <div> - <div class="avatar"> - <a class="avtm" href="home.php?mod=space&uid=2850068" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/002/85/00/68_avatar_big.jpg/middle" /> - </a> - </div> - </div> - </div> - </td> - <td class="plc"> - <div class="pi"> - <strong> - <a href="forum.php?mod=redirect&goto=findpost&ptid=1340927&pid=25850946" - id="postnum25850946" - onclick="setCopy(this.href, '帖子地址复制成功');return false;"> - <em> - 13 - </em> - <sup> - # - </sup> - </a> - </strong> - <div class="pti"> - <div class="pdbt"> - </div> - <div class="authi"> - <img class="authicn vm" id="authicon25850946" - src="static/image/common/icon_member.gif" /> - <em id="authorposton25850946"> - 发表于 - <span title="2022-5-19 07:58:05"> - 昨天 07:58 - </span> - </em> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=viewthread&tid=1340927&page=1&authorid=2850068" - rel="nofollow"> - 只看该作者 - </a> - </div> - </div> - </div> - <div class="pct"> - <div class="pcb"> - <div class="t_fsz"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="t_f" id="postmessage_25850946"> - ???就到pre了??? - </td> - </tr> - </table> - </div> - <div class="cm" id="comment_25850946"> - </div> - <div id="post_rate_div_25850946"> - </div> - </div> - </div> - </td> - </tr> - <tr> - <td class="plc plm"> - </td> - </tr> - <tr id="_postposition25850946"> - </tr> - <tr> - <td class="pls"> - </td> - <td class="plc" style="overflow:visible;"> - <div class="po hin"> - <div class="pob cl"> - <em> - <a class="fastre" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&repquote=25850946&extra=&page=1" - onclick="showWindow('reply', this.href)"> - 回复 - </a> - </em> - <p> - <a class="showmenu" href="javascript:;" id="mgc_post_25850946" - onmouseover="showMenu(this.id)"> - 使用道具 - </a> - <a href="javascript:;" - onclick="showWindow('miscreport25850946', 'misc.php?mod=report&rtype=post&rid=25850946&tid=1340927&fid=139', 'get', -1);return false;"> - 举报 - </a> - </p> - <ul class="p_pop mgcmn" id="mgc_post_25850946_menu" - style="display: none;"> - <li> - <a href="home.php?mod=magic&mid=namepost&idtype=pid&id=25850946:1340927" - id="a_namepost_25850946" - onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/namepost.small.gif" /> - 显身卡 - </a> - <li> - </li> - </li> - </ul> - <script reload="1" type="text/javascript"> - checkmgcmn('post_25850946') - </script> - </div> - </div> - </td> - </tr> - <tr class="ad"> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - </div> - <div id="post_25851303"> - <table cellpadding="0" cellspacing="0" class="plhin" id="pid25851303" - summary="pid25851303"> - <tr> - <td class="pls" rowspan="2"> - <div class="pls favatar" id="favatar25851303"> - <div class="pi"> - <div class="authi"> - <a class="xw1" href="home.php?mod=space&uid=2536988" - target="_blank"> - LSDog - </a> - </div> - </div> - <div class="p_pop blk bui card_gender_" id="userinfo25851303" - style="opacity: 0; transition: opacity 200ms ease 0s; pointer-events: none; margin-top: -11px;"> - <div class="m z"> - <div id="userinfo25851303_ma"> - </div> - </div> - <div class="i y"> - <div> - <strong> - <a class="xi2" href="home.php?mod=space&uid=2536988" - target="_blank"> - LSDog - </a> - </strong> - <em> - 当前离线 - </em> - </div> - <dl class="cl"> - <dt> - 积分 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=2536988&do=profile" - target="_blank"> - 1224 - </a> - </dd> - <dt> - 帖子 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=2536988&do=thread&type=reply&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 主题 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=2536988&do=thread&type=thread&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 精华 - </dt> - <dd> - </dd> - <dt> - <img src="template\mcbbs\image\nautilus_shell.png" - style="vertical-align:middle" /> - 贡献 - </dt> - <dd> - 份 - </dd> - <dt> - <img src="template/mcbbs/image/apple.png" - style="vertical-align:middle" /> - 爱心 - </dt> - <dd> - 心 - </dd> - <dt> - 钻石 - </dt> - <dd> - 颗 - </dd> - <dt> - 人气 - </dt> - <dd> - 点 - </dd> - <dt> - 下界之星 - </dt> - <dd> - 枚 - </dd> - <dt> - 最后登录 - </dt> - <dd> - 1970-1-1 - </dd> - <dt> - 注册时间 - </dt> - <dd> - 2018-6-30 - </dd> - </dl> - <div class="imicn"> - <a href="home.php?mod=space&uid=2536988&do=profile" - target="_blank" title="查看详细资料"> - <img alt="查看详细资料" - src="template/mcbbs/image/userinfo.gif" /> - </a> - </div> - <div id="avatarfeed"> - <span id="threadsortswait"> - </span> - </div> - </div> - </div> - <div> - <div class="avatar"> - <a class="avtm" href="home.php?mod=space&uid=2536988" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/002/53/69/88_avatar_big.jpg/middle" /> - </a> - </div> - </div> - </div> - </td> - <td class="plc"> - <div class="pi"> - <strong> - <a href="forum.php?mod=redirect&goto=findpost&ptid=1340927&pid=25851303" - id="postnum25851303" - onclick="setCopy(this.href, '帖子地址复制成功');return false;"> - <em> - 14 - </em> - <sup> - # - </sup> - </a> - </strong> - <div class="pti"> - <div class="pdbt"> - </div> - <div class="authi"> - <img class="authicn vm" id="authicon25851303" - src="static/image/common/icon_member.gif" /> - <em id="authorposton25851303"> - 发表于 - <span title="2022-5-19 08:28:37"> - 昨天 08:28 - </span> - </em> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=viewthread&tid=1340927&page=1&authorid=2536988" - rel="nofollow"> - 只看该作者 - </a> - </div> - </div> - </div> - <div class="pct"> - <div class="pcb"> - <div class="t_fsz"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="t_f" id="postmessage_25851303"> - 我考古呢 - <img alt="" border="0" smilieid="693" - src="static/image/smiley/rabbit/43.gif" /> - </td> - </tr> - </table> - </div> - <div class="cm" id="comment_25851303"> - </div> - <div id="post_rate_div_25851303"> - </div> - </div> - </div> - </td> - </tr> - <tr> - <td class="plc plm"> - </td> - </tr> - <tr id="_postposition25851303"> - </tr> - <tr> - <td class="pls"> - </td> - <td class="plc" style="overflow:visible;"> - <div class="po hin"> - <div class="pob cl"> - <em> - <a class="fastre" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&repquote=25851303&extra=&page=1" - onclick="showWindow('reply', this.href)"> - 回复 - </a> - </em> - <p> - <a class="showmenu" href="javascript:;" id="mgc_post_25851303" - onmouseover="showMenu(this.id)"> - 使用道具 - </a> - <a href="javascript:;" - onclick="showWindow('miscreport25851303', 'misc.php?mod=report&rtype=post&rid=25851303&tid=1340927&fid=139', 'get', -1);return false;"> - 举报 - </a> - </p> - <ul class="p_pop mgcmn" id="mgc_post_25851303_menu" - style="display: none;"> - <li> - <a href="home.php?mod=magic&mid=namepost&idtype=pid&id=25851303:1340927" - id="a_namepost_25851303" - onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/namepost.small.gif" /> - 显身卡 - </a> - <li> - </li> - </li> - </ul> - <script reload="1" type="text/javascript"> - checkmgcmn('post_25851303') - </script> - </div> - </div> - </td> - </tr> - <tr class="ad"> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - </div> - <div id="post_25851360"> - <table cellpadding="0" cellspacing="0" class="plhin" id="pid25851360" - summary="pid25851360"> - <tr> - <td class="pls" rowspan="2"> - <div class="pls favatar" id="favatar25851360"> - <div class="pi"> - <div class="authi"> - <a class="xw1" href="home.php?mod=space&uid=1513265" - target="_blank"> - xiao_qi_zi - </a> - </div> - </div> - <div class="p_pop blk bui card_gender_" id="userinfo25851360" - style="opacity: 0; transition: opacity 200ms ease 0s; pointer-events: none; margin-top: -11px;"> - <div class="m z"> - <div id="userinfo25851360_ma"> - </div> - </div> - <div class="i y"> - <div> - <strong> - <a class="xi2" href="home.php?mod=space&uid=1513265" - target="_blank"> - xiao_qi_zi - </a> - </strong> - <em> - 当前离线 - </em> - </div> - <dl class="cl"> - <dt> - 积分 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=1513265&do=profile" - target="_blank"> - 1374 - </a> - </dd> - <dt> - 帖子 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=1513265&do=thread&type=reply&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 主题 - </dt> - <dd> - <a class="xi2" - href="home.php?mod=space&uid=1513265&do=thread&type=thread&view=me&from=space" - target="_blank"> - </a> - </dd> - <dt> - 精华 - </dt> - <dd> - </dd> - <dt> - <img src="template\mcbbs\image\nautilus_shell.png" - style="vertical-align:middle" /> - 贡献 - </dt> - <dd> - 份 - </dd> - <dt> - <img src="template/mcbbs/image/apple.png" - style="vertical-align:middle" /> - 爱心 - </dt> - <dd> - 心 - </dd> - <dt> - 钻石 - </dt> - <dd> - 颗 - </dd> - <dt> - 人气 - </dt> - <dd> - 点 - </dd> - <dt> - 下界之星 - </dt> - <dd> - 枚 - </dd> - <dt> - 最后登录 - </dt> - <dd> - 1970-1-1 - </dd> - <dt> - 注册时间 - </dt> - <dd> - 2015-9-17 - </dd> - </dl> - <div class="imicn"> - <a href="home.php?mod=space&uid=1513265&do=profile" - target="_blank" title="查看详细资料"> - <img alt="查看详细资料" - src="template/mcbbs/image/userinfo.gif" /> - </a> - </div> - <div id="avatarfeed"> - <span id="threadsortswait"> - </span> - </div> - </div> - </div> - <div> - <div class="avatar"> - <a class="avtm" href="home.php?mod=space&uid=1513265" - target="_blank"> - <img onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" - src="https://attachment.mcbbs.net/uc_server/data/avatar/001/51/32/65_avatar_big.jpg/middle" /> - </a> - </div> - </div> - </div> - </td> - <td class="plc"> - <div class="pi"> - <strong> - <a href="forum.php?mod=redirect&goto=findpost&ptid=1340927&pid=25851360" - id="postnum25851360" - onclick="setCopy(this.href, '帖子地址复制成功');return false;"> - <em> - 15 - </em> - <sup> - # - </sup> - </a> - </strong> - <div class="pti"> - <div class="pdbt"> - </div> - <div class="authi"> - <img class="authicn vm" id="authicon25851360" - src="static/image/common/icon_member.gif" /> - <em id="authorposton25851360"> - 发表于 - <span title="2022-5-19 08:36:40"> - 昨天 08:36 - </span> - </em> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=viewthread&tid=1340927&page=1&authorid=1513265" - rel="nofollow"> - 只看该作者 - </a> - </div> - </div> - </div> - <div class="pct"> - <div class="pcb"> - <div class="t_fsz"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="t_f" id="postmessage_25851360"> - 就原本1.17 拆成3个版本,多了红树林 - </td> - </tr> - </table> - </div> - <div class="cm" id="comment_25851360"> - </div> - <div id="post_rate_div_25851360"> - </div> - </div> - </div> - </td> - </tr> - <tr> - <td class="plc plm"> - </td> - </tr> - <tr id="_postposition25851360"> - </tr> - <tr> - <td class="pls"> - </td> - <td class="plc" style="overflow:visible;"> - <div class="po hin"> - <div class="pob cl"> - <em> - <a class="fastre" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&repquote=25851360&extra=&page=1" - onclick="showWindow('reply', this.href)"> - 回复 - </a> - </em> - <p> - <a class="showmenu" href="javascript:;" id="mgc_post_25851360" - onmouseover="showMenu(this.id)"> - 使用道具 - </a> - <a href="javascript:;" - onclick="showWindow('miscreport25851360', 'misc.php?mod=report&rtype=post&rid=25851360&tid=1340927&fid=139', 'get', -1);return false;"> - 举报 - </a> - </p> - <ul class="p_pop mgcmn" id="mgc_post_25851360_menu" - style="display: none;"> - <li> - <a href="home.php?mod=magic&mid=namepost&idtype=pid&id=25851360:1340927" - id="a_namepost_25851360" - onclick="showWindow(this.id, this.href)"> - <img src="static/image/magic/namepost.small.gif" /> - 显身卡 - </a> - <li> - </li> - </li> - </ul> - <script reload="1" type="text/javascript"> - checkmgcmn('post_25851360') - </script> - </div> - </div> - </td> - </tr> - <tr class="ad"> - <td class="pls"> - </td> - <td class="plc"> - </td> - </tr> - </table> - </div> - <div class="pl" id="postlistreply"> - <div class="viewthread_table" id="post_new" style="display: none"> - </div> - </div> - </div> - <form autocomplete="off" id="modactions" method="post" name="modactions"> - <input name="formhash" type="hidden" value="c4628403"> - <input name="optgroup" type="hidden" /> - <input name="operation" type="hidden" /> - <input name="listextra" type="hidden" value="" /> - <input name="page" type="hidden" value="1" /> - </input> - </form> - <div class="pgbtn"> - <a class="bm_h" hidefocus="true" href="thread-1340927-2-1.html"> - 下一页 » - </a> - </div> - <div class="pgs mtm mbm cl"> - <div class="pg"> - <strong> - 1 - </strong> - <a href="thread-1340927-2-1.html"> - 2 - </a> - <label> - <input class="px" name="custompage" - onkeydown="if(event.keyCode==13) {window.location='forum.php?mod=viewthread&tid=1340927&extra=&page='+this.value;; doane(event);}" - size="2" title="输入页码,按回车快速跳转" type="text" value="1" /> - <span title="共 2 页"> - / 2 页 - </span> - </label> - <a class="nxt" href="thread-1340927-2-1.html"> - 下一页 - </a> - </div> - <span class="pgb y" id="visitedforumstmp" - onmouseover="$('visitedforums').id = 'visitedforumstmp';this.id = 'visitedforums';showMenu({'ctrlid':thi s.id,'pos':'21'})"> - <a href="forum-news-1.html"> - 返回列表 - </a> - </span> - <!--<a id="newspecialtmp" onmouseover="$('newspecial').id = 'newspecialtmp';this.id = 'newspecial';showMenu({'ctrlid':this.id})" onclick="showWindow('newthread', 'forum.php?mod=post&action=newthread&fid=139')" href="javascript:;" title="发新帖"><img src="template/mcbbs/image/pn_post.png" alt="发新帖" /></a>--> - <a href="javascript:;" id="" - onclick="showWindow('reply', 'forum.php?mod=post&action=reply&fid=139&tid=1340927')" - title="回复"> - <img alt="回复" src="template/mcbbs/image/pn_reply.png" /> - </a> - </div> - <!--[diy=diyfastposttop]--> - <div class="area" id="diyfastposttop"> - </div> - <!--[/diy]--> - <script type="text/javascript"> - var postminchars = parseInt('10'); - var postmaxchars = parseInt('1000000'); - var disablepostctrl = parseInt('0'); - </script> - <div class="pl bm bmw" id="f_pst"> - <form - action="forum.php?mod=post&action=reply&fid=139&tid=1340927&extra=&replysubmit=yes&infloat=yes&handlekey=fastpost" - autocomplete="off" id="fastpostform" method="post" - onsubmit="return fastpostvalidate(this)"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td class="pls"> - </td> - <td class="plc"> - <span id="fastpostreturn"> - </span> - <div class="cl"> - <div id="fastposteditor"> - <div class="tedt mtn"> - <div class="bar"> - <span class="y"> - <a href="forum.php?mod=post&action=reply&fid=139&tid=1340927" - onclick="return switchAdvanceMode(this.href)"> - 高级模式 - </a> - </span> - <script src="data/cache/seditor.js?T77" - type="text/javascript"> - </script> - <div class="fpd"> - <a class="fbld" href="javascript:;" title="文字加粗"> - B - </a> - <a class="fclr" href="javascript:;" - id="fastpostforecolor" title="设置文字颜色"> - Color - </a> - <a class="fmg" href="javascript:;" id="fastpostimg" - title="图片"> - Image - </a> - <a class="flnk" href="javascript:;" id="fastposturl" - title="添加链接"> - Link - </a> - <a class="fqt" href="javascript:;" id="fastpostquote" - title="引用"> - Quote - </a> - <a class="fcd" href="javascript:;" id="fastpostcode" - title="代码"> - Code - </a> - <a class="fsml" href="javascript:;" id="fastpostsml"> - Smilies - </a> - </div> - </div> - <div class="area"> - <div class="pt hm"> - 您需要登录后才可以回帖 - <a class="xi2" - href="member.php?mod=logging&action=login" - onclick="showWindow('login', this.href)"> - 登录 - </a> - | - <a class="xi2" href="member.php?mod=register"> - 注册(register) - </a> - </div> - </div> - </div> - </div> - </div> - <div id="seccheck_fastpost"> - </div> - <input name="formhash" type="hidden" value="c4628403" /> - <input name="usesig" type="hidden" value="" /> - <input name="subject" type="hidden" value=" " /> - <p class="ptm pnpost"> - <a class="y" - href="home.php?mod=spacecp&ac=credit&op=rule&fid=139" - target="_blank"> - 本版积分规则 - </a> - <button class="pn pnc vm" id="fastpostsubmit" name="replysubmit" - onclick="showWindow('login', 'member.php?mod=logging&action=login&guestmessage=yes')" - onmouseover="checkpostrule('seccheck_fastpost', 'ac=reply');this.onmouseover=null" - tabindex="5" type="button" value="replysubmit"> - <strong> - 发表回复 - </strong> - </button> - <label for="fastpostrefresh"> - <input class="pc" id="fastpostrefresh" type="checkbox" /> - 回帖后跳转到最后一页 - </label> - <script type="text/javascript"> - if (getcookie('fastpostrefresh') == 1) { $('fastpostrefresh').checked = true; } - </script> - </p> - </td> - </tr> - </table> - </form> - </div> - <div class="p_pop blk cl" id="visitedforums_menu" style="display: none;"> - <table cellpadding="0" cellspacing="0"> - <tr> - <td id="v_forums"> - <h3 class="mbn pbn bbda xg1"> - 浏览过的版块 - </h3> - <ul class="xl xl1"> - <li> - <a href="forum-modpack-1.html"> - 整合包发布 - </a> - </li> - <li> - <a href="forum-map-1.html"> - 展示&共享 - </a> - </li> - <li> - <a href="forum-mapcarry-1.html"> - 搬运&鉴赏 - </a> - </li> - <li> - <a href="forum-datapack-1.html"> - 数据包 - </a> - </li> - <li> - <a href="forum-mapchat-1.html"> - 匠人酒馆 - </a> - </li> - <li> - <a href="forum-pemap-1.html"> - 基岩版地图作品 - </a> - </li> - <li> - <a href="forum-serverpack-1.html"> - 服务端整合包 - </a> - </li> - <li> - <a href="forum-server-1.html"> - 服务器 - </a> - </li> - <li> - <a href="forum-announcement-1.html"> - 公告和反馈 - </a> - </li> - </ul> - </td> - </tr> - </table> - </div> - <script type="text/javascript"> - new lazyload(); - </script> - <script type="text/javascript"> - document.onkeyup = function (e) { keyPageScroll(e, 0, 1, 'forum.php?mod=viewthread&tid=1340927', 1); } - </script> - </div> - <div class="wp mtn"> - <!--[diy=diy3]--> - <div class="area" id="diy3"> - </div> - <!--[/diy]--> - </div> - <script type="text/javascript"> - function succeedhandle_followmod(url, msg, values) { - var fObj = $('followmod_' + values['fuid']); - if (values['type'] == 'add') { - fObj.innerHTML = '不收听'; - fObj.href = 'home.php?mod=spacecp&ac=follow&op=del&fuid=' + values['fuid']; - } else if (values['type'] == 'del') { - fObj.innerHTML = '收听TA'; - fObj.href = 'home.php?mod=spacecp&ac=follow&op=add&hash=1de209cd&fuid=' + values['fuid']; - } - } - </script> - </div> - <script src="https://push-static.dbankcdn.com/hms-messaging.js" type="text/javascript"> - </script> - <script> - //Your web app's hms configuration - var hmsConfig = { - "apiKey": "gCuPASMJwji2N0Y4B7m2fOlPpXCGEgnBBQyeNs_g", - "projectId": "736430079244919664", - "appId": "322385623857115433", - "countryCode": "CN" - }; - - //Initialize Hms - hms.initializeApp(hmsConfig); - - const messaging = hms.messaging(); - messaging.usePublicVapidKey( - "BCuGAGsI9Dl1Zb1T56kZf3duInCznNWaD8QdVBi1uPcAmr0NsUU9ia0Lr37k-chBVf86UXQP9sqZRTDPTZmsZD8"); - var tkv = ''; - function getTk() { - return messaging.getToken().then((currentToken) => { - if (currentToken) { - console.log('getToken succ: ', currentToken); - tkv = currentToken; - setcookie('webpush_token', tkv) - ajaxget('plugin.php?id=zhaisoul_huawei_push:push') - return currentToken - // alert('getToken Success.'); - } else { - console.log('拿不到token'); - } - }).catch((err) => { - console.log(err.message); - }); - } - - navigator.serviceWorker.register("hms-messaging-sw.js", { - scope: "./hms-cloud-messaging-push-scope" - }).then((registration) => { - messaging.useServiceWorker(registration); - }) - - messaging.setBackgroundMessageHandler(function (payload) { - console.log('[hms-messaging-sw.js] Received background message.', payload); - // 自定义通知栏 - const notificationTitle = 'Background Message Title'; - const notificationOptions = { - body: 'Background Message body.', - icon: '/hms-logo.png' - }; - - return self.registration.showNotification(notificationTitle, notificationOptions); - }); - - messaging.onMessage((payload) => { - console.log('Message received. ', payload); - //... - }); - </script> - <script> - window.Notification.requestPermission(function (permission) { // 没有权限发起请求 - if (!getcookie('webpush_token')) { - getTk() - } - console.log(permission) - }); - </script> - <script> - if (document.querySelector(".album_wrapper[initiated='false']")) { initAlbum() } - </script> - <style> - .album_wrapper[initiated="false"] { - visibility: hidden - } - </style> - <script src="source/plugin/safe_center/template/js/md5.min.js?T77" type="text/javascript"> - </script> - <script> - function fc1de209cd() { NotificationGet.load().then(function (b) { b.get().then(function (a) { a = a.visitorId; setcookie("last_message_key", md5(a + "fc1de209cd")); setcookie("last_formhash", md5("fc1de209cd")); ajaxget("https://www.mcbbs.net/plugin.php?id=dc_signin:check&formhash=c4628403&key=" + a) }) }) }; - </script> - <script onload="fc1de209cd();" src="source/plugin/safe_center/template/js/fp.min.js?T77" - type="text/javascript"> - </script> - <script type="text/javascript"> - </script> - <script> - (function () { - - var src = (document.location.protocol == "http:") ? "http://js.passport.qihucdn.com/11.0.1.js?cab42a0e12c257cb6bef445f6481198c" : "https://jspassport.ssl.qhimg.com/11.0.1.js?cab42a0e12c257cb6bef445f6481198c"; - - document.write('<script src="' + src + '" id="sozz"><\/script>'); - - })(); - </script> - <script> - (function () { - - var bp = document.createElement('script'); - - var curProtocol = window.location.protocol.split(':')[0]; - - if (curProtocol === 'https') { - - bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; - - } - - else { - - bp.src = 'http://push.zhanzhang.baidu.com/push.js'; - - } - - var s = document.getElementsByTagName("script")[0]; - - s.parentNode.insertBefore(bp, s); - - })(); - </script> - <!--框背景的底部--> - </div> - </div> - <div class="mc_map_border_foot"> - </div> - </div> - <!--整个主体div结束--> - <style type="text/css"> - #ft { - padding: 10px 0 20px; - line-height: 1.8; - color: #fff; - border: none; - font-size: 14px; - } - - #ft a { - color: #fff; - font-size: 14px; - } - - #scrolltop { - border: none; - background: none; - bottom: 160px; - } - - #scrolltop .scrolltopa { - background: url("template/mcbbs/image/scrollTo.png") left top no-repeat; - width: 71px; - height: 54px; - border: none; - } - - #scrolltop .templateNew { - background: url("template/mcbbs/image/newTemplate.png") left top no-repeat; - width: 119px; - height: 54px; - border: none; - } - </style> - <script type="text/javascript"> - jq(function () { - var window_h = jq(window).height(); - jq(".mc_map_wp").css("minHeight", window_h - 284 + "px"); - }); - </script> - <div - style="width:100%;margin-top:-20px;background:url('template/mcbbs/image/bedrock.png') 0 0 repeat;padding-top:50px;"> - <div class="wp cl" id="ft"> - <div class="y" id="flk"> - <p> - <a href="archiver/"> - Archiver - </a> - <span class="pipe"> - | - </span> - <a href="forum.php?mod=misc&action=showdarkroom"> - 小黑屋 - </a> - <span class="pipe"> - | - </span> - <strong> - <a href="https://www.mcbbs.net" target="_blank"> - Mcbbs.net - </a> - </strong> - ( - <a href="https://beian.miit.gov.cn" target="_blank"> - 京ICP备15023768号-1 - </a> - ) | - <a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010502037624" - style="display:inline-block;text-decoration:none;height:20px;line-height:20px;" target="_blank"> - <img - src="https://attachment.mcbbs.net/data/myattachment/forum/201904/18/174618efzrjz22n825mfds.png" /> - 京公网安备 11010502037624号 - </a> - | - <script type="text/javascript"> - var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://"); - - document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3Faffdf09dddabcdf2d681acefa474b973' type='text/javascript'%3E%3C/script%3E")); - </script> - <a href="http://www.mcbbs.net/forum.php?mobile=2"> - 手机版 - </a> - <script> - var _hmt = _hmt || []; - - (function () { - - var hm = document.createElement("script"); - - hm.src = "https://hm.baidu.com/hm.js?affdf09dddabcdf2d681acefa474b973"; - - var s = document.getElementsByTagName("script")[0]; - - s.parentNode.insertBefore(hm, s); - - })(); - </script> - </p> - <p class="xs0"> - GMT+8, 2022-5-20 00:11 - <span id="debuginfo"> - , Processed in 0.065029 second(s), Total 28, Slave 27 queries, Release: Build.2022.05.18 1107, - Gzip On, Redis On. - </span> - <script> - console.log("Release: Build.2022.05.18 1107\ndeveloper:MCBBS Team\n"); - </script> - </p> - <p> - " - <a href="https://www.minecraft.net/" target="_blank"> - Minecraft - </a> - "以及"我的世界"为美国微软公司的商标 本站与微软公司没有从属关系 - </p> - <p> - © 2010-2022 - <a href="https://www.mcbbs.net" target="_blank"> - 我的世界中文论坛 - </a> - 版权所有 本站内原创内容版权属于其原创作者,除作者或版规特别声明外未经许可不得转载 - </p> - </div> - </div> - </div> - <div id="scrolltop"> - <span style="display:none;"> - <a class="replyfast" - href="forum.php?mod=post&action=reply&fid=139&tid=1340927&extra=&page=1" - onclick="showWindow('reply', this.href)" title="快速回复"> - <b> - 快速回复 - </b> - </a> - </span> - <span hidefocus="true"> - <a class="templateNew" href="https://beta.mcbbs.net" style="padding-bottom: 30px" title="试用新模板"> - </a> - </span> - <span hidefocus="true"> - <a class="scrolltopa" onclick="jq('body,html').animate({scrollTop:0},400);" title="返回顶部"> - <b> - 返回顶部 - </b> - </a> - </span> - <span style="display:none;"> - <a class="returnlist" hidefocus="true" href="forum-news-1.html" title="返回列表"> - <b> - 返回列表 - </b> - </a> - </span> - </div> - <script type="text/javascript"> - _attachEvent(window, 'scroll', function () { showTopLink(); }); checkBlind(); - </script> - <script type="text/javascript"> - $("debuginfo") ? $("debuginfo").innerHTML = ", Updated at 2022-05-20 00:11:50, Processed in 0.001821 second(s), Gzip On." : ""; - </script> -</body> - -</html> \ No newline at end of file diff --git a/tests/platforms/static/mcbbsnews/mock/mcbbsnews_post_list_html-0.html b/tests/platforms/static/mcbbsnews/mock/mcbbsnews_post_list_html-0.html deleted file mode 100644 index 30ef423..0000000 --- a/tests/platforms/static/mcbbsnews/mock/mcbbsnews_post_list_html-0.html +++ /dev/null @@ -1,2552 +0,0 @@ -<!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="X-UA-Compatible" content="IE=edge"> - <meta name="force-rendering" content="webkit"> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title>幻翼块讯 — Minecraft(我的世界)中文论坛——Minecraft中文站,我的世界中文论坛,mcbbs论坛 - </title> - <meta name="force-rendering" content="webkit"> - <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> - <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <meta itemprop="image" content="https://www.mcbbs.net/template/mcbbs/image/logo_sc.png" /> - <script> - var _hmt = _hmt || []; - (function () { - var hm = document.createElement("script"); - hm.src = "https://hm.baidu.com/hm.js?affdf09dddabcdf2d681acefa474b973"; - var s = document.getElementsByTagName("script")[0]; - s.parentNode.insertBefore(hm, s); - })(); - </script> - <style> - .fastlg { - display: none; - } - </style> - <meta name="keywords" content="Minecraft,我的世界,我的世界新闻,我的世界合成表,我的世界资讯,我的世界最新版" /> - <meta name="description" - content="最新最快的《Minecraft》(我的世界)资讯中文社交平台,你能在这里了解到Minecraft(我的世界)最新最全的资讯。新版本增加了什么生物方块?有哪些最新的官方活动?都能在这里了解 " /> - <meta name="generator" content="Discuz! X3.5" /> - <meta name="author" content="我的世界中文论坛" /> - <meta name="copyright" content="2001-2013 Comsenz Inc." /> - <meta name="MSSmartTagsPreventParsing" content="True" /> - <meta http-equiv="MSThemeCompatible" content="Yes" /> - <base href="https://www.mcbbs.net/" /> - <link rel="manifest" href="manifest.json" /> - <link rel="stylesheet" type="text/css" href="data/cache/style_30_common.css?T77" /> - <link rel="stylesheet" type="text/css" href="data/cache/style_30_forum_forumdisplay.css?T77" /> - <link rel="stylesheet" id="css_extstyle" type="text/css" href="./template/mcbbs/style/nether/style.css" /> - <script - type="text/javascript">var STYLEID = '30', STATICURL = 'static/', IMGDIR = 'template/mcbbs/image', VERHASH = 'T77', charset = 'UTF-8', discuz_uid = '1917539', cookiepre = 'ZxYQ_8cea_', cookiedomain = '.mcbbs.net', cookiepath = '/', showusercard = '1', attackevasive = '0', disallowfloat = 'newthread|tradeorder|nav|usergroups', creditnotice = '1|人气|点,2|金粒|粒,3|金锭[已弃用]|块,4|宝石|颗,5|下界之星|枚,6|贡献|份,7|爱心|心,8|钻石|颗', defaultstyle = './template/mcbbs/style/nether', REPORTURL = 'aHR0cHM6Ly93d3cubWNiYnMubmV0L2ZvcnVtLW5ld3MtMS5odG1s', SITEURL = 'https://www.mcbbs.net/', JSPATH = 'data/cache/', CSSPATH = 'data/cache/style_', DYNAMICURL = '';</script> - <script src="data/cache/common.js?T77" type="text/javascript"></script> - <meta name="application-name" content="Minecraft(我的世界)中文论坛" /> - <meta name="msapplication-tooltip" content="Minecraft(我的世界)中文论坛" /> - <meta name="msapplication-task" - content="name=首页;action-uri=https://www.mcbbs.net/portal.php;icon-uri=https://www.mcbbs.net/template/mcbbs/image/portal.ico" /> - <meta name="msapplication-task" - content="name=论坛;action-uri=https://www.mcbbs.net/forum.php;icon-uri=https://www.mcbbs.net/template/mcbbs/image/bbs.ico" /> - <meta name="msapplication-task" - content="name=小组;action-uri=https://www.mcbbs.net/group.php;icon-uri=https://www.mcbbs.net/template/mcbbs/image/group.ico" /> - <link rel="archives" title="Minecraft(我的世界)中文论坛" href="https://www.mcbbs.net/archiver/" /> - <script src="data/cache/forum.js?T77" type="text/javascript"></script> - <!--<link rel="stylesheet" href="template/mcbbs/common/xw.css"/>--> - <script src="template/mcbbs/common/jquery.min.js" type="text/javascript"></script> - <script type="text/javascript"> - var jq = jQuery.noConflict(); - </script> - -</head> - -<body id="nv_forum" class="pg_forumdisplay" onkeydown="if(event.keyCode==27) return false;"> - <div id="body_fixed_bg"></div> - <div id="append_parent"></div> - <div id="ajaxwaitid"></div> - <div id="toptb" class="cl"> - <div class="new_wp wp"> - <div class="z light"> - <a href="https://minecraft.net" title="我的世界(国际版)官方网站" target="_blank">我的世界官网</a> <a - href="https://minecraft.fandom.com/zh/wiki/Minecraft_Wiki" title="Minecraft Wiki,设立于Fandom" - target="_blank">中文百科</a> <a href="forum-server-1.html" target="_blank" - style="font-weight: bold;">Java版服务器列表</a> <a href="forum-peserver-1.html" target="_blank" - style="font-weight: bold;">基岩版服务器列表</a> - </div> - <div class="y"> - <!--<div class="y_search"> - <form id="scbar_form" method="post" autocomplete="off" onsubmit="searchFocus($('scbar_txt'))" action="search.php?searchsubmit=yes" target="_blank"> - <input type="hidden" name="mod" id="scbar_mod" value="search" /> - <input type="hidden" name="formhash" value="3964a52c" /> - <input type="hidden" name="srchtype" value="title" /> - <input type="hidden" name="srhfid" value="139" /> - <input type="hidden" name="srhlocality" value="forum::forumdisplay" /> - <!––> - <div class="y_search_btn"><button type="submit" name="searchsubmit" id="scbar_btn" sc="1" class="pn pnc" value="true"><strong class="xi2">搜索</strong></button></div> - <div class="y_search_inp"><input type="text" name="srchtxt" id="scbar_txt" value="" placeholder="请输入搜索内容" autocomplete="off" x-webkit-speech speech title=""/></div> - - - -</form> - </div>--> - <div class="cl y_search"> - <form id="scbar_form" method="post" autocomplete="off" onsubmit="searchFocus($('scbar_txt'))" - action="search.php?searchsubmit=yes" target="_blank"> - <input type="hidden" name="mod" id="scbar_mod" value="search" /> - <input type="hidden" name="formhash" value="3964a52c" /> - <input type="hidden" name="srchtype" value="title" /> - <input type="hidden" name="srhfid" value="139" /> - <input type="hidden" name="srhlocality" value="forum::forumdisplay" /> - <table cellspacing="0" cellpadding="0"> - <tr> - <!--<td class="scbar_icon_td"></td>--> - <td class="y_search_btn"><button type="submit" name="searchsubmit" id="scbar_btn" sc="1" - class="pn pnc" value="true"><strong class="xi2">搜索</strong></button></td> - <td class="y_search_inp"><input type="text" name="srchtxt" id="scbar_txt" - value="请输入搜索内容" autocomplete="off" x-webkit-speech speech /></td> - <td class="scbar_type_td"><a href="javascript:;" id="scbar_type" class="xg1" - onclick="showMenu(this.id)" hidefocus="true" style="height: 26px">搜索</a></td> - - <!-- <td class="scbar_hot_td"> -<div id="scbar_hot"> -<!––> -</div> -</td>--> - </tr> - </table> - </form> - </div> - <ul id="scbar_type_menu" class="p_pop" style="display: none;"> - <li><a href="javascript:;" rel="curforum" fid="139">本版</a></li> - <li><a href="javascript:;" rel="forum" class="curtype">帖子</a></li> - <li><a href="javascript:;" rel="group">小组</a></li> - <li><a href="javascript:;" rel="user">用户</a></li> - </ul> - <script type="text/javascript"> - initSearchmenu('scbar', ''); - </script> - <div class="user_menu"> - <!--<a id="switchblind" href="javascript:;" onclick="toggleBlind(this)" title="开启辅助访问" class="switchblind">开启辅助访问</a>--> - </div> - <div class="user_tools"> - <a href="home.php?mod=space&do=notice" class="newtips0" id="myprompt" title="消息" - onmouseover="showMenu({'ctrlid':'myprompt'});" target="_blank"></a> - <a href="javascript:;" id="usertools" class="tools" title="功能" - onmouseover="showMenu({'ctrlid':'usertools'});"></a> - <a href="home.php?mod=space&do=friend" class="friends" title="好友" id="friends"></a> - <a id="sslct" href="javascript:;" - onmouseover="delayShow(this, function() {showMenu({'ctrlid':'sslct','pos':'34!'})});"></a> - </div> - <div class="avt y" id="user_info" onmouseover="showMenu({'ctrlid':this.id})"> - <div class="avt y hd_t_a" style="z-index:0"> - <a href="home.php?mod=space&uid=1917539"><img - src="https://attachment.mcbbs.net/uc_server/data/avatar/001/91/75/39_avatar_big.jpg/small" - onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" /></a> - </div> - </div> - </div> - </div> - </div> - - <div id="user_info_menu" style="display: none"> - <ul class="user_info_menu_info"> - <li> - <p class="username">Rukuy</p> - <span id="loginstatus"> - <a id="loginstatusid" href="member.php?mod=switchstatus" title="切换在线状态" - onclick="ajaxget(this.href, 'loginstatus');return false;" class="xi2"></a> - </span> - </li> - <li><a class="rank" href="home.php?mod=spacecp&ac=usergroup&gid=20">Lv.6 手艺人</a></li> - <li><a id="rank" href="home.php?mod=spacecp&ac=usergroup&gid=20" target="_blank"><i - class="fico-star2 fic4 fc-l" title="Rank: 6"></i><i class="fico-star2 fic4 fc-l" - title="Rank: 6"></i></a> - </li> - <li> - <p class="credit"><a href="home.php?mod=spacecp&ac=credit&showcredit=1">距离下一级还需要 314 经验值</a></p> - </li> - <li><span class="autowidth pbg2"><span class="pbr2" style="width:37%;"></span></span></li> - <li><a class="extcredits" title="金粒" href="home.php?mod=spacecp&ac=credit"><em class="gold_nugget"></em> - 447 </a> <a class="extcredits" title="绿宝石" href="home.php?mod=spacecp&ac=credit"><em - class="emerald"></em> 0 </a></li> - - </ul> - <ul class="user_info_menu_btn"> - <li><a href="home.php?mod=spacecp" target="_blank">账号设置</a></li> - <li><a href="forum.php?mod=guide&view=my" target="_blank">我的帖子</a></li> - <li><a href="home.php?mod=space&do=favorite&view=me" target="_blank">我的收藏</a></li> - - <li><a href="member.php?mod=logging&action=logout&formhash=3964a52c" onclick="showDialog('你确定要退出登录吗?', 'confirm', '退出登录', function(){ -top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a52c'; -}, 1, null, '', '', '', '', 0);return false;">退出登录</a></li> - - </ul> - </div> - <!--消息通知--> - <ul id="myprompt_menu" class="p_pop" style="display: none;"> - <li><a href="home.php?mod=space&do=pm" id="pm_ntc" - style="background-repeat: no-repeat; background-position: 0 50%;" id="pm_ntc">消息</a></li> - <li><a href="home.php?mod=follow&do=follower">粉丝</a></li> - </ul> - <ul id="usertools_menu" class="p_pop" style="display: none; text-align: center;"> - <li><a href="home.php?mod=task">任务</a> - </li> - <li><a href="home.php?mod=magic">道具</a></li> - <li><a href="home.php?mod=medal">勋章</a></li> - <li><a href="plugin.php?id=mcbbs_lucky_card:prize_pool">挖矿</a></li> - <li><a href="plugin.php?id=mcbbs_ad:ad_manage">宣传</a></li> - </ul> - <div id="sslct_menu" class="cl p_pop" style="display: none;"> - <span class="sslct_btn" onclick="extstyle('./template/mcbbs/style/winter')" title="冬季"><i - style='background:#4d82ff'></i></span> - <span class="sslct_btn" onclick="extstyle('./template/mcbbs/style/default')" title="经典"><i - style='background:#70ba5e'></i></span> - <span class="sslct_btn" onclick="extstyle('./template/mcbbs/style/nether')" title="下界"><i - style='background:#ae210f'></i></span> - </div> - <ul id="myitem_menu" class="p_pop" style="display: none;"> - <li><a href="forum.php?mod=guide&view=my">帖子</a></li> - <li><a href="home.php?mod=space&do=favorite&view=me">收藏</a></li> - <li><a href="home.php?mod=space&do=friend">好友</a></li> - </ul> - <div id="qmenu_menu" class="p_pop " style="display: none;"> - <ul class="cl nav"> - <li><a href="home.php?mod=space&do=friend" - style="background-image:url(https://www.mcbbs.net/static/image/feed/friend_b.png) !important">好友</a> - </li> - <li><a href="forum.php?mod=guide&view=my" - style="background-image:url(https://www.mcbbs.net/static/image/feed/thread_b.png) !important">帖子</a> - </li> - <li><a href="home.php?mod=magic" - style="background-image:url(https://www.mcbbs.net/static/image/feed/magic_b.png) !important">道具</a> - </li> - <li><a href="home.php?mod=space&do=favorite&view=me" - style="background-image:url(https://www.mcbbs.net/static/image/feed/favorite_b.png) !important">收藏</a> - </li> - <li><a href="home.php?mod=medal" - style="background-image:url(https://www.mcbbs.net/static/image/feed/medal_b.png) !important">勋章</a> - </li> - <li><a href="home.php?mod=task" - style="background-image:url(https://www.mcbbs.net/static/image/feed/task_b.png) !important">任务</a> - </li> - <li><a href="group.php" - style="background-image:url(https://www.mcbbs.net/static/image/feed/group_b.png) !important">群组</a> - </li> - <li><a href="portal.php" - style="background-image:url(https://www.mcbbs.net/static/image/feed/portal_b.png) !important">门户</a> - </li> - </ul> - <div id="fjump_menu" class="btda"></div> - </div> - <!--整个主体div--> - <div class="mc_map_wp"> - <!--头部公用 用户状态信息--> - <div class="new_wp" style="padding: 28px 0 26px 0;"> - <div class="hdc cl"> - <h2 style="padding:0;float: left;"><a href="portal.php" title="Minecraft(我的世界)中文论坛"><img - src="template/mcbbs/image/logo_sc.png" alt="Minecraft(我的世界)中文论坛" border="0" /></a></h2> - <div id="um" style="display: none"> - <div class="avt y"><a href="home.php?mod=space&uid=1917539"><img - src="https://attachment.mcbbs.net/uc_server/data/avatar/001/91/75/39_avatar_big.jpg/small" - onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" /></a> - </div> - <p> - <strong class="vwmy"><a href="home.php?mod=space&uid=1917539" target="_blank" - title="访问我的空间">Rukuy</a></strong> - <span id="loginstatus"> - <a id="loginstatusid" href="member.php?mod=switchstatus" title="切换在线状态" - onclick="ajaxget(this.href, 'loginstatus');return false;" class="xi2"></a> - </span> - <span class="pipe">|</span><a href="javascript:;" id="myitem" class="showmenu" - onmouseover="showMenu({'ctrlid':'myitem'});">我的</a> - <span class="pipe">|</span><a href="home.php?mod=spacecp">设置</a> - <span class="pipe">|</span><a href="home.php?mod=space&do=pm" id="pm_ntc">消息</a> - <span class="pipe">|</span><a href="home.php?mod=space&do=notice" id="myprompt" - class="a showmenu" onmouseover="showMenu({'ctrlid':'myprompt'});">提醒</a><span - id="myprompt_check"></span> - <span class="pipe">|</span><a - href="member.php?mod=logging&action=logout&formhash=3964a52c">退出</a> - </p> - <p> - <a href="home.php?mod=spacecp&ac=credit&showcredit=1" id="extcreditmenu" - onmouseover="delayShow(this, showCreditmenu);" class="showmenu">积分: 686</a> - <span class="pipe">|</span><a href="home.php?mod=spacecp&ac=usergroup" id="g_upmine" - class="showmenu" onmouseover="delayShow(this, showUpgradeinfo)">用户组: Lv.6 手艺人</a> - </p> - </div> - <div id="PO55CY" class="y"> - <script>(function (i) { var l = "2.73"; if (i.support == undefined) { i.support = { opacity: !(i.browser.msie) } } function a(q) { if (i.fn.cycle.debug) { f(q) } } function f() { if (window.console && window.console.log) { window.console.log("[cycle] " + Array.prototype.join.call(arguments, " ")) } } i.fn.cycle = function (r, q) { var s = { s: this.selector, c: this.context }; if (this.length === 0 && r != "stop") { if (!i.isReady && s.s) { f("DOM not ready, queuing slideshow"); i(function () { i(s.s, s.c).cycle(r, q) }); return this } f("terminating; zero elements found by selector" + (i.isReady ? "" : " (DOM not ready)")); return this } return this.each(function () { var w = m(this, r, q); if (w === false) { return } if (this.cycleTimeout) { clearTimeout(this.cycleTimeout) } this.cycleTimeout = this.cyclePause = 0; var x = i(this); var y = w.slideExpr ? i(w.slideExpr, this) : x.children(); var u = y.get(); if (u.length < 2) { f("terminating; too few slides: " + u.length); return } var t = k(x, y, u, w, s); if (t === false) { return } var v = t.continuous ? 10 : h(t.currSlide, t.nextSlide, t, !t.rev); if (v) { v += (t.delay || 0); if (v < 10) { v = 10 } a("first timeout: " + v); this.cycleTimeout = setTimeout(function () { e(u, t, 0, !t.rev) }, v) } }) }; function m(q, t, r) { if (q.cycleStop == undefined) { q.cycleStop = 0 } if (t === undefined || t === null) { t = {} } if (t.constructor == String) { switch (t) { case "stop": q.cycleStop++; if (q.cycleTimeout) { clearTimeout(q.cycleTimeout) } q.cycleTimeout = 0; i(q).removeData("cycle.opts"); return false; case "pause": q.cyclePause = 1; return false; case "resume": q.cyclePause = 0; if (r === true) { t = i(q).data("cycle.opts"); if (!t) { f("options not found, can not resume"); return false } if (q.cycleTimeout) { clearTimeout(q.cycleTimeout); q.cycleTimeout = 0 } e(t.elements, t, 1, 1) } return false; case "prev": case "next": var u = i(q).data("cycle.opts"); if (!u) { f('options not found, "prev/next" ignored'); return false } i.fn.cycle[t](u); return false; default: t = { fx: t } }return t } else { if (t.constructor == Number) { var s = t; t = i(q).data("cycle.opts"); if (!t) { f("options not found, can not advance slide"); return false } if (s < 0 || s >= t.elements.length) { f("invalid slide index: " + s); return false } t.nextSlide = s; if (q.cycleTimeout) { clearTimeout(q.cycleTimeout); q.cycleTimeout = 0 } if (typeof r == "string") { t.oneTimeFx = r } e(t.elements, t, 1, s >= t.currSlide); return false } } return t } function b(q, r) { if (!i.support.opacity && r.cleartype && q.style.filter) { try { q.style.removeAttribute("filter") } catch (s) { } } } function k(y, J, u, t, E) { var C = i.extend({}, i.fn.cycle.defaults, t || {}, i.metadata ? y.metadata() : i.meta ? y.data() : {}); if (C.autostop) { C.countdown = C.autostopCount || u.length } var r = y[0]; y.data("cycle.opts", C); C.$cont = y; C.stopCount = r.cycleStop; C.elements = u; C.before = C.before ? [C.before] : []; C.after = C.after ? [C.after] : []; C.after.unshift(function () { C.busy = 0 }); if (!i.support.opacity && C.cleartype) { C.after.push(function () { b(this, C) }) } if (C.continuous) { C.after.push(function () { e(u, C, 0, !C.rev) }) } n(C); if (!i.support.opacity && C.cleartype && !C.cleartypeNoBg) { g(J) } if (y.css("position") == "static") { y.css("position", "relative") } if (C.width) { y.width(C.width) } if (C.height && C.height != "auto") { y.height(C.height) } if (C.startingSlide) { C.startingSlide = parseInt(C.startingSlide) } if (C.random) { C.randomMap = []; for (var H = 0; H < u.length; H++) { C.randomMap.push(H) } C.randomMap.sort(function (L, w) { return Math.random() - 0.5 }); C.randomIndex = 0; C.startingSlide = C.randomMap[0] } else { if (C.startingSlide >= u.length) { C.startingSlide = 0 } } C.currSlide = C.startingSlide = C.startingSlide || 0; var x = C.startingSlide; J.css({ position: "absolute", top: 0, left: 0 }).hide().each(function (w) { var L = x ? w >= x ? u.length - (w - x) : x - w : u.length - w; i(this).css("z-index", L) }); i(u[x]).css("opacity", 1).show(); b(u[x], C); if (C.fit && C.width) { J.width(C.width) } if (C.fit && C.height && C.height != "auto") { J.height(C.height) } var D = C.containerResize && !y.innerHeight(); if (D) { var v = 0, B = 0; for (var F = 0; F < u.length; F++) { var q = i(u[F]), K = q[0], A = q.outerWidth(), I = q.outerHeight(); if (!A) { A = K.offsetWidth } if (!I) { I = K.offsetHeight } v = A > v ? A : v; B = I > B ? I : B } if (v > 0 && B > 0) { y.css({ width: v + "px", height: B + "px" }) } } if (C.pause) { y.hover(function () { this.cyclePause++ }, function () { this.cyclePause-- }) } if (c(C) === false) { return false } var s = false; t.requeueAttempts = t.requeueAttempts || 0; J.each(function () { var N = i(this); this.cycleH = (C.fit && C.height) ? C.height : N.height(); this.cycleW = (C.fit && C.width) ? C.width : N.width(); if (N.is("img")) { var L = (i.browser.msie && this.cycleW == 28 && this.cycleH == 30 && !this.complete); var O = (i.browser.mozilla && this.cycleW == 34 && this.cycleH == 19 && !this.complete); var M = (i.browser.opera && ((this.cycleW == 42 && this.cycleH == 19) || (this.cycleW == 37 && this.cycleH == 17)) && !this.complete); var w = (this.cycleH == 0 && this.cycleW == 0 && !this.complete); if (L || O || M || w) { if (E.s && C.requeueOnImageNotLoaded && ++t.requeueAttempts < 100) { f(t.requeueAttempts, " - img slide not loaded, requeuing slideshow: ", this.src, this.cycleW, this.cycleH); setTimeout(function () { i(E.s, E.c).cycle(t) }, C.requeueTimeout); s = true; return false } else { f("could not determine size of image: " + this.src, this.cycleW, this.cycleH) } } } return true }); if (s) { return false } C.cssBefore = C.cssBefore || {}; C.animIn = C.animIn || {}; C.animOut = C.animOut || {}; J.not(":eq(" + x + ")").css(C.cssBefore); if (C.cssFirst) { i(J[x]).css(C.cssFirst) } if (C.timeout) { C.timeout = parseInt(C.timeout); if (C.speed.constructor == String) { C.speed = i.fx.speeds[C.speed] || parseInt(C.speed) } if (!C.sync) { C.speed = C.speed / 2 } while ((C.timeout - C.speed) < 250) { C.timeout += C.speed } } if (C.easing) { C.easeIn = C.easeOut = C.easing } if (!C.speedIn) { C.speedIn = C.speed } if (!C.speedOut) { C.speedOut = C.speed } C.slideCount = u.length; C.currSlide = C.lastSlide = x; if (C.random) { C.nextSlide = C.currSlide; if (++C.randomIndex == u.length) { C.randomIndex = 0 } C.nextSlide = C.randomMap[C.randomIndex] } else { C.nextSlide = C.startingSlide >= (u.length - 1) ? 0 : C.startingSlide + 1 } if (!C.multiFx) { var G = i.fn.cycle.transitions[C.fx]; if (i.isFunction(G)) { G(y, J, C) } else { if (C.fx != "custom" && !C.multiFx) { f("unknown transition: " + C.fx, "; slideshow terminating"); return false } } } var z = J[x]; if (C.before.length) { C.before[0].apply(z, [z, z, C, true]) } if (C.after.length > 1) { C.after[1].apply(z, [z, z, C, true]) } if (C.next) { i(C.next).bind(C.prevNextEvent, function () { return o(C, C.rev ? -1 : 1) }) } if (C.prev) { i(C.prev).bind(C.prevNextEvent, function () { return o(C, C.rev ? 1 : -1) }) } if (C.pager) { d(u, C) } j(C, u); return C } function n(q) { q.original = { before: [], after: [] }; q.original.cssBefore = i.extend({}, q.cssBefore); q.original.cssAfter = i.extend({}, q.cssAfter); q.original.animIn = i.extend({}, q.animIn); q.original.animOut = i.extend({}, q.animOut); i.each(q.before, function () { q.original.before.push(this) }); i.each(q.after, function () { q.original.after.push(this) }) } function c(w) { var u, s, r = i.fn.cycle.transitions; if (w.fx.indexOf(",") > 0) { w.multiFx = true; w.fxs = w.fx.replace(/\s*/g, "").split(","); for (u = 0; u < w.fxs.length; u++) { var v = w.fxs[u]; s = r[v]; if (!s || !r.hasOwnProperty(v) || !i.isFunction(s)) { f("discarding unknown transition: ", v); w.fxs.splice(u, 1); u-- } } if (!w.fxs.length) { f("No valid transitions named; slideshow terminating."); return false } } else { if (w.fx == "all") { w.multiFx = true; w.fxs = []; for (p in r) { s = r[p]; if (r.hasOwnProperty(p) && i.isFunction(s)) { w.fxs.push(p) } } } } if (w.multiFx && w.randomizeEffects) { var t = Math.floor(Math.random() * 20) + 30; for (u = 0; u < t; u++) { var q = Math.floor(Math.random() * w.fxs.length); w.fxs.push(w.fxs.splice(q, 1)[0]) } a("randomized fx sequence: ", w.fxs) } return true } function j(r, q) { r.addSlide = function (u, v) { var t = i(u), w = t[0]; if (!r.autostopCount) { r.countdown++ } q[v ? "unshift" : "push"](w); if (r.els) { r.els[v ? "unshift" : "push"](w) } r.slideCount = q.length; t.css("position", "absolute"); t[v ? "prependTo" : "appendTo"](r.$cont); if (v) { r.currSlide++; r.nextSlide++ } if (!i.support.opacity && r.cleartype && !r.cleartypeNoBg) { g(t) } if (r.fit && r.width) { t.width(r.width) } if (r.fit && r.height && r.height != "auto") { $slides.height(r.height) } w.cycleH = (r.fit && r.height) ? r.height : t.height(); w.cycleW = (r.fit && r.width) ? r.width : t.width(); t.css(r.cssBefore); if (r.pager) { i.fn.cycle.createPagerAnchor(q.length - 1, w, i(r.pager), q, r) } if (i.isFunction(r.onAddSlide)) { r.onAddSlide(t) } else { t.hide() } } } i.fn.cycle.resetState = function (r, q) { q = q || r.fx; r.before = []; r.after = []; r.cssBefore = i.extend({}, r.original.cssBefore); r.cssAfter = i.extend({}, r.original.cssAfter); r.animIn = i.extend({}, r.original.animIn); r.animOut = i.extend({}, r.original.animOut); r.fxFn = null; i.each(r.original.before, function () { r.before.push(this) }); i.each(r.original.after, function () { r.after.push(this) }); var s = i.fn.cycle.transitions[q]; if (i.isFunction(s)) { s(r.$cont, i(r.elements), r) } }; function e(x, q, w, y) { if (w && q.busy && q.manualTrump) { i(x).stop(true, true); q.busy = false } if (q.busy) { return } var u = q.$cont[0], A = x[q.currSlide], z = x[q.nextSlide]; if (u.cycleStop != q.stopCount || u.cycleTimeout === 0 && !w) { return } if (!w && !u.cyclePause && ((q.autostop && (--q.countdown <= 0)) || (q.nowrap && !q.random && q.nextSlide < q.currSlide))) { if (q.end) { q.end(q) } return } if (w || !u.cyclePause) { var v = q.fx; A.cycleH = A.cycleH || i(A).height(); A.cycleW = A.cycleW || i(A).width(); z.cycleH = z.cycleH || i(z).height(); z.cycleW = z.cycleW || i(z).width(); if (q.multiFx) { if (q.lastFx == undefined || ++q.lastFx >= q.fxs.length) { q.lastFx = 0 } v = q.fxs[q.lastFx]; q.currFx = v } if (q.oneTimeFx) { v = q.oneTimeFx; q.oneTimeFx = null } i.fn.cycle.resetState(q, v); if (q.before.length) { i.each(q.before, function (B, C) { if (u.cycleStop != q.stopCount) { return } C.apply(z, [A, z, q, y]) }) } var s = function () { i.each(q.after, function (B, C) { if (u.cycleStop != q.stopCount) { return } C.apply(z, [A, z, q, y]) }) }; if (q.nextSlide != q.currSlide) { q.busy = 1; if (q.fxFn) { q.fxFn(A, z, q, s, y) } else { if (i.isFunction(i.fn.cycle[q.fx])) { i.fn.cycle[q.fx](A, z, q, s) } else { i.fn.cycle.custom(A, z, q, s, w && q.fastOnEvent) } } } q.lastSlide = q.currSlide; if (q.random) { q.currSlide = q.nextSlide; if (++q.randomIndex == x.length) { q.randomIndex = 0 } q.nextSlide = q.randomMap[q.randomIndex] } else { var t = (q.nextSlide + 1) == x.length; q.nextSlide = t ? 0 : q.nextSlide + 1; q.currSlide = t ? x.length - 1 : q.nextSlide - 1 } if (q.pager) { i.fn.cycle.updateActivePagerLink(q.pager, q.currSlide) } } var r = 0; if (q.timeout && !q.continuous) { r = h(A, z, q, y) } else { if (q.continuous && u.cyclePause) { r = 10 } } if (r > 0) { u.cycleTimeout = setTimeout(function () { e(x, q, 0, !q.rev) }, r) } } i.fn.cycle.updateActivePagerLink = function (q, r) { i(q).each(function () { i(this).find("a").removeClass("activeSlide").filter("a:eq(" + r + ")").addClass("activeSlide") }) }; function h(v, s, u, r) { if (u.timeoutFn) { var q = u.timeoutFn(v, s, u, r); while ((q - u.speed) < 250) { q += u.speed } a("calculated timeout: " + q + "; speed: " + u.speed); if (q !== false) { return q } } return u.timeout } i.fn.cycle.next = function (q) { o(q, q.rev ? -1 : 1) }; i.fn.cycle.prev = function (q) { o(q, q.rev ? 1 : -1) }; function o(r, u) { var q = r.elements; var t = r.$cont[0], s = t.cycleTimeout; if (s) { clearTimeout(s); t.cycleTimeout = 0 } if (r.random && u < 0) { r.randomIndex--; if (--r.randomIndex == -2) { r.randomIndex = q.length - 2 } else { if (r.randomIndex == -1) { r.randomIndex = q.length - 1 } } r.nextSlide = r.randomMap[r.randomIndex] } else { if (r.random) { if (++r.randomIndex == q.length) { r.randomIndex = 0 } r.nextSlide = r.randomMap[r.randomIndex] } else { r.nextSlide = r.currSlide + u; if (r.nextSlide < 0) { if (r.nowrap) { return false } r.nextSlide = q.length - 1 } else { if (r.nextSlide >= q.length) { if (r.nowrap) { return false } r.nextSlide = 0 } } } } if (i.isFunction(r.prevNextClick)) { r.prevNextClick(u > 0, r.nextSlide, q[r.nextSlide]) } e(q, r, 1, u >= 0); return false } function d(r, s) { var q = i(s.pager); i.each(r, function (t, u) { i.fn.cycle.createPagerAnchor(t, u, q, r, s) }); i.fn.cycle.updateActivePagerLink(s.pager, s.startingSlide) } i.fn.cycle.createPagerAnchor = function (u, v, s, t, w) { var r; if (i.isFunction(w.pagerAnchorBuilder)) { r = w.pagerAnchorBuilder(u, v) } else { r = '<a href="#">' + (u + 1) + "</a>" } if (!r) { return } var x = i(r); if (x.parents("body").length === 0) { var q = []; if (s.length > 1) { s.each(function () { var y = x.clone(true); i(this).append(y); q.push(y[0]) }); x = i(q) } else { x.appendTo(s) } } x.bind(w.pagerEvent, function (A) { A.preventDefault(); w.nextSlide = u; var z = w.$cont[0], y = z.cycleTimeout; if (y) { clearTimeout(y); z.cycleTimeout = 0 } if (i.isFunction(w.pagerClick)) { w.pagerClick(w.nextSlide, t[w.nextSlide]) } e(t, w, 1, w.currSlide < u); return false }); if (w.pagerEvent != "click") { x.click(function () { return false }) } if (w.pauseOnPagerHover) { x.hover(function () { w.$cont[0].cyclePause++ }, function () { w.$cont[0].cyclePause-- }) } }; i.fn.cycle.hopsFromLast = function (t, s) { var r, q = t.lastSlide, u = t.currSlide; if (s) { r = u > q ? u - q : t.slideCount - q } else { r = u < q ? q - u : q + t.slideCount - u } return r }; function g(s) { function r(t) { t = parseInt(t).toString(16); return t.length < 2 ? "0" + t : t } function q(w) { for (; w && w.nodeName.toLowerCase() != "html"; w = w.parentNode) { var t = i.css(w, "background-color"); if (t.indexOf("rgb") >= 0) { var u = t.match(/\d+/g); return "#" + r(u[0]) + r(u[1]) + r(u[2]) } if (t && t != "transparent") { return t } } return "#ffffff" } s.each(function () { i(this).css("background-color", q(this)) }) } i.fn.cycle.commonReset = function (v, t, u, r, s, q) { i(u.elements).not(v).hide(); u.cssBefore.opacity = 1; u.cssBefore.display = "block"; if (r !== false && t.cycleW > 0) { u.cssBefore.width = t.cycleW } if (s !== false && t.cycleH > 0) { u.cssBefore.height = t.cycleH } u.cssAfter = u.cssAfter || {}; u.cssAfter.display = "none"; i(v).css("zIndex", u.slideCount + (q === true ? 1 : 0)); i(t).css("zIndex", u.slideCount + (q === true ? 0 : 1)) }; i.fn.cycle.custom = function (B, v, q, s, r) { var A = i(B), w = i(v); var t = q.speedIn, z = q.speedOut, u = q.easeIn, y = q.easeOut; w.css(q.cssBefore); if (r) { if (typeof r == "number") { t = z = r } else { t = z = 1 } u = y = null } var x = function () { w.animate(q.animIn, t, u, s) }; A.animate(q.animOut, z, y, function () { if (q.cssAfter) { A.css(q.cssAfter) } if (!q.sync) { x() } }); if (q.sync) { x() } }; i.fn.cycle.transitions = { fade: function (r, s, q) { s.not(":eq(" + q.currSlide + ")").css("opacity", 0); q.before.push(function (v, t, u) { i.fn.cycle.commonReset(v, t, u); u.cssBefore.opacity = 0 }); q.animIn = { opacity: 1 }; q.animOut = { opacity: 0 }; q.cssBefore = { top: 0, left: 0 } } }; i.fn.cycle.ver = function () { return l }; i.fn.cycle.defaults = { fx: "fade", timeout: 4000, timeoutFn: null, continuous: 0, speed: 1000, speedIn: null, speedOut: null, next: null, prev: null, prevNextClick: null, prevNextEvent: "click", pager: null, pagerClick: null, pagerEvent: "click", pagerAnchorBuilder: null, before: null, after: null, end: null, easing: null, easeIn: null, easeOut: null, shuffle: null, animIn: null, animOut: null, cssBefore: null, cssAfter: null, fxFn: null, height: "auto", startingSlide: 0, sync: 1, random: 0, fit: 0, containerResize: 1, pause: 0, pauseOnPagerHover: 0, autostop: 0, autostopCount: 0, delay: 0, slideExpr: null, cleartype: !i.support.opacity, cleartypeNoBg: false, nowrap: 0, fastOnEvent: 0, randomizeEffects: 1, rev: 0, manualTrump: true, requeueOnImageNotLoaded: true, requeueTimeout: 250 } })(jQuery); - /* - * jQuery Cycle Plugin Transition Definitions - * This script is a plugin for the jQuery Cycle Plugin - * Examples and documentation at: http://malsup.com/jquery/cycle/ - * Copyright (c) 2007-2008 M. Alsup - * Version: 2.72 - * Dual licensed under the MIT and GPL licenses: - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - */ - (function (a) { a.fn.cycle.transitions.none = function (c, d, b) { b.fxFn = function (g, e, f, h) { a(e).show(); a(g).hide(); h() } }; a.fn.cycle.transitions.scrollUp = function (d, e, c) { d.css("overflow", "hidden"); c.before.push(a.fn.cycle.commonReset); var b = d.height(); c.cssBefore = { top: b, left: 0 }; c.cssFirst = { top: 0 }; c.animIn = { top: 0 }; c.animOut = { top: -b } }; a.fn.cycle.transitions.scrollDown = function (d, e, c) { d.css("overflow", "hidden"); c.before.push(a.fn.cycle.commonReset); var b = d.height(); c.cssFirst = { top: 0 }; c.cssBefore = { top: -b, left: 0 }; c.animIn = { top: 0 }; c.animOut = { top: b } }; a.fn.cycle.transitions.scrollLeft = function (d, e, c) { d.css("overflow", "hidden"); c.before.push(a.fn.cycle.commonReset); var b = d.width(); c.cssFirst = { left: 0 }; c.cssBefore = { left: b, top: 0 }; c.animIn = { left: 0 }; c.animOut = { left: 0 - b } }; a.fn.cycle.transitions.scrollRight = function (d, e, c) { d.css("overflow", "hidden"); c.before.push(a.fn.cycle.commonReset); var b = d.width(); c.cssFirst = { left: 0 }; c.cssBefore = { left: -b, top: 0 }; c.animIn = { left: 0 }; c.animOut = { left: b } }; a.fn.cycle.transitions.scrollHorz = function (c, d, b) { c.css("overflow", "hidden").width(); b.before.push(function (h, f, g, e) { a.fn.cycle.commonReset(h, f, g); g.cssBefore.left = e ? (f.cycleW - 1) : (1 - f.cycleW); g.animOut.left = e ? -h.cycleW : h.cycleW }); b.cssFirst = { left: 0 }; b.cssBefore = { top: 0 }; b.animIn = { left: 0 }; b.animOut = { top: 0 } }; a.fn.cycle.transitions.scrollVert = function (c, d, b) { c.css("overflow", "hidden"); b.before.push(function (h, f, g, e) { a.fn.cycle.commonReset(h, f, g); g.cssBefore.top = e ? (1 - f.cycleH) : (f.cycleH - 1); g.animOut.top = e ? h.cycleH : -h.cycleH }); b.cssFirst = { top: 0 }; b.cssBefore = { left: 0 }; b.animIn = { top: 0 }; b.animOut = { left: 0 } }; a.fn.cycle.transitions.slideX = function (c, d, b) { b.before.push(function (g, e, f) { a(f.elements).not(g).hide(); a.fn.cycle.commonReset(g, e, f, false, true); f.animIn.width = e.cycleW }); b.cssBefore = { left: 0, top: 0, width: 0 }; b.animIn = { width: "show" }; b.animOut = { width: 0 } }; a.fn.cycle.transitions.slideY = function (c, d, b) { b.before.push(function (g, e, f) { a(f.elements).not(g).hide(); a.fn.cycle.commonReset(g, e, f, true, false); f.animIn.height = e.cycleH }); b.cssBefore = { left: 0, top: 0, height: 0 }; b.animIn = { height: "show" }; b.animOut = { height: 0 } }; a.fn.cycle.transitions.shuffle = function (e, f, d) { var c, b = e.css("overflow", "visible").width(); f.css({ left: 0, top: 0 }); d.before.push(function (i, g, h) { a.fn.cycle.commonReset(i, g, h, true, true, true) }); if (!d.speedAdjusted) { d.speed = d.speed / 2; d.speedAdjusted = true } d.random = 0; d.shuffle = d.shuffle || { left: -b, top: 15 }; d.els = []; for (c = 0; c < f.length; c++) { d.els.push(f[c]) } for (c = 0; c < d.currSlide; c++) { d.els.push(d.els.shift()) } d.fxFn = function (m, j, l, g, i) { var h = i ? a(m) : a(j); a(j).css(l.cssBefore); var k = l.slideCount; h.animate(l.shuffle, l.speedIn, l.easeIn, function () { var o = a.fn.cycle.hopsFromLast(l, i); for (var q = 0; q < o; q++) { i ? l.els.push(l.els.shift()) : l.els.unshift(l.els.pop()) } if (i) { for (var r = 0, n = l.els.length; r < n; r++) { a(l.els[r]).css("z-index", n - r + k) } } else { var s = a(m).css("z-index"); h.css("z-index", parseInt(s) + 1 + k) } h.animate({ left: 0, top: 0 }, l.speedOut, l.easeOut, function () { a(i ? this : m).hide(); if (g) { g() } }) }) }; d.cssBefore = { display: "block", opacity: 1, top: 0, left: 0 } }; a.fn.cycle.transitions.turnUp = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, true, false); f.cssBefore.top = e.cycleH; f.animIn.height = e.cycleH }); b.cssFirst = { top: 0 }; b.cssBefore = { left: 0, height: 0 }; b.animIn = { top: 0 }; b.animOut = { height: 0 } }; a.fn.cycle.transitions.turnDown = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, true, false); f.animIn.height = e.cycleH; f.animOut.top = g.cycleH }); b.cssFirst = { top: 0 }; b.cssBefore = { left: 0, top: 0, height: 0 }; b.animOut = { height: 0 } }; a.fn.cycle.transitions.turnLeft = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, true); f.cssBefore.left = e.cycleW; f.animIn.width = e.cycleW }); b.cssBefore = { top: 0, width: 0 }; b.animIn = { left: 0 }; b.animOut = { width: 0 } }; a.fn.cycle.transitions.turnRight = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, true); f.animIn.width = e.cycleW; f.animOut.left = g.cycleW }); b.cssBefore = { top: 0, left: 0, width: 0 }; b.animIn = { left: 0 }; b.animOut = { width: 0 } }; a.fn.cycle.transitions.zoom = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, false, true); f.cssBefore.top = e.cycleH / 2; f.cssBefore.left = e.cycleW / 2; f.animIn = { top: 0, left: 0, width: e.cycleW, height: e.cycleH }; f.animOut = { width: 0, height: 0, top: g.cycleH / 2, left: g.cycleW / 2 } }); b.cssFirst = { top: 0, left: 0 }; b.cssBefore = { width: 0, height: 0 } }; a.fn.cycle.transitions.fadeZoom = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, false); f.cssBefore.left = e.cycleW / 2; f.cssBefore.top = e.cycleH / 2; f.animIn = { top: 0, left: 0, width: e.cycleW, height: e.cycleH } }); b.cssBefore = { width: 0, height: 0 }; b.animOut = { opacity: 0 } }; a.fn.cycle.transitions.blindX = function (d, e, c) { var b = d.css("overflow", "hidden").width(); c.before.push(function (h, f, g) { a.fn.cycle.commonReset(h, f, g); g.animIn.width = f.cycleW; g.animOut.left = h.cycleW }); c.cssBefore = { left: b, top: 0 }; c.animIn = { left: 0 }; c.animOut = { left: b } }; a.fn.cycle.transitions.blindY = function (d, e, c) { var b = d.css("overflow", "hidden").height(); c.before.push(function (h, f, g) { a.fn.cycle.commonReset(h, f, g); g.animIn.height = f.cycleH; g.animOut.top = h.cycleH }); c.cssBefore = { top: b, left: 0 }; c.animIn = { top: 0 }; c.animOut = { top: b } }; a.fn.cycle.transitions.blindZ = function (e, f, d) { var c = e.css("overflow", "hidden").height(); var b = e.width(); d.before.push(function (i, g, h) { a.fn.cycle.commonReset(i, g, h); h.animIn.height = g.cycleH; h.animOut.top = i.cycleH }); d.cssBefore = { top: c, left: b }; d.animIn = { top: 0, left: 0 }; d.animOut = { top: c, left: b } }; a.fn.cycle.transitions.growX = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, true); f.cssBefore.left = this.cycleW / 2; f.animIn = { left: 0, width: this.cycleW }; f.animOut = { left: 0 } }); b.cssBefore = { width: 0, top: 0 } }; a.fn.cycle.transitions.growY = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, true, false); f.cssBefore.top = this.cycleH / 2; f.animIn = { top: 0, height: this.cycleH }; f.animOut = { top: 0 } }); b.cssBefore = { height: 0, left: 0 } }; a.fn.cycle.transitions.curtainX = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, true, true); f.cssBefore.left = e.cycleW / 2; f.animIn = { left: 0, width: this.cycleW }; f.animOut = { left: g.cycleW / 2, width: 0 } }); b.cssBefore = { top: 0, width: 0 } }; a.fn.cycle.transitions.curtainY = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, true, false, true); f.cssBefore.top = e.cycleH / 2; f.animIn = { top: 0, height: e.cycleH }; f.animOut = { top: g.cycleH / 2, height: 0 } }); b.cssBefore = { left: 0, height: 0 } }; a.fn.cycle.transitions.cover = function (f, g, e) { var i = e.direction || "left"; var b = f.css("overflow", "hidden").width(); var c = f.height(); e.before.push(function (j, d, h) { a.fn.cycle.commonReset(j, d, h); if (i == "right") { h.cssBefore.left = -b } else { if (i == "up") { h.cssBefore.top = c } else { if (i == "down") { h.cssBefore.top = -c } else { h.cssBefore.left = b } } } }); e.animIn = { left: 0, top: 0 }; e.animOut = { opacity: 1 }; e.cssBefore = { top: 0, left: 0 } }; a.fn.cycle.transitions.uncover = function (f, g, e) { var i = e.direction || "left"; var b = f.css("overflow", "hidden").width(); var c = f.height(); e.before.push(function (j, d, h) { a.fn.cycle.commonReset(j, d, h, true, true, true); if (i == "right") { h.animOut.left = b } else { if (i == "up") { h.animOut.top = -c } else { if (i == "down") { h.animOut.top = c } else { h.animOut.left = -b } } } }); e.animIn = { left: 0, top: 0 }; e.animOut = { opacity: 1 }; e.cssBefore = { top: 0, left: 0 } }; a.fn.cycle.transitions.toss = function (e, f, d) { var b = e.css("overflow", "visible").width(); var c = e.height(); d.before.push(function (i, g, h) { a.fn.cycle.commonReset(i, g, h, true, true, true); if (!h.animOut.left && !h.animOut.top) { h.animOut = { left: b * 2, top: -c / 2, opacity: 0 } } else { h.animOut.opacity = 0 } }); d.cssBefore = { left: 0, top: 0 }; d.animIn = { left: 0 } }; a.fn.cycle.transitions.wipe = function (s, m, e) { var q = s.css("overflow", "hidden").width(); var j = s.height(); e.cssBefore = e.cssBefore || {}; var g; if (e.clip) { if (/l2r/.test(e.clip)) { g = "rect(0px 0px " + j + "px 0px)" } else { if (/r2l/.test(e.clip)) { g = "rect(0px " + q + "px " + j + "px " + q + "px)" } else { if (/t2b/.test(e.clip)) { g = "rect(0px " + q + "px 0px 0px)" } else { if (/b2t/.test(e.clip)) { g = "rect(" + j + "px " + q + "px " + j + "px 0px)" } else { if (/zoom/.test(e.clip)) { var o = parseInt(j / 2); var f = parseInt(q / 2); g = "rect(" + o + "px " + f + "px " + o + "px " + f + "px)" } } } } } } e.cssBefore.clip = e.cssBefore.clip || g || "rect(0px 0px 0px 0px)"; var k = e.cssBefore.clip.match(/(\d+)/g); var u = parseInt(k[0]), c = parseInt(k[1]), n = parseInt(k[2]), i = parseInt(k[3]); e.before.push(function (w, h, t) { if (w == h) { return } var d = a(w), b = a(h); a.fn.cycle.commonReset(w, h, t, true, true, false); t.cssAfter.display = "block"; var r = 1, l = parseInt((t.speedIn / 13)) - 1; (function v() { var y = u ? u - parseInt(r * (u / l)) : 0; var z = i ? i - parseInt(r * (i / l)) : 0; var A = n < j ? n + parseInt(r * ((j - n) / l || 1)) : j; var x = c < q ? c + parseInt(r * ((q - c) / l || 1)) : q; b.css({ clip: "rect(" + y + "px " + x + "px " + A + "px " + z + "px)" }); (r++ <= l) ? setTimeout(v, 13) : d.css("display", "none") })() }); e.cssBefore = { display: "block", opacity: 1, top: 0, left: 0 }; e.animIn = { left: 0 }; e.animOut = { left: 0 } } })(jQuery);</script> - </div> - </div> - </div> - <!--img class="mc_top" src="template/mcbbs/image/muddy_pig_subhero_updated6-19.png"/--> - <!--框背景的头部--> - <div class="mc_map_border_top"></div> - <!--框背景的左右--> - <div class="mc_map_border_left"> - <div class="mc_map_border_right"> - <div id="hd"> - <div width="400" height="600" class="imgshadow"></div> - <div class="wp"> - <div id="nv"> - <!--<a href="javascript:;" id="qmenu" onmouseover="delayShow(this, function () {showMenu({'ctrlid':'qmenu','pos':'34!','ctrlclass':'a','duration':2});showForummenu(139);})">快捷导航</a>--> - <ul class="nv_ul"> - <li id="mn_portal"><a href="portal.php" hidefocus="true" - title="Portal">首页<span>Portal</span></a></li> - <li class="a" id="mn_forum" - onmouseover="showMenu({'ctrlid':this.id,'ctrlclass':'hover','duration':2})"><a - href="forum.php" hidefocus="true" title="Forum">论坛<span>Forum</span></a></li> - <li id="mn_group" - onmouseover="showMenu({'ctrlid':this.id,'ctrlclass':'hover','duration':2})"><a - href="group.php" hidefocus="true" title="Groups">小组<span>Groups</span></a></li> - <li id="mn_Nce95" - onmouseover="showMenu({'ctrlid':this.id,'ctrlclass':'hover','duration':2})"><a - href="https://minecraft.fandom.com/zh/wiki/Minecraft_Wiki" hidefocus="true" - title="Wiki">百科<span>Wiki</span></a></li> - <li id="mn_N45f0" - onmouseover="showMenu({'ctrlid':this.id,'ctrlclass':'hover','duration':2})"><a - href="#" hidefocus="true" title="Utilities">工具<span>Utilities</span></a></li> - </ul> - - </div> - <div id="nv_right"> - <div id="an"> - <dl class="cl"> - <dt class="z xw1"></dt> - <dd> - <div id="anc"> - <ul id="ancl"> - <li><span><a href="https://www.mcbbs.net/thread-1272232-1-1.html" - target="_blank" - class="xi2"><b>请勿外借您的论坛账号,设置高强度密码</b></a></span></li> - </ul> - </div> - </dd> - </dl> - </div> - <script type="text/javascript">announcement();</script> - </div> - <script type="text/javascript"> - jq(function () { - jq("ul.p_pop").on("mouseover", function () { - var id = jq(this).attr("ctrlid"); - jq("#" + id).css({ background: "#e4dcc7", color: "#339933" }); - }); - jq("ul.p_pop").on("mouseleave", function () { - var id = jq(this).attr("ctrlid"); - setTimeout(function () { - jq("#" + id).css({ background: "none", color: "#fff" }); - }, 250); - }); - }) - </script> - <ul class="p_pop h_pop" id="plugin_menu" style="display: none"> - <li><a href="plugin.php?id=dc_signin:dc_signin" id="mn_plink_dc_signin">每日签到</a></li> - </ul> - <ul class="p_pop h_pop" id="mn_forum_menu" style="display: none"> - <li><a href="thread-7808-1-1.html" hidefocus="true">坛规</a></li> - <li><a href="thread-12685-1-1.html" hidefocus="true">勋章申请</a></li> - <li><a href="thread-924844-1-2.html" hidefocus="true">身份认证</a></li> - </ul> - <ul class="p_pop h_pop" id="mn_group_menu" style="display: none"> - <li><a href="/thread-332265-1-1.html" hidefocus="true">优秀小组申请</a></li> - </ul> - <div class="p_pop h_pop" id="mn_userapp_menu" style="display: none"></div> - <ul class="p_pop h_pop" id="mn_Nce95_menu" style="display: none"> - <li><a href="https://wiki.biligame.com/mc/Minecraft_Wiki" hidefocus="true">中文百科镜像</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E6%88%90%E5%B0%B1" - hidefocus="true">成就(基岩版)</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E8%BF%9B%E5%BA%A6" - hidefocus="true">进度(Java版)</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E7%94%9F%E7%89%A9" - hidefocus="true">生物</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E6%96%B9%E5%9D%97" - hidefocus="true">方块</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E7%89%A9%E5%93%81" - hidefocus="true">物品</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E7%94%9F%E7%89%A9%E7%BE%A4%E7%B3%BB" - hidefocus="true">生物群系</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E7%8A%B6%E6%80%81%E6%95%88%E6%9E%9C" - hidefocus="true">状态效果</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E9%99%84%E9%AD%94" - hidefocus="true">附魔</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E4%BA%A4%E6%98%93" - hidefocus="true">交易</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E7%BA%A2%E7%9F%B3%E5%85%83%E4%BB%B6" - hidefocus="true">红石元件</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/Special:%E6%9C%80%E8%BF%91%E6%9B%B4%E6%94%B9" - hidefocus="true">最近更改</a></li> - </ul> - <ul class="p_pop h_pop" id="mn_N45f0_menu" style="display: none"> - <li><a href="misc.php?mod=faq" hidefocus="true" target="_blank">帮助</a></li> - <li><a href="https://pastebin.com/" hidefocus="true" target="_blank">剪贴板 - Pastebin</a></li> - <li><a href="https://sm.ms/" hidefocus="true" target="_blank">图床 - sm.ms</a></li> - <li><a href="http://pan.baidu.com" hidefocus="true" target="_blank">网盘 - 百度网盘</a></li> - <li><a href="https://www.weiyun.com/" hidefocus="true" target="_blank">网盘 - 微云</a></li> - <li><a href="https://www.baidu.com/s?wd=%20site%3Amcbbs.net" hidefocus="true" - target="_blank">搜索 - 百度站内搜索</a></li> - </ul> - <div id="mu" class="cl"> - </div> - </div> - </div> - - <script src="/source/plugin/zhaisoul_thread_album/static/album.js" type="text/javascript"></script> - <link href="/source/plugin/zhaisoul_thread_album/static/album.css" rel="stylesheet"> - <div id="wp" class="wp" style="margin:0 85px;float:left;"> - <style id="diy_style" type="text/css"> - #framevhtvGB { - margin: 0px !important; - } - - #portal_block_898 { - border: 0px !important; - margin: 0px !important; - } - - #portal_block_898 .dxb_bc { - margin: 0px !important; - } - </style> - <!--[diy=diynavtop]--> - <div id="diynavtop" class="area"></div> - <!--[/diy]--> - <div id="pt" class="bm cl"> - <div class="z"> - <a href="./" class="nvhm" title="首页">Minecraft(我的世界)中文论坛</a><em>»</em><a - href="forum.php">论坛</a> <em>›</em> <a - href="forum.php?gid=36">综合讨论</a><em>›</em> <a href="forum-news-1.html">幻翼块讯</a> - </div> - </div> - <div class="wp"> - <!--[diy=diy1]--> - <div id="diy1" class="area"></div> - <!--[/diy]--> - </div> - <div class="boardnav"> - <div id="ct" class="wp cl"> - - <div class="mn" style="width:960px;"> - <div class="bm bml pbn"> - <div class="bm_h cl"> - <span class="o"><img id="forum_rules_139_img" - src="template/mcbbs/image/collapsed_no.gif" title="收起/展开" alt="收起/展开" - onclick="toggle_collapse('forum_rules_139')" /></span><span class="y"> - <a href="home.php?mod=spacecp&ac=favorite&type=forum&id=139&handlekey=favoriteforum&formhash=3964a52c" - id="a_favorite" class="fa_fav" - onclick="showWindow(this.id, this.href, 'get', 0);">收藏本版 <strong - class="xi1" id="number_favorite">(<span - id="number_favorite_num">2546</span>)</strong></a> - - </span> - <h1 class="xs2"> - <a href="forum-news-1.html">幻翼块讯</a> - <span class="xs1 xw0 i">今日: <strong class="xi1">0</strong><span - class="pipe">|</span>主题: <strong class="xi1">4400</strong><span - class="pipe">|</span>排名: <strong class="xi1" - title="上次排名:27">24</strong><b class="ico_increase"> </b></span> - </h1> - </div> - <div class="bm_c cl " style="background:#FBF2DB;"> - <div>版主: <span class="xi2"><a href="home.php?mod=space&username=LocusAzzurro" - class="notabs" c="1">LocusAzzurro</a>, <a - href="home.php?mod=space&username=zyjking" class="notabs" - c="1">zyjking</a>, <a - href="home.php?mod=space&username=%E6%96%AF%E4%B9%8C" class="notabs" - c="1">斯乌</a></span></div> - <div id="forum_rules_139" style=";"> - <div class="ptn xg2"> - <div align="center"><img id="aimg_R1X1N" class="zoom" width="700" - height="300" - src="https://attachment.mcbbs.net/data/myattachment/forum/202110/24/104627rmmcmrm6hlgkvgih.png" - border="0" alt="" /></div><br /> - <div align="center"> - <font size="3"> - <font color="Black"><strong><br /> - 这里是一个任何人都可以参与播报的中文Minecraft资讯平台</strong></font> - </font> - </div><br /> - <div align="center"> - <font size="2"> - <font color="Black">本版用于 Mojang - 及其作品的<strong>官方</strong>相关资讯,官网非块讯类博文请发到<a - href="https://www.mcbbs.net/forum.php?mod=forumdisplay&fid=1015&page=1" - target="_blank"> - <font color="DarkRed">识海漫谈</font> - </a></font> - </font><br /> - <font size="2"> - <font color="Black">发帖前请阅读<a - href="https://www.mcbbs.net/thread-1253320-1-1.html" - target="_blank"> - <font color="DarkRed">版规</font> - </a></font> - </font><br /> - <font size="2"> - <font color="Black">本版内容未特别说明者,均允许转载,但<a - href="https://www.mcbbs.net/plugin.php?id=link_redirect&target=http%3A%2F%2Fwww.creativecommons.org%2Flicenses%2Fby-sa%2F3.0%2Fcn%2Flegalcode" - target="_blank"> - <font color="DarkRed">需要署名并以相同方式共享</font> - </a>,具体参见<a - href="https://www.mcbbs.net/thread-1253320-1-1.html" - target="_blank"> - <font color="DarkRed">版规具体规章第八条/转载须知</font> - </a><br /> - 此外,欢迎加入块讯版块交流qq群:<font color="DarkRed">643353107</font> - ,须有版块发帖记录</font> - </font> - </div> - </div> - </div> - </div> - </div> - - - <div class="bm bmw fl"> - <div class="bm_h cl"> - <span class="o"><img id="subforum_139_img" - src="template/mcbbs/image/collapsed_no.gif" title="收起/展开" alt="收起/展开" - onclick="toggle_collapse('subforum_139');" /></span> - <h2>子版块</h2> - </div> - - <div id="subforum_139" class="bm_c" style=" padding-bottom:0;background: #FBF2DB;"> - <table cellspacing="0" cellpadding="0" class="fl_tb"> - <tr> - <td class="fl_icn" style="width: 68px;"> - <a href="forum-translation-1.html"><img - src="https://attachment.mcbbs.net/data/myattachment/common/29/common_1015_icon.png" - align="left" alt="识海漫谈" /></a> - </td> - <td> - <h2><a href="forum-translation-1.html" style="">识海漫谈</a></h2> - <p class="xg2">┗ <a - href="https://www.mcbbs.net/plugin.php?id=link_redirect&target=https%3A%2F%2Fminecraft.fandom.com%2Fzh%2Fwiki%2FMinecraft_Wiki" - target="_blank"><strong>中文Wiki</strong></a> | <a - href="https://www.mcbbs.net/thread-823054-1-1.html" - target="_blank"><strong>官方博文录</strong></a></p> - </td> - <td class="fl_i"> - <span class="xi2">1789</span><span class="xg1"> / <span - title="20676">2万</span></span> - </td> - <td class="fl_by"> - <div> - <a href="forum.php?mod=redirect&tid=1288632&goto=lastpost#lastpost" - class="xi2">[Minecraft.net | MINECRAFT BUI ...</a> - <cite><span title="2022-5-19 23:51">昨天 23:51</span> <a - href="home.php?mod=space&username=sprixt">sprixt</a></cite> - </div> - </td> - </tr> - <tr class="fl_row"> - </tr> - </table> - </div> - </div> - <div class="drag"> - <!--[diy=diy4]--> - <div id="diy4" class="area"> - <div id="framevhtvGB" class=" frame move-span cl frame-1"> - <div id="framevhtvGB_left" class="column frame-1-c"> - <div id="framevhtvGB_left_temp" class="move-span temp"></div> - <div id="portal_block_898" class="block move-span"> - <div id="portal_block_898_content" class="dxb_bc"> - <div class="bm bmw fl"> - <div class="bm_h cl"><span class="o"></span> - <h2>新闻推荐</h2> - </div> - <div class="bm_c" id="tuisuong_pl" style=""> - <div id="portal_block_800_content" class="dxb_bc" - style="position: relative;"> - <div class="slidebox" id="0.7527101117473101" - style="display: block;"> - - - - <div class="slideshow"> - <li style="width: 912px; height: 232px;"><a - href="thread-1252431-1-1.html" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/block/1f/1fd2b0cf3fd783263eb140fada25a4b1.jpg" - width="912" - height="232" /></a><span - class="title">Java版账号持续迁移中...</span> - </li> - <li style="width: 912px; height: 232px;"><a - href="thread-823054-1-1.html" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/block/ac/ac3707077f87b47753848943cc1d6cf4.jpg" - width="912" - height="232" /></a><span - class="title">Minecraft.net 官方博文录 - [译文征集中]</span></li> - </div> - </div> - - <script type="text/javascript"> - runslideshow(); - </script> - - - </div> - </div> - </div> - </div> - </div> - </div> - </div> - </div> - <!--[/diy]--> - </div> - - - - - <div id="pgt" class="bm bw0 pgs cl" style="background:#FBF2DB;margin:0;padding:20px;"> - <span id="fd_page_top"> - <div class="pg"><strong>1</strong><a href="forum-news-2.html">2</a><a - href="forum-news-3.html">3</a><a href="forum-news-4.html">4</a><a - href="forum-news-5.html">5</a><a href="forum-news-6.html">6</a><a - href="forum-news-7.html">7</a><a href="forum-news-8.html">8</a><a - href="forum-news-9.html">9</a><a href="forum-news-10.html">10</a><a - href="forum-news-158.html" class="last">... 158</a><label><input - type="text" name="custompage" class="px" size="2" - title="输入页码,按回车快速跳转" value="1" - onkeydown="if(event.keyCode==13) {window.location='forum.php?mod=forumdisplay&fid=139&page='+this.value;; doane(event);}" /><span - title="共 158 页"> / 158 页</span></label><a href="forum-news-2.html" - class="nxt">下一页</a></div> - </span> - <span class="pgb y" id="visitedforums" - onmouseover="$('visitedforums').id = 'visitedforumstmp';this.id = 'visitedforums';showMenu({'ctrlid':this.id,'pos':'34'})"><a - href="forum.php">返 回</a></span> - <a href="javascript:;" id="newspecial" - onmouseover="$('newspecial').id = 'newspecialtmp';this.id = 'newspecial';showMenu({'ctrlid':this.id})" - onclick="showWindow('newthread', 'forum.php?mod=post&action=newthread&fid=139')" - title="发新帖"><img src="template/mcbbs/image/pn_post.png" alt="发新帖" /></a> - </div> - <ul id="thread_types" class="ttp bm cl"> - <li id="ttp_all" class="xw1 a"><a href="forum-news-1.html">全部</a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=285">公告<span - class="xg1 num">27</span></a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯<span - class="xg1 num">617</span></a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=207">块讯<span - class="xg1 num">1416</span></a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=286">周边<span - class="xg1 num">763</span></a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=1899">主机资讯<span - class="xg1 num">236</span></a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2382">时评<span - class="xg1 num">13</span></a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯<span - class="xg1 num">495</span></a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2401">基岩块讯<span - class="xg1 num">832</span></a></li> - </ul> - <script type="text/javascript">showTypes('thread_types');</script> - <div id="threadlist" class="tl bm bmw" style="position: relative;"> - <div class="th"> - <table cellspacing="0" cellpadding="0"> - <tr> - <th colspan="2"> - <div class="tf"> - <span id="atarget" onclick="setatarget(1)" class="y" - title="在新窗口中打开帖子">新窗</span> - <a id="filter_special" href="javascript:;" class="showmenu xi2" - onclick="showMenu(this.id)">全部主题</a> - <a href="forum.php?mod=forumdisplay&fid=139&filter=lastpost&orderby=lastpost" - class="xi2">最新</a> - <a href="forum.php?mod=forumdisplay&fid=139&filter=heat&orderby=heats" - class="xi2">热门</a> - <a href="forum.php?mod=forumdisplay&fid=139&filter=hot" - class="xi2">热帖</a> - <a href="forum.php?mod=forumdisplay&fid=139&filter=digest&digest=1" - class="xi2">精华</a> - <a id="filter_dateline" href="javascript:;" class="showmenu xi2" - onclick="showMenu(this.id)">更多</a> - <span id="clearstickthread" style="display: none;"> - <span class="pipe">|</span> - <a href="javascript:;" onclick="clearStickThread()" - class="xi2" title="显示置顶">显示置顶</a> - </span> - </div> - </th> - <td class="by">作者</td> - <td class="num">回复/查看</td> - <td class="by">最后发表</td> - </tr> - </table> - </div> - <div class="bm_c"> - <script - type="text/javascript">var lasttime = 1652976922; var listcolspan = '5';</script> - <div id="forumnew" style="display:none"></div> - <form method="post" autocomplete="off" name="moderate" id="moderate" - action="forum.php?mod=topicadmin&action=moderate&fid=139&infloat=yes&nopost=yes"> - <input type="hidden" name="formhash" value="3964a52c" /> - <input type="hidden" name="listextra" value="page%3D1" /> - <table summary="forum_139" cellspacing="0" cellpadding="0" - id="threadlisttableid"> - <tbody id="stickthread_565057"> - <tr> - <td class="icn"> - <a href="thread-565057-1-1.html" - title="全局置顶主题 - 关闭的主题 - 新窗口打开" target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_565057" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='565057';CONTENT_ID='stickthread_565057';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a href="javascript:void(0);" - onclick="hideStickThread('565057')" class="showhide y" - title="隐藏置顶帖">隐藏置顶帖</a></em> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('565057', 'stickthread_565057');">预览</a> - <a href="thread-565057-1-1.html" - style="font-weight: bold;color: #2897C5;" - onclick="atarget(this)" class="s xst">【必读】MCBBS新人引导帖</a> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - </th> - <td class="by"> - <cite> - 匿名</cite> - <em><span>2016-3-8</span></em> - </td> - <td class="num"><a href="thread-565057-1-1.html" - class="xi2">0</a><em>1241561</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E5%8C%BF%E5%90%8D" - c="1">匿名</a></cite> - <em><a - href="forum.php?mod=redirect&tid=565057&goto=lastpost#lastpost">2016-3-8 - 04:57</a></em> - </td> - </tr> - </tbody> - <tbody id="stickthread_7808"> - <tr> - <td class="icn"> - <a href="thread-7808-1-1.html" - title="全局置顶主题 - 关闭的主题 - 新窗口打开" target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_7808" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='7808';CONTENT_ID='stickthread_7808';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a href="javascript:void(0);" - onclick="hideStickThread('7808')" class="showhide y" - title="隐藏置顶帖">隐藏置顶帖</a></em> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('7808', 'stickthread_7808');">预览</a> - <a href="thread-7808-1-1.html" style="font-weight: bold;" - onclick="atarget(this)" - class="s xst">【坛规】我的世界中文论坛规章制度</a> - </th> - <td class="by"> - <cite> - 匿名</cite> - <em><span>2011-8-6</span></em> - </td> - <td class="num"><a href="thread-7808-1-1.html" - class="xi2">3</a><em>2603428</em></td> - <td class="by"> - <cite>匿名</cite> - <em><a - href="forum.php?mod=redirect&tid=7808&goto=lastpost#lastpost">2011-8-7 - 16:37</a></em> - </td> - </tr> - </tbody> - <tbody id="stickthread_1259391"> - <tr> - <td class="icn"> - <a href="thread-1259391-1-1.html" - title="分类置顶主题 - 关闭的主题 - 新窗口打开" target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1259391" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1259391';CONTENT_ID='stickthread_1259391';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a href="javascript:void(0);" - onclick="hideStickThread('1259391')" class="showhide y" - title="隐藏置顶帖">隐藏置顶帖</a></em> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1259391', 'stickthread_1259391');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=285">公告</a>]</em> - <a href="thread-1259391-1-1.html" - style="font-weight: bold;color: #2897C5;" - onclick="atarget(this)" class="s xst">【综合讨论大区】QQ交流群 - 欢迎加入</a> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=1575538" c="1" - style="color: #660099;">ff98sha</a> <a - href="home.php?mod=spacecp&ac=profile&op=verify&vid=1" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/common/c4/common_1_verify_icon.png" - class="vm" alt="作者认证" title="作者认证" /></a></cite> - <em><span>2021-9-8</span></em> - </td> - <td class="num"><a href="thread-1259391-1-1.html" - class="xi2">0</a><em>7423</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=ff98sha" - c="1">ff98sha</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1259391&goto=lastpost#lastpost">2021-9-8 - 23:00</a></em> - </td> - </tr> - </tbody> - <tbody id="stickthread_1279926"> - <tr> - <td class="icn"> - <a href="thread-1279926-1-1.html" - title="本版置顶主题 - 关闭的主题 - 新窗口打开" target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1279926" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1279926';CONTENT_ID='stickthread_1279926';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a href="javascript:void(0);" - onclick="hideStickThread('1279926')" class="showhide y" - title="隐藏置顶帖">隐藏置顶帖</a></em> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1279926', 'stickthread_1279926');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1279926-1-1.html" - style="font-weight: bold;color: #EE1B2E;" - onclick="atarget(this)" class="s xst">Minecraft 1.18 - (洞穴与山崖第二部分) 特性列表</a> - <img src="template/mcbbs/image/digest_1.gif" - align="absmiddle" alt="digest" title="精华 1" /> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=1666555" c="1" - style="color: #660000;">zyjking</a></cite> - <em><span>2021-11-30</span></em> - </td> - <td class="num"><a href="thread-1279926-1-1.html" - class="xi2">0</a><em>9955</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=zyjking" - c="1">zyjking</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1279926&goto=lastpost#lastpost">2021-11-30 - 21:10</a></em> - </td> - </tr> - </tbody> - <tbody id="stickthread_1253320"> - <tr> - <td class="icn"> - <a href="thread-1253320-1-1.html" - title="本版置顶主题 - 关闭的主题 - 新窗口打开" target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1253320" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1253320';CONTENT_ID='stickthread_1253320';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a href="javascript:void(0);" - onclick="hideStickThread('1253320')" class="showhide y" - title="隐藏置顶帖">隐藏置顶帖</a></em> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1253320', 'stickthread_1253320');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=285">公告</a>]</em> - <a href="thread-1253320-1-1.html" - style="font-weight: bold;color: #2B65B7;" - onclick="atarget(this)" class="s xst">【幻翼块讯版】版规|模板代码</a> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=1350847" - c="1">广药</a> <a - href="home.php?mod=spacecp&ac=profile&op=verify&vid=1" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/common/c4/common_1_verify_icon.png" - class="vm" alt="作者认证" title="作者认证" /></a></cite> - <em><span>2021-8-25</span></em> - </td> - <td class="num"><a href="thread-1253320-1-1.html" - class="xi2">1</a><em>7110</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E5%B9%BF%E8%8D%AF" - c="1">广药</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1253320&goto=lastpost#lastpost">2021-9-2 - 09:40</a></em> - </td> - </tr> - </tbody> - <tbody id="separatorline"> - <tr class="ts"> - <td> </td> - <th> </th> - <td> </td> - <td> </td> - <td> </td> - </tr> - </tbody> - <script type="text/javascript">hideStickThread();</script> - <tbody id="normalthread_1340080"> - <tr> - <td class="icn"> - <a href="thread-1340080-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1340080" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1340080';CONTENT_ID='normalthread_1340080';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1340080', 'normalthread_1340080');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=207">块讯</a>]</em> - <a href="thread-1340080-1-1.html" style="color: #EC1282;" - onclick="atarget(this)" class="s xst">(已恢复)Mojang - Status:服务器出现一些小问题</a> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2999647" - c="1">DreamVoid</a> <a - href="home.php?mod=spacecp&ac=profile&op=verify&vid=2" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/common/c8/common_2_verify_icon.png" - class="vm" alt="服主认证" title="服主认证" /></a></cite> - <em><span><span - title="2022-5-16">4 天前</span></span></em> - </td> - <td class="num"><a href="thread-1340080-1-1.html" - class="xi2">3</a><em>643</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=peterlsl" - c="1">peterlsl</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1340080&goto=lastpost#lastpost"><span - title="2022-5-16 22:48">4 天前</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1339940"> - <tr> - <td class="icn"> - <a href="thread-1339940-1-1.html" title="新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_common.gif" /> - </a> - </td> - <th class="common"> - <a href="javascript:;" id="content_1339940" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1339940';CONTENT_ID='normalthread_1339940';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1339940', 'normalthread_1339940');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=207">块讯</a>]</em> - <a href="thread-1339940-1-1.html" style="color: #EC1282;" - onclick="atarget(this)" class="s xst">kinbdogz - 就近期荒野更新的风波发表看法</a> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1339940-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=10240" c="1" - style="color: #0099FF;">卡狗</a></cite> - <em><span><span - title="2022-5-16">4 天前</span></span></em> - </td> - <td class="num"><a href="thread-1339940-1-1.html" - class="xi2">18</a><em>939</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E4%B9%B0%E4%BA%86%E4%B8%AA%E8%A1%A8~" - c="1">买了个表~</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1339940&goto=lastpost#lastpost"><span - title="2022-5-18 19:07">前天 19:07</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1339097"> - <tr> - <td class="icn"> - <a href="thread-1339097-1-1.html" title="新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_common.gif" /> - </a> - </td> - <th class="common"> - <a href="javascript:;" id="content_1339097" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1339097';CONTENT_ID='normalthread_1339097';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1339097', 'normalthread_1339097');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1339097-1-1.html" - style="font-weight: bold;color: #EE1B2E;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 - 1.18.33 发布(仅 Switch)</a> - <img src="static/image/stamp/008.small.gif" alt="版主推荐" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2479240" - c="1">电量量</a> <a - href="home.php?mod=spacecp&ac=profile&op=verify&vid=1" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/common/c4/common_1_verify_icon.png" - class="vm" alt="作者认证" title="作者认证" /></a></cite> - <em><span><span - title="2022-5-14">6 天前</span></span></em> - </td> - <td class="num"><a href="thread-1339097-1-1.html" - class="xi2">6</a><em>558</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E5%86%B0%E7%BE%8E%E5%BC%8F%E3%80%82%E3%80%82" - c="1">冰美式。。</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1339097&goto=lastpost#lastpost"><span - title="2022-5-18 14:18">前天 14:18</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1338607"> - <tr> - <td class="icn"> - <a href="thread-1338607-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1338607" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1338607';CONTENT_ID='normalthread_1338607';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1338607', 'normalthread_1338607');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1338607-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft Java版 - 22w19a 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1338607-2-1.html">2</a><a - href="thread-1338607-3-1.html">3</a><a - href="thread-1338607-4-1.html">4</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2969317" - c="1">寂华</a></cite> - <em><span><span - title="2022-5-13">7 天前</span></span></em> - </td> - <td class="num"><a href="thread-1338607-1-1.html" - class="xi2">47</a><em>4469</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=LY.%E7%99%BD%E7%91%BE" - c="1">LY.白瑾</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1338607&goto=lastpost#lastpost"><span - title="2022-5-18 19:17">前天 19:17</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1338592"> - <tr> - <td class="icn"> - <a href="thread-1338592-1-1.html" title="新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_common.gif" /> - </a> - </td> - <th class="common"> - <a href="javascript:;" id="content_1338592" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1338592';CONTENT_ID='normalthread_1338592';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1338592', 'normalthread_1338592');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1338592-1-1.html" - style="font-weight: bold;color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta - & Preview 1.19.0.32/33 发布</a> - <img src="static/image/stamp/008.small.gif" alt="版主推荐" - align="absmiddle" /> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2501735" - c="1">苦力怕553</a> <a - href="home.php?mod=spacecp&ac=profile&op=verify&vid=1" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/common/c4/common_1_verify_icon.png" - class="vm" alt="作者认证" title="作者认证" /></a></cite> - <em><span><span - title="2022-5-13">7 天前</span></span></em> - </td> - <td class="num"><a href="thread-1338592-1-1.html" - class="xi2">7</a><em>1978</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=Ph-%E8%8B%AF" - c="1">Ph-苯</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1338592&goto=lastpost#lastpost"><span - title="2022-5-18 10:23">前天 10:23</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1338588"> - <tr> - <td class="icn"> - <a href="thread-1338588-1-1.html" title="有新回复 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_new.gif" /> - </a> - </td> - <th class="new"> - <a href="javascript:;" id="content_1338588" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1338588';CONTENT_ID='normalthread_1338588';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1338588', 'normalthread_1338588');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2382">时评</a>]</em> - <a href="thread-1338588-1-1.html" - style="font-weight: bold;color: #8F2A90;" - onclick="atarget(this)" - class="s xst">请给我们一个真正的“荒野更新”</a> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1338588-2-1.html">2</a><a - href="thread-1338588-3-1.html">3</a></span> - <a href="forum.php?mod=redirect&tid=1338588&goto=lastpost#lastpost" - class="xi1">New</a> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=1605611" c="1" - style="color: #660000;">斯乌</a></cite> - <em><span><span - title="2022-5-13">7 天前</span></span></em> - </td> - <td class="num"><a href="thread-1338588-1-1.html" - class="xi2">37</a><em>2250</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=tianyuhhh" - c="1">tianyuhhh</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1338588&goto=lastpost#lastpost"><span - title="2022-5-18 23:57">前天 23:57</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1338496"> - <tr> - <td class="icn"> - <a href="thread-1338496-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1338496" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1338496';CONTENT_ID='normalthread_1338496';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1338496', 'normalthread_1338496');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=207">块讯</a>]</em> - <a href="thread-1338496-1-1.html" style="color: #EC1282;" - onclick="atarget(this)" - class="s xst">slicedlime:周三无快照,推迟至周四</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2933654" - c="1">橄榄Chan</a></cite> - <em><span>2022-5-11</span></em> - </td> - <td class="num"><a href="thread-1338496-1-1.html" - class="xi2">6</a><em>904</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E5%8D%A1%E7%8B%97" - c="1">卡狗</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1338496&goto=lastpost#lastpost"><span - title="2022-5-13 00:05">7 天前</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1336371"> - <tr> - <td class="icn"> - <a href="thread-1336371-1-1.html" title="有新回复 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_new.gif" /> - </a> - </td> - <th class="new"> - <a href="javascript:;" id="content_1336371" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1336371';CONTENT_ID='normalthread_1336371';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1336371', 'normalthread_1336371');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1336371-1-1.html" - style="font-weight: bold;color: #EE1B2E;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 - 1.18.32 发布(仅 Android、NS)【新增 NS 平台】</a> - <img src="static/image/stamp/008.small.gif" alt="版主推荐" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1336371-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2479240" - c="1">电量量</a> <a - href="home.php?mod=spacecp&ac=profile&op=verify&vid=1" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/common/c4/common_1_verify_icon.png" - class="vm" alt="作者认证" title="作者认证" /></a></cite> - <em><span>2022-5-6</span></em> - </td> - <td class="num"><a href="thread-1336371-1-1.html" - class="xi2">15</a><em>1424</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=a136569113" - c="1">a136569113</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1336371&goto=lastpost#lastpost"><span - title="2022-5-19 17:43">昨天 17:43</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1335897"> - <tr> - <td class="icn"> - <a href="thread-1335897-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1335897" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1335897';CONTENT_ID='normalthread_1335897';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1335897', 'normalthread_1335897');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1335897-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta - & Preview 1.19.0.30/31 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1335897-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=1694714" c="1" - style="color: #660000;">AzureZeng</a></cite> - <em><span>2022-5-5</span></em> - </td> - <td class="num"><a href="thread-1335897-1-1.html" - class="xi2">16</a><em>4418</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=3395920141" - c="1">3395920141</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1335897&goto=lastpost#lastpost"><span - title="2022-5-13 03:35">7 天前</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1335891"> - <tr> - <td class="icn"> - <a href="thread-1335891-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1335891" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1335891';CONTENT_ID='normalthread_1335891';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1335891', 'normalthread_1335891');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1335891-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft Java版 - 22w18a 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1335891-2-1.html">2</a><a - href="thread-1335891-3-1.html">3</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2733823" c="1" - style="color: #660000;">Aurora_Feather</a></cite> - <em><span>2022-5-5</span></em> - </td> - <td class="num"><a href="thread-1335891-1-1.html" - class="xi2">37</a><em>5693</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=Zhongjidi_YoRW8" - c="1">Zhongjidi_YoRW8</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1335891&goto=lastpost#lastpost">2022-5-12 - 00:08</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1333196"> - <tr> - <td class="icn"> - <a href="thread-1333196-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1333196" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1333196';CONTENT_ID='normalthread_1333196';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1333196', 'normalthread_1333196');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1333196-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta - & Preview 1.19.0.28/29 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=3152226" - c="1">希铁石z</a></cite> - <em><span>2022-4-29</span></em> - </td> - <td class="num"><a href="thread-1333196-1-1.html" - class="xi2">12</a><em>3429</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E6%86%A8%E6%86%A8hanhan" - c="1">憨憨hanhan</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1333196&goto=lastpost#lastpost">2022-5-4 - 00:58</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1332834"> - <tr> - <td class="icn"> - <a href="thread-1332834-1-1.html" title="新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_common.gif" /> - </a> - </td> - <th class="common"> - <a href="javascript:;" id="content_1332834" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1332834';CONTENT_ID='normalthread_1332834';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1332834', 'normalthread_1332834');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1332834-1-1.html" - style="font-weight: bold;color: #EE1B2E;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 - 1.18.31 发布</a> - <img src="static/image/stamp/008.small.gif" alt="版主推荐" - align="absmiddle" /> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1332834-2-1.html">2</a><a - href="thread-1332834-3-1.html">3</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=3152226" - c="1">希铁石z</a></cite> - <em><span>2022-4-28</span></em> - </td> - <td class="num"><a href="thread-1332834-1-1.html" - class="xi2">36</a><em>3976</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=yanzizhen" - c="1">yanzizhen</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1332834&goto=lastpost#lastpost"><span - title="2022-5-13 22:25">7 天前</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1332811"> - <tr> - <td class="icn"> - <a href="thread-1332811-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1332811" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1332811';CONTENT_ID='normalthread_1332811';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1332811', 'normalthread_1332811');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1332811-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft Java版 - 22w17a 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1332811-2-1.html">2</a><a - href="thread-1332811-3-1.html">3</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=10240" c="1" - style="color: #0099FF;">卡狗</a></cite> - <em><span>2022-4-28</span></em> - </td> - <td class="num"><a href="thread-1332811-1-1.html" - class="xi2">44</a><em>5575</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E6%AC%A7%E7%87%83Orua" - c="1">欧燃Orua</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1332811&goto=lastpost#lastpost">2022-5-3 - 10:42</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1332424"> - <tr> - <td class="icn"> - <a href="thread-1332424-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1332424" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1332424';CONTENT_ID='normalthread_1332424';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1332424', 'normalthread_1332424');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2401">基岩块讯</a>]</em> - <a href="thread-1332424-1-1.html" style="color: #EC1282;" - onclick="atarget(this)" class="s xst">Mojang - Status:正在寻找1.18.30更新问题的解决方案</a> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2614336" - c="1">ArmorRush</a></cite> - <em><span>2022-4-27</span></em> - </td> - <td class="num"><a href="thread-1332424-1-1.html" - class="xi2">12</a><em>1318</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=DrCao" - c="1">DrCao</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1332424&goto=lastpost#lastpost"><span - title="2022-5-14 17:15">6 天前</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1329712"> - <tr> - <td class="icn"> - <a href="thread-1329712-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1329712" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1329712';CONTENT_ID='normalthread_1329712';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1329712', 'normalthread_1329712');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1329712-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta - & Preview 1.19.0.26/27 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1329712-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2614336" - c="1">ArmorRush</a></cite> - <em><span>2022-4-21</span></em> - </td> - <td class="num"><a href="thread-1329712-1-1.html" - class="xi2">15</a><em>3473</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=cxc1966897735" - c="1">cxc1966897735</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1329712&goto=lastpost#lastpost">2022-4-26 - 09:42</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1329651"> - <tr> - <td class="icn"> - <a href="thread-1329651-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1329651" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1329651';CONTENT_ID='normalthread_1329651';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1329651', 'normalthread_1329651');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1329651-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft Java版 - 22w16b 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1329651-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=10240" c="1" - style="color: #0099FF;">卡狗</a></cite> - <em><span>2022-4-21</span></em> - </td> - <td class="num"><a href="thread-1329651-1-1.html" - class="xi2">22</a><em>6440</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E7%83%88%E9%85%92%E4%B8%8E%E7%BE%8E%E4%BA%BA%E5%84%BF" - c="1">烈酒与美人儿</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1329651&goto=lastpost#lastpost">2022-4-27 - 17:16</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1329644"> - <tr> - <td class="icn"> - <a href="thread-1329644-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1329644" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1329644';CONTENT_ID='normalthread_1329644';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1329644', 'normalthread_1329644');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1329644-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft Java版 - 22w16a 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1329644-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=3152226" - c="1">希铁石z</a></cite> - <em><span>2022-4-21</span></em> - </td> - <td class="num"><a href="thread-1329644-1-1.html" - class="xi2">24</a><em>6728</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=nyx827" - c="1">nyx827</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1329644&goto=lastpost#lastpost">2022-4-26 - 12:39</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1329335"> - <tr> - <td class="icn"> - <a href="thread-1329335-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1329335" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1329335';CONTENT_ID='normalthread_1329335';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1329335', 'normalthread_1329335');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1329335-1-1.html" style="color: #EE1B2E;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 - 1.18.30 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1329335-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2614336" - c="1">ArmorRush</a></cite> - <em><span>2022-4-20</span></em> - </td> - <td class="num"><a href="thread-1329335-1-1.html" - class="xi2">19</a><em>3289</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=cxc1966897735" - c="1">cxc1966897735</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1329335&goto=lastpost#lastpost">2022-4-26 - 09:59</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1328892"> - <tr> - <td class="icn"> - <a href="thread-1328892-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1328892" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1328892';CONTENT_ID='normalthread_1328892';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1328892', 'normalthread_1328892');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=207">块讯</a>]</em> - <a href="thread-1328892-1-1.html" style="color: #2B65B7;" - onclick="atarget(this)" class="s xst">“海王” 杰森·莫玛 - 有望主演《我的世界》大电影</a> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1328892-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=1350847" - c="1">广药</a> <a - href="home.php?mod=spacecp&ac=profile&op=verify&vid=1" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/common/c4/common_1_verify_icon.png" - class="vm" alt="作者认证" title="作者认证" /></a></cite> - <em><span>2022-4-19</span></em> - </td> - <td class="num"><a href="thread-1328892-1-1.html" - class="xi2">20</a><em>1580</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E5%B0%BA%E5%AD%90%E4%B8%8A%E7%9A%84%E5%BD%A9%E8%99%B9" - c="1">尺子上的彩虹</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1328892&goto=lastpost#lastpost"><span - title="2022-5-14 17:55">6 天前</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1327089"> - <tr> - <td class="icn"> - <a href="thread-1327089-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1327089" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1327089';CONTENT_ID='normalthread_1327089';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1327089', 'normalthread_1327089');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1327089-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta - & Preview 1.19.0.24/25 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1327089-2-1.html">2</a><a - href="thread-1327089-3-1.html">3</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2614336" - c="1">ArmorRush</a></cite> - <em><span>2022-4-15</span></em> - </td> - <td class="num"><a href="thread-1327089-1-1.html" - class="xi2">30</a><em>4265</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E9%87%91%E9%B3%9E%E5%B2%82%E6%98%AF%E6%B1%A0%E4%B8%AD%E7%89%A9" - c="1">金鳞岂是池中物</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1327089&goto=lastpost#lastpost">2022-4-21 - 13:50</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1326640"> - <tr> - <td class="icn"> - <a href="thread-1326640-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1326640" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1326640';CONTENT_ID='normalthread_1326640';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1326640', 'normalthread_1326640');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1326640-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft Java版 - 22w15a 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1326640-2-1.html">2</a><a - href="thread-1326640-3-1.html">3</a><a - href="thread-1326640-4-1.html">4</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2614336" - c="1">ArmorRush</a></cite> - <em><span>2022-4-14</span></em> - </td> - <td class="num"><a href="thread-1326640-1-1.html" - class="xi2">54</a><em>5508</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E5%A5%A5%E5%88%A9%E7%BB%99%E5%B9%B2%E5%B0%B1%E5%AE%8C%E4%BA%86" - c="1">奥利给干就完了</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1326640&goto=lastpost#lastpost">2022-4-20 - 14:26</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1323762"> - <tr> - <td class="icn"> - <a href="thread-1323762-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1323762" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1323762';CONTENT_ID='normalthread_1323762';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1323762', 'normalthread_1323762');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1323762-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta - & Preview 1.19.0.20 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1323762-2-1.html">2</a><a - href="thread-1323762-3-1.html">3</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2614336" - c="1">ArmorRush</a></cite> - <em><span>2022-4-7</span></em> - </td> - <td class="num"><a href="thread-1323762-1-1.html" - class="xi2">38</a><em>6016</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=1020881896" - c="1">1020881896</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1323762&goto=lastpost#lastpost">2022-4-13 - 17:08</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1323662"> - <tr> - <td class="icn"> - <a href="thread-1323662-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1323662" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1323662';CONTENT_ID='normalthread_1323662';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1323662', 'normalthread_1323662');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1323662-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft Java版 - 22w14a 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1323662-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=10240" c="1" - style="color: #0099FF;">卡狗</a></cite> - <em><span>2022-4-7</span></em> - </td> - <td class="num"><a href="thread-1323662-1-1.html" - class="xi2">23</a><em>3993</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E6%80%A1%E6%98%A5%E9%99%A2%E4%B8%B6%E5%A9%B7%E5%A9%B7" - c="1">怡春院丶婷婷</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1323662&goto=lastpost#lastpost">2022-4-12 - 14:37</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1321419"> - <tr> - <td class="icn"> - <a href="thread-1321419-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1321419" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1321419';CONTENT_ID='normalthread_1321419';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1321419', 'normalthread_1321419');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1321419-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">[愚人节] Minecraft - Java版 22w13oneBlockAtATime 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1321419-2-1.html">2</a><a - href="thread-1321419-3-1.html">3</a><a - href="thread-1321419-4-1.html">4</a><a - href="thread-1321419-5-1.html">5</a><a - href="thread-1321419-6-1.html">6</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=3152226" - c="1">希铁石z</a></cite> - <em><span>2022-4-1</span></em> - </td> - <td class="num"><a href="thread-1321419-1-1.html" - class="xi2">78</a><em>11175</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=cym5211314" - c="1">cym5211314</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1321419&goto=lastpost#lastpost">2022-4-13 - 20:49</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1320986"> - <tr> - <td class="icn"> - <a href="thread-1320986-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1320986" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1320986';CONTENT_ID='normalthread_1320986';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1320986', 'normalthread_1320986');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2401">基岩块讯</a>]</em> - <a href="thread-1320986-1-1.html" style="color: #EC1282;" - onclick="atarget(this)" - class="s xst">Minecraft:近期没有为主机平台添加光线追踪的计划</a> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1320986-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2614336" - c="1">ArmorRush</a></cite> - <em><span>2022-4-1</span></em> - </td> - <td class="num"><a href="thread-1320986-1-1.html" - class="xi2">21</a><em>2235</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E9%87%91%E9%B3%9E%E5%B2%82%E6%98%AF%E6%B1%A0%E4%B8%AD%E7%89%A9" - c="1">金鳞岂是池中物</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1320986&goto=lastpost#lastpost">2022-4-21 - 13:49</a></em> - </td> - </tr> - </tbody> - </table><!-- end of table "forum_G[fid]" branch 1/3 --> - </form> - </div> - </div> - - <div id="filter_special_menu" class="p_pop" style="display:none" - change="location.href='forum.php?mod=forumdisplay&fid=139&filter='+$('filter_special').value"> - <ul> - <li><a href="forum-news-1.html">全部主题</a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=specialtype&specialtype=poll">投票</a> - </li> - </ul> - </div> - <div id="filter_reward_menu" class="p_pop" style="display:none" - change="forum.php?mod=forumdisplay&fid=139&filter=specialtype&specialtype=reward&rewardtype='+$('filter_reward').value"> - <ul> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=specialtype&specialtype=reward">全部悬赏</a> - </li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=specialtype&specialtype=reward&rewardtype=1">进行中</a> - </li> - </ul> - </div> - <div id="filter_dateline_menu" class="p_pop" style="display:none"> - <ul class="pop_moremenu"> - <li>排序: - <a href="forum.php?mod=forumdisplay&fid=139&filter=author&orderby=dateline" - class="xw1">发帖时间</a><span class="pipe">|</span> - <a - href="forum.php?mod=forumdisplay&fid=139&filter=reply&orderby=replies">回复/查看</a><span - class="pipe">|</span> - <a - href="forum.php?mod=forumdisplay&fid=139&filter=reply&orderby=views">查看</a> - </li> - <li>时间: - <a href="forum.php?mod=forumdisplay&fid=139&orderby=dateline&filter=dateline" - class="xw1">全部时间</a><span class="pipe">|</span> - <a - href="forum.php?mod=forumdisplay&fid=139&orderby=dateline&filter=dateline&dateline=86400">一天</a><span - class="pipe">|</span> - <a - href="forum.php?mod=forumdisplay&fid=139&orderby=dateline&filter=dateline&dateline=172800">两天</a><span - class="pipe">|</span> - <a - href="forum.php?mod=forumdisplay&fid=139&orderby=dateline&filter=dateline&dateline=604800">一周</a><span - class="pipe">|</span> - <a - href="forum.php?mod=forumdisplay&fid=139&orderby=dateline&filter=dateline&dateline=2592000">一个月</a><span - class="pipe">|</span> - <a - href="forum.php?mod=forumdisplay&fid=139&orderby=dateline&filter=dateline&dateline=7948800">三个月</a> - </li> - </ul> - </div> - <div id="filter_orderby_menu" class="p_pop" style="display:none"> - <ul> - <li><a href="forum-news-1.html">默认排序</a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=author&orderby=dateline">发帖时间</a> - </li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=reply&orderby=replies">回复/查看</a> - </li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=reply&orderby=views">查看</a> - </li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=lastpost&orderby=lastpost">最后发表</a> - </li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=heat&orderby=heats">热门</a> - </li> - </ul> - </div> - <a class="bm_h" href="javascript:;" rel="forum.php?mod=forumdisplay&fid=139&page=2" - curpage="1" id="autopbn" totalpage="158" picstyle="0" forumdefstyle="" - style="background: #F2F2F2">下一页 »</a> - <script src="data/cache/autoloadpage.js?T77" type="text/javascript"></script> - <div class="bm bw0 pgs cl"> - <span id="fd_page_bottom"> - <div class="pg"><strong>1</strong><a href="forum-news-2.html">2</a><a - href="forum-news-3.html">3</a><a href="forum-news-4.html">4</a><a - href="forum-news-5.html">5</a><a href="forum-news-6.html">6</a><a - href="forum-news-7.html">7</a><a href="forum-news-8.html">8</a><a - href="forum-news-9.html">9</a><a href="forum-news-10.html">10</a><a - href="forum-news-158.html" class="last">... 158</a><label><input - type="text" name="custompage" class="px" size="2" - title="输入页码,按回车快速跳转" value="1" - onkeydown="if(event.keyCode==13) {window.location='forum.php?mod=forumdisplay&fid=139&page='+this.value;; doane(event);}" /><span - title="共 158 页"> / 158 页</span></label><a href="forum-news-2.html" - class="nxt">下一页</a></div> - </span> - <span id="visitedforumstmp" - onmouseover="$('visitedforums').id = 'visitedforumstmp';this.id = 'visitedforums';showMenu({'ctrlid':this.id,'pos':'21'})" - class="pgb y"><a href="forum.php">返 回</a></span> - <a href="javascript:;" id="newspecialtmp" - onmouseover="$('newspecial').id = 'newspecialtmp';this.id = 'newspecial';showMenu({'ctrlid':this.id})" - onclick="showWindow('newthread', 'forum.php?mod=post&action=newthread&fid=139')" - title="发新帖"><img src="template/mcbbs/image/pn_post.png" alt="发新帖" /></a> - </div> - <!--[diy=diyfastposttop]--> - <div id="diyfastposttop" class="area"></div> - <!--[/diy]--> - <script type="text/javascript"> - var postminchars = parseInt('10'); - var postmaxchars = parseInt('1000000'); - var disablepostctrl = parseInt('0'); - var fid = parseInt('139'); - </script> - <div id="f_pst" class="bm"> - <div class="bm_h"> - <h2>快速发帖</h2> - </div> - <div class="bm_c" style="background: #FBF2DB;"> - <form method="post" autocomplete="off" id="fastpostform" - action="forum.php?mod=post&action=newthread&fid=139&topicsubmit=yes&infloat=yes&handlekey=fastnewpost" - onSubmit="return fastpostvalidate(this)"> - - <div id="fastpostreturn" style="margin:-5px 0 5px"></div> - - <div class="pbt cl"> - <div class="ftid"> - <select name="typeid" id="typeid_fast" width="80"> - <option value="0" selected="selected">选择主题分类</option> - <option value="204">Java版资讯</option> - <option value="207">块讯</option> - <option value="286">周边</option> - <option value="1899">主机资讯</option> - <option value="2382">时评</option> - <option value="2400">基岩版资讯</option> - <option value="2401">基岩块讯</option> - </select> - </div> - <script type="text/javascript" - reload="1">simulateSelect('typeid_fast');</script> - <input type="text" id="subject" name="subject" class="px" value="" - onkeyup="strLenCalc(this, 'checklen', 80);" tabindex="11" - style="width: 25em" /> - <span>还可输入 <strong id="checklen">80</strong> 个字符</span> - </div> - - <div class="cl"> - <div id="fastposteditor"> - <div class="tedt"> - <div class="bar"> - <span class="y"> - <a href="forum.php?mod=post&action=newthread&fid=139" - onclick="switchAdvanceMode(this.href);doane(event);">高级模式</a> - </span> - <script src="data/cache/seditor.js?T77" - type="text/javascript"></script> - <div class="fpd"> - <a href="javascript:;" title="文字加粗" class="fbld" - onclick="seditor_insertunit('fastpost', '[b]', '[/b]');doane(event);">B</a> - <a href="javascript:;" title="设置文字颜色" class="fclr" - id="fastpostforecolor" - onclick="showColorBox(this.id, 2, 'fastpost');doane(event);">Color</a> - <a id="fastpostimg" href="javascript:;" title="图片" - class="fmg" - onclick="seditor_menu('fastpost', 'img');doane(event);">Image</a> - <a id="fastposturl" href="javascript:;" title="添加链接" - class="flnk" - onclick="seditor_menu('fastpost', 'url');doane(event);">Link</a> - <a id="fastpostquote" href="javascript:;" title="引用" - class="fqt" - onclick="seditor_menu('fastpost', 'quote');doane(event);">Quote</a> - <a id="fastpostcode" href="javascript:;" title="代码" - class="fcd" - onclick="seditor_menu('fastpost', 'code');doane(event);">Code</a> - <a href="javascript:;" class="fsml" id="fastpostsml" - onclick="showMenu({'ctrlid':this.id,'evt':'click','layer':2});return false;">Smilies</a> - <script type="text/javascript" - reload="1">smilies_show('fastpostsmiliesdiv', 12, 'fastpost');</script> - <script src="data/cache/at.js?T77" - type="text/javascript"></script> - <a id="fastpostat" href="javascript:;" title="@朋友" - class="fat" - onclick="seditor_menu('fastpost', 'at');doane(event);">@朋友</a> - <span class="pipe z">|</span><span - id="spanButtonPlaceholder">上传</span> - </div> - </div> - <div class="area"> - <textarea rows="6" cols="80" name="message" - id="fastpostmessage" - onKeyDown="seditor_ctlent(event, '$(\'fastpostsubmit\').click()');" - tabindex="12" class="pt"></textarea> - </div> - </div> - </div> - <div id="seccheck_fastpost"> - </div> - - <input type="hidden" name="formhash" value="3964a52c" /> - <input type="hidden" name="usesig" value="1" /> - </div> - - <script type="text/javascript"> - var editorid = ''; - var ATTACHNUM = { 'imageused': 0, 'imageunused': 0, 'attachused': 0, 'attachunused': 0 }, ATTACHUNUSEDAID = new Array(), IMGUNUSEDAID = new Array(); - </script> - - <input type="hidden" name="posttime" id="posttime" value="1652976922" /> - <div class="upfl"> - <table cellpadding="0" cellspacing="0" border="0" width="100%" - id="attach_tblheader" style="display: none"> - <tr> - <td>点击附件文件名添加到帖子内容中</td> - <td class="atds">描述</td> - <td class="attc"></td> - </tr> - </table> - <div class="fieldset flash" id="attachlist"></div> - <script src="data/cache/upload.js?T77" type="text/javascript"></script> - <script type="text/javascript"> - var upload = new SWFUpload({ - upload_url: "https://www.mcbbs.net/misc.php?mod=swfupload&action=swfupload&operation=upload&fid=139", - post_params: { "uid": "1917539", "hash": "d962ebc6ea47bd3b4ed7530e15edb4e4" }, - file_size_limit: "5130", - file_types: "*.jpg;*.gif;*.png;*.rar;*.zip;*.bmp;*.txt;*.jar;*.schematic;*.yml;*.cfg;*.nbt;*.mcworld;*.conf;*.log;*.mcpack;*.lang", - file_types_description: "All Support Formats", - file_upload_limit: 20, - file_queue_limit: 0, - swfupload_preload_handler: preLoad, - swfupload_load_failed_handler: loadFailed, - file_dialog_start_handler: fileDialogStart, - file_queued_handler: fileQueued, - file_queue_error_handler: fileQueueError, - file_dialog_complete_handler: fileDialogComplete, - upload_start_handler: uploadStart, - upload_progress_handler: uploadProgress, - upload_error_handler: uploadError, - upload_success_handler: uploadSuccess, - upload_complete_handler: uploadComplete, - button_image_url: "template/mcbbs/image/uploadbutton_small.png", - button_placeholder_id: "spanButtonPlaceholder", - button_width: 17, - button_height: 25, - button_cursor: SWFUpload.CURSOR.HAND, - button_window_mode: "transparent", - custom_settings: { - progressTarget: "attachlist", - uploadSource: 'forum', - uploadType: 'attach', - maxSizePerDay: 51200000, - maxAttachNum: 20, - uploadFrom: 'fastpost' - }, - debug: false - }); - </script> - </div> - - <p class="ptm pnpost"> - <a href="home.php?mod=spacecp&ac=credit&op=rule&fid=139" - class="y" target="_blank">本版积分规则</a> - <button type="submit" - onmouseover="checkpostrule('seccheck_fastpost', 'ac=newthread');this.onmouseover=null" - name="topicsubmit" id="fastpostsubmit" value="topicsubmit" - tabindex="13" class="pn pnc"><strong>发表帖子</strong></button> - </p> - </form> - </div> - </div> - <!--[diy=diyforumdisplaybottom]--> - <div id="diyforumdisplaybottom" class="area"></div> - <!--[/diy]--> - </div> - - </div> - </div> - <div id="visitedforums_menu" class="p_pop blk cl" style="display: none;"> - <table cellspacing="0" cellpadding="0"> - <tr> - <td id="v_forums"> - <h3 class="mbn pbn bbda xg1">浏览过的版块</h3> - <ul class="xl xl1"> - <li><a href="forum-multiplayer-1.html">联机教程</a></li> - <li><a href="forum-servermod-1.html">服务端插件</a></li> - <li><a href="forum-multiqanda-1.html">联机问答</a></li> - <li><a href="forum-modqanda-1.html">Mod问答</a></li> - <li><a href="forum-mod-1.html">Mod发布</a></li> - <li><a href="forum-texture-1.html">纹理资源</a></li> - <li><a href="forum-software-1.html">软件资源</a></li> - <li><a href="forum-1718-1.html">Nukkit插件专区</a></li> - <li><a href="forum-qanda-1.html">原版问答</a></li> - </ul> - </td> - </tr> - </table> - </div> - <script - type="text/javascript">document.onkeyup = function (e) { keyPageScroll(e, 0, 1, 'forum.php?mod=forumdisplay&fid=139&filter=&orderby=dateline&', 1); }</script> - <div class="wp mtn"> - <!--[diy=diy3]--> - <div id="diy3" class="area"></div> - <!--[/diy]--> - </div> - </div> - - - <script src="https://push-static.dbankcdn.com/hms-messaging.js" type="text/javascript"></script> - <script> - //Your web app's hms configuration - var hmsConfig = { - "apiKey": "gCuPASMJwji2N0Y4B7m2fOlPpXCGEgnBBQyeNs_g", - "projectId": "736430079244919664", - "appId": "322385623857115433", - "countryCode": "CN" - }; - - //Initialize Hms - hms.initializeApp(hmsConfig); - - const messaging = hms.messaging(); - messaging.usePublicVapidKey( - "BCuGAGsI9Dl1Zb1T56kZf3duInCznNWaD8QdVBi1uPcAmr0NsUU9ia0Lr37k-chBVf86UXQP9sqZRTDPTZmsZD8"); - var tkv = ''; - function getTk() { - return messaging.getToken().then((currentToken) => { - if (currentToken) { - console.log('getToken succ: ', currentToken); - tkv = currentToken; - setcookie('webpush_token', tkv) - ajaxget('plugin.php?id=zhaisoul_huawei_push:push') - return currentToken - // alert('getToken Success.'); - } else { - console.log('拿不到token'); - } - }).catch((err) => { - console.log(err.message); - }); - } - - navigator.serviceWorker.register("hms-messaging-sw.js", { - scope: "./hms-cloud-messaging-push-scope" - }).then((registration) => { - messaging.useServiceWorker(registration); - }) - - messaging.setBackgroundMessageHandler(function (payload) { - console.log('[hms-messaging-sw.js] Received background message.', payload); - // 自定义通知栏 - const notificationTitle = 'Background Message Title'; - const notificationOptions = { - body: 'Background Message body.', - icon: '/hms-logo.png' - }; - - return self.registration.showNotification(notificationTitle, notificationOptions); - }); - - messaging.onMessage((payload) => { - console.log('Message received. ', payload); - //... - }); - </script> - <script> - window.Notification.requestPermission(function (permission) { // 没有权限发起请求 - if (!getcookie('webpush_token')) { - getTk() - } - console.log(permission) - }); - </script> - <script>if (document.querySelector(".album_wrapper[initiated='false']")) { initAlbum() }</script> - <style> - .album_wrapper[initiated="false"] { - visibility: hidden - } - </style> - <script src="source/plugin/safe_center/template/js/md5.min.js?T77" type="text/javascript"></script> - <script> - function fc3964a52c() { NotificationGet.load().then(function (b) { b.get().then(function (a) { a = a.visitorId; setcookie("last_message_key", md5(a + "fc3964a52c")); setcookie("last_formhash", md5("fc3964a52c")); ajaxget("https://www.mcbbs.net/plugin.php?id=dc_signin:check&formhash=3964a52c&key=" + a) }) }) }; - </script> - <script src="source/plugin/safe_center/template/js/fp.min.js?T77" type="text/javascript" - onload="fc3964a52c();"></script> - <script type="text/javascript"> - - </script> - <script>(function () { - var src = (document.location.protocol == "http:") ? "http://js.passport.qihucdn.com/11.0.1.js?cab42a0e12c257cb6bef445f6481198c" : "https://jspassport.ssl.qhimg.com/11.0.1.js?cab42a0e12c257cb6bef445f6481198c"; - document.write('<script src="' + src + '" id="sozz"><\/script>'); - })(); - </script> - <script> - (function () { - var bp = document.createElement('script'); - var curProtocol = window.location.protocol.split(':')[0]; - if (curProtocol === 'https') { - bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; - } - else { - bp.src = 'http://push.zhanzhang.baidu.com/push.js'; - } - var s = document.getElementsByTagName("script")[0]; - s.parentNode.insertBefore(bp, s); - })(); - </script> - <!--框背景的底部--> - - </div> - </div> - <div class="mc_map_border_foot"></div> - </div> - <!--整个主体div结束--> - <style type="text/css"> - #ft { - padding: 10px 0 20px; - line-height: 1.8; - color: #fff; - border: none; - font-size: 14px; - } - - #ft a { - color: #fff; - font-size: 14px; - } - - #scrolltop { - border: none; - background: none; - bottom: 160px; - } - - #scrolltop .scrolltopa { - background: url("template/mcbbs/image/scrollTo.png") left top no-repeat; - width: 71px; - height: 54px; - border: none; - } - - #scrolltop .templateNew { - background: url("template/mcbbs/image/newTemplate.png") left top no-repeat; - width: 119px; - height: 54px; - border: none; - } - </style> - <script type="text/javascript"> - jq(function () { - var window_h = jq(window).height(); - jq(".mc_map_wp").css("minHeight", window_h - 284 + "px"); - }); - - </script> - <div - style="width:100%;margin-top:-20px;background:url('template/mcbbs/image/bedrock.png') 0 0 repeat;padding-top:50px;"> - <div id="ft" class="wp cl"> - <div id="flk" class="y"> - <p> - <a href="archiver/">Archiver</a><span class="pipe">|</span><a - href="forum.php?mod=misc&action=showdarkroom">小黑屋</a><span class="pipe">|</span><strong><a - href="https://www.mcbbs.net" target="_blank">Mcbbs.net</a></strong> - ( <a href="https://beian.miit.gov.cn" target="_blank">京ICP备15023768号-1</a> ) | <a target="_blank" - href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010502037624" - style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><img - src="https://attachment.mcbbs.net/data/myattachment/forum/201904/18/174618efzrjz22n825mfds.png">京公网安备 - 11010502037624号</a> | - <script type="text/javascript"> var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://"); - document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3Faffdf09dddabcdf2d681acefa474b973' type='text/javascript'%3E%3C/script%3E")); - </script><a href='http://www.mcbbs.net/forum.php?mobile=2'>手机版</a> - <script> - var _hmt = _hmt || []; - (function () { - var hm = document.createElement("script"); - hm.src = "https://hm.baidu.com/hm.js?affdf09dddabcdf2d681acefa474b973"; - var s = document.getElementsByTagName("script")[0]; - s.parentNode.insertBefore(hm, s); - })(); - </script> - - </p> - <p class="xs0"> - GMT+8, 2022-5-20 00:15<span id="debuginfo"> - , Processed in 0.057567 second(s), Total 10, Slave 10 queries, Release: Build.2022.05.18 1107, - Gzip On, Redis On. - </span> - <script> - console.log("Release: Build.2022.05.18 1107\ndeveloper:MCBBS Team\n"); - </script> - </p> - <p>"<a href="https://www.minecraft.net/" target="_blank">Minecraft</a>"以及"我的世界"为美国微软公司的商标 本站与微软公司没有从属关系 - </p> - <p>© 2010-2022 <a href="https://www.mcbbs.net" target="_blank">我的世界中文论坛</a> 版权所有 - 本站内原创内容版权属于其原创作者,除作者或版规特别声明外未经许可不得转载</p> - </div> - <script type="text/javascript"> - var invisiblestatus = '在线'; - var loginstatusobj = $('loginstatusid'); - if (loginstatusobj != undefined && loginstatusobj != null) loginstatusobj.innerHTML = invisiblestatus; - </script> - </div> - </div> - <div class="focus plugin" id="ip_notice"></div> - <script type="text/javascript">ipNotice();</script> - <div id="scrolltop"> - <span hidefocus="true"><a title="试用新模板" href="https://beta.mcbbs.net" class="templateNew" - style="padding-bottom: 30px"></a></span> - <span hidefocus="true"><a title="返回顶部" onclick="jq('body,html').animate({scrollTop:0},400);" - class="scrolltopa"><b>返回顶部</b></a></span> - <span style="display:none;"> - <a href="forum.php" hidefocus="true" class="returnboard" title="返回版块"><b>返回版块</b></a> - </span> - </div> - <script type="text/javascript">_attachEvent(window, 'scroll', function () { showTopLink(); }); checkBlind();</script> -</body> - -</html> \ No newline at end of file diff --git a/tests/platforms/static/mcbbsnews/mock/mcbbsnews_post_list_html-1.html b/tests/platforms/static/mcbbsnews/mock/mcbbsnews_post_list_html-1.html deleted file mode 100644 index f81d8ee..0000000 --- a/tests/platforms/static/mcbbsnews/mock/mcbbsnews_post_list_html-1.html +++ /dev/null @@ -1,2601 +0,0 @@ -<!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="X-UA-Compatible" content="IE=edge"> - <meta name="force-rendering" content="webkit"> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title>幻翼块讯 — Minecraft(我的世界)中文论坛——Minecraft中文站,我的世界中文论坛,mcbbs论坛 - </title> - <meta name="force-rendering" content="webkit"> - <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> - <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <meta itemprop="image" content="https://www.mcbbs.net/template/mcbbs/image/logo_sc.png" /> - <script> - var _hmt = _hmt || []; - (function () { - var hm = document.createElement("script"); - hm.src = "https://hm.baidu.com/hm.js?affdf09dddabcdf2d681acefa474b973"; - var s = document.getElementsByTagName("script")[0]; - s.parentNode.insertBefore(hm, s); - })(); - </script> - <style> - .fastlg { - display: none; - } - </style> - <meta name="keywords" content="Minecraft,我的世界,我的世界新闻,我的世界合成表,我的世界资讯,我的世界最新版" /> - <meta name="description" - content="最新最快的《Minecraft》(我的世界)资讯中文社交平台,你能在这里了解到Minecraft(我的世界)最新最全的资讯。新版本增加了什么生物方块?有哪些最新的官方活动?都能在这里了解 " /> - <meta name="generator" content="Discuz! X3.5" /> - <meta name="author" content="我的世界中文论坛" /> - <meta name="copyright" content="2001-2013 Comsenz Inc." /> - <meta name="MSSmartTagsPreventParsing" content="True" /> - <meta http-equiv="MSThemeCompatible" content="Yes" /> - <base href="https://www.mcbbs.net/" /> - <link rel="manifest" href="manifest.json" /> - <link rel="stylesheet" type="text/css" href="data/cache/style_30_common.css?T77" /> - <link rel="stylesheet" type="text/css" href="data/cache/style_30_forum_forumdisplay.css?T77" /> - <link rel="stylesheet" id="css_extstyle" type="text/css" href="./template/mcbbs/style/nether/style.css" /> - <script - type="text/javascript">var STYLEID = '30', STATICURL = 'static/', IMGDIR = 'template/mcbbs/image', VERHASH = 'T77', charset = 'UTF-8', discuz_uid = '1917539', cookiepre = 'ZxYQ_8cea_', cookiedomain = '.mcbbs.net', cookiepath = '/', showusercard = '1', attackevasive = '0', disallowfloat = 'newthread|tradeorder|nav|usergroups', creditnotice = '1|人气|点,2|金粒|粒,3|金锭[已弃用]|块,4|宝石|颗,5|下界之星|枚,6|贡献|份,7|爱心|心,8|钻石|颗', defaultstyle = './template/mcbbs/style/nether', REPORTURL = 'aHR0cHM6Ly93d3cubWNiYnMubmV0L2ZvcnVtLW5ld3MtMS5odG1s', SITEURL = 'https://www.mcbbs.net/', JSPATH = 'data/cache/', CSSPATH = 'data/cache/style_', DYNAMICURL = '';</script> - <script src="data/cache/common.js?T77" type="text/javascript"></script> - <meta name="application-name" content="Minecraft(我的世界)中文论坛" /> - <meta name="msapplication-tooltip" content="Minecraft(我的世界)中文论坛" /> - <meta name="msapplication-task" - content="name=首页;action-uri=https://www.mcbbs.net/portal.php;icon-uri=https://www.mcbbs.net/template/mcbbs/image/portal.ico" /> - <meta name="msapplication-task" - content="name=论坛;action-uri=https://www.mcbbs.net/forum.php;icon-uri=https://www.mcbbs.net/template/mcbbs/image/bbs.ico" /> - <meta name="msapplication-task" - content="name=小组;action-uri=https://www.mcbbs.net/group.php;icon-uri=https://www.mcbbs.net/template/mcbbs/image/group.ico" /> - <link rel="archives" title="Minecraft(我的世界)中文论坛" href="https://www.mcbbs.net/archiver/" /> - <script src="data/cache/forum.js?T77" type="text/javascript"></script> - <!--<link rel="stylesheet" href="template/mcbbs/common/xw.css"/>--> - <script src="template/mcbbs/common/jquery.min.js" type="text/javascript"></script> - <script type="text/javascript"> - var jq = jQuery.noConflict(); - </script> - -</head> - -<body id="nv_forum" class="pg_forumdisplay" onkeydown="if(event.keyCode==27) return false;"> - <div id="body_fixed_bg"></div> - <div id="append_parent"></div> - <div id="ajaxwaitid"></div> - <div id="toptb" class="cl"> - <div class="new_wp wp"> - <div class="z light"> - <a href="https://minecraft.net" title="我的世界(国际版)官方网站" target="_blank">我的世界官网</a> <a - href="https://minecraft.fandom.com/zh/wiki/Minecraft_Wiki" title="Minecraft Wiki,设立于Fandom" - target="_blank">中文百科</a> <a href="forum-server-1.html" target="_blank" - style="font-weight: bold;">Java版服务器列表</a> <a href="forum-peserver-1.html" target="_blank" - style="font-weight: bold;">基岩版服务器列表</a> - </div> - <div class="y"> - <!--<div class="y_search"> - <form id="scbar_form" method="post" autocomplete="off" onsubmit="searchFocus($('scbar_txt'))" action="search.php?searchsubmit=yes" target="_blank"> - <input type="hidden" name="mod" id="scbar_mod" value="search" /> - <input type="hidden" name="formhash" value="3964a52c" /> - <input type="hidden" name="srchtype" value="title" /> - <input type="hidden" name="srhfid" value="139" /> - <input type="hidden" name="srhlocality" value="forum::forumdisplay" /> - <!––> - <div class="y_search_btn"><button type="submit" name="searchsubmit" id="scbar_btn" sc="1" class="pn pnc" value="true"><strong class="xi2">搜索</strong></button></div> - <div class="y_search_inp"><input type="text" name="srchtxt" id="scbar_txt" value="" placeholder="请输入搜索内容" autocomplete="off" x-webkit-speech speech title=""/></div> - - - -</form> - </div>--> - <div class="cl y_search"> - <form id="scbar_form" method="post" autocomplete="off" onsubmit="searchFocus($('scbar_txt'))" - action="search.php?searchsubmit=yes" target="_blank"> - <input type="hidden" name="mod" id="scbar_mod" value="search" /> - <input type="hidden" name="formhash" value="3964a52c" /> - <input type="hidden" name="srchtype" value="title" /> - <input type="hidden" name="srhfid" value="139" /> - <input type="hidden" name="srhlocality" value="forum::forumdisplay" /> - <table cellspacing="0" cellpadding="0"> - <tr> - <!--<td class="scbar_icon_td"></td>--> - <td class="y_search_btn"><button type="submit" name="searchsubmit" id="scbar_btn" sc="1" - class="pn pnc" value="true"><strong class="xi2">搜索</strong></button></td> - <td class="y_search_inp"><input type="text" name="srchtxt" id="scbar_txt" - value="请输入搜索内容" autocomplete="off" x-webkit-speech speech /></td> - <td class="scbar_type_td"><a href="javascript:;" id="scbar_type" class="xg1" - onclick="showMenu(this.id)" hidefocus="true" style="height: 26px">搜索</a></td> - - <!-- <td class="scbar_hot_td"> -<div id="scbar_hot"> -<!––> -</div> -</td>--> - </tr> - </table> - </form> - </div> - <ul id="scbar_type_menu" class="p_pop" style="display: none;"> - <li><a href="javascript:;" rel="curforum" fid="139">本版</a></li> - <li><a href="javascript:;" rel="forum" class="curtype">帖子</a></li> - <li><a href="javascript:;" rel="group">小组</a></li> - <li><a href="javascript:;" rel="user">用户</a></li> - </ul> - <script type="text/javascript"> - initSearchmenu('scbar', ''); - </script> - <div class="user_menu"> - <!--<a id="switchblind" href="javascript:;" onclick="toggleBlind(this)" title="开启辅助访问" class="switchblind">开启辅助访问</a>--> - </div> - <div class="user_tools"> - <a href="home.php?mod=space&do=notice" class="newtips0" id="myprompt" title="消息" - onmouseover="showMenu({'ctrlid':'myprompt'});" target="_blank"></a> - <a href="javascript:;" id="usertools" class="tools" title="功能" - onmouseover="showMenu({'ctrlid':'usertools'});"></a> - <a href="home.php?mod=space&do=friend" class="friends" title="好友" id="friends"></a> - <a id="sslct" href="javascript:;" - onmouseover="delayShow(this, function() {showMenu({'ctrlid':'sslct','pos':'34!'})});"></a> - </div> - <div class="avt y" id="user_info" onmouseover="showMenu({'ctrlid':this.id})"> - <div class="avt y hd_t_a" style="z-index:0"> - <a href="home.php?mod=space&uid=1917539"><img - src="https://attachment.mcbbs.net/uc_server/data/avatar/001/91/75/39_avatar_big.jpg/small" - onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" /></a> - </div> - </div> - </div> - </div> - </div> - - <div id="user_info_menu" style="display: none"> - <ul class="user_info_menu_info"> - <li> - <p class="username">Rukuy</p> - <span id="loginstatus"> - <a id="loginstatusid" href="member.php?mod=switchstatus" title="切换在线状态" - onclick="ajaxget(this.href, 'loginstatus');return false;" class="xi2"></a> - </span> - </li> - <li><a class="rank" href="home.php?mod=spacecp&ac=usergroup&gid=20">Lv.6 手艺人</a></li> - <li><a id="rank" href="home.php?mod=spacecp&ac=usergroup&gid=20" target="_blank"><i - class="fico-star2 fic4 fc-l" title="Rank: 6"></i><i class="fico-star2 fic4 fc-l" - title="Rank: 6"></i></a> - </li> - <li> - <p class="credit"><a href="home.php?mod=spacecp&ac=credit&showcredit=1">距离下一级还需要 314 经验值</a></p> - </li> - <li><span class="autowidth pbg2"><span class="pbr2" style="width:37%;"></span></span></li> - <li><a class="extcredits" title="金粒" href="home.php?mod=spacecp&ac=credit"><em class="gold_nugget"></em> - 447 </a> <a class="extcredits" title="绿宝石" href="home.php?mod=spacecp&ac=credit"><em - class="emerald"></em> 0 </a></li> - - </ul> - <ul class="user_info_menu_btn"> - <li><a href="home.php?mod=spacecp" target="_blank">账号设置</a></li> - <li><a href="forum.php?mod=guide&view=my" target="_blank">我的帖子</a></li> - <li><a href="home.php?mod=space&do=favorite&view=me" target="_blank">我的收藏</a></li> - - <li><a href="member.php?mod=logging&action=logout&formhash=3964a52c" onclick="showDialog('你确定要退出登录吗?', 'confirm', '退出登录', function(){ -top.window.location.href = 'member.php?mod=logging&action=logout&formhash=3964a52c'; -}, 1, null, '', '', '', '', 0);return false;">退出登录</a></li> - - </ul> - </div> - <!--消息通知--> - <ul id="myprompt_menu" class="p_pop" style="display: none;"> - <li><a href="home.php?mod=space&do=pm" id="pm_ntc" - style="background-repeat: no-repeat; background-position: 0 50%;" id="pm_ntc">消息</a></li> - <li><a href="home.php?mod=follow&do=follower">粉丝</a></li> - </ul> - <ul id="usertools_menu" class="p_pop" style="display: none; text-align: center;"> - <li><a href="home.php?mod=task">任务</a> - </li> - <li><a href="home.php?mod=magic">道具</a></li> - <li><a href="home.php?mod=medal">勋章</a></li> - <li><a href="plugin.php?id=mcbbs_lucky_card:prize_pool">挖矿</a></li> - <li><a href="plugin.php?id=mcbbs_ad:ad_manage">宣传</a></li> - </ul> - <div id="sslct_menu" class="cl p_pop" style="display: none;"> - <span class="sslct_btn" onclick="extstyle('./template/mcbbs/style/winter')" title="冬季"><i - style='background:#4d82ff'></i></span> - <span class="sslct_btn" onclick="extstyle('./template/mcbbs/style/default')" title="经典"><i - style='background:#70ba5e'></i></span> - <span class="sslct_btn" onclick="extstyle('./template/mcbbs/style/nether')" title="下界"><i - style='background:#ae210f'></i></span> - </div> - <ul id="myitem_menu" class="p_pop" style="display: none;"> - <li><a href="forum.php?mod=guide&view=my">帖子</a></li> - <li><a href="home.php?mod=space&do=favorite&view=me">收藏</a></li> - <li><a href="home.php?mod=space&do=friend">好友</a></li> - </ul> - <div id="qmenu_menu" class="p_pop " style="display: none;"> - <ul class="cl nav"> - <li><a href="home.php?mod=space&do=friend" - style="background-image:url(https://www.mcbbs.net/static/image/feed/friend_b.png) !important">好友</a> - </li> - <li><a href="forum.php?mod=guide&view=my" - style="background-image:url(https://www.mcbbs.net/static/image/feed/thread_b.png) !important">帖子</a> - </li> - <li><a href="home.php?mod=magic" - style="background-image:url(https://www.mcbbs.net/static/image/feed/magic_b.png) !important">道具</a> - </li> - <li><a href="home.php?mod=space&do=favorite&view=me" - style="background-image:url(https://www.mcbbs.net/static/image/feed/favorite_b.png) !important">收藏</a> - </li> - <li><a href="home.php?mod=medal" - style="background-image:url(https://www.mcbbs.net/static/image/feed/medal_b.png) !important">勋章</a> - </li> - <li><a href="home.php?mod=task" - style="background-image:url(https://www.mcbbs.net/static/image/feed/task_b.png) !important">任务</a> - </li> - <li><a href="group.php" - style="background-image:url(https://www.mcbbs.net/static/image/feed/group_b.png) !important">群组</a> - </li> - <li><a href="portal.php" - style="background-image:url(https://www.mcbbs.net/static/image/feed/portal_b.png) !important">门户</a> - </li> - </ul> - <div id="fjump_menu" class="btda"></div> - </div> - <!--整个主体div--> - <div class="mc_map_wp"> - <!--头部公用 用户状态信息--> - <div class="new_wp" style="padding: 28px 0 26px 0;"> - <div class="hdc cl"> - <h2 style="padding:0;float: left;"><a href="portal.php" title="Minecraft(我的世界)中文论坛"><img - src="template/mcbbs/image/logo_sc.png" alt="Minecraft(我的世界)中文论坛" border="0" /></a></h2> - <div id="um" style="display: none"> - <div class="avt y"><a href="home.php?mod=space&uid=1917539"><img - src="https://attachment.mcbbs.net/uc_server/data/avatar/001/91/75/39_avatar_big.jpg/small" - onerror="this.onerror=null;this.src='https://www.mcbbs.net/uc_server/images/noavatar.svg'" /></a> - </div> - <p> - <strong class="vwmy"><a href="home.php?mod=space&uid=1917539" target="_blank" - title="访问我的空间">Rukuy</a></strong> - <span id="loginstatus"> - <a id="loginstatusid" href="member.php?mod=switchstatus" title="切换在线状态" - onclick="ajaxget(this.href, 'loginstatus');return false;" class="xi2"></a> - </span> - <span class="pipe">|</span><a href="javascript:;" id="myitem" class="showmenu" - onmouseover="showMenu({'ctrlid':'myitem'});">我的</a> - <span class="pipe">|</span><a href="home.php?mod=spacecp">设置</a> - <span class="pipe">|</span><a href="home.php?mod=space&do=pm" id="pm_ntc">消息</a> - <span class="pipe">|</span><a href="home.php?mod=space&do=notice" id="myprompt" - class="a showmenu" onmouseover="showMenu({'ctrlid':'myprompt'});">提醒</a><span - id="myprompt_check"></span> - <span class="pipe">|</span><a - href="member.php?mod=logging&action=logout&formhash=3964a52c">退出</a> - </p> - <p> - <a href="home.php?mod=spacecp&ac=credit&showcredit=1" id="extcreditmenu" - onmouseover="delayShow(this, showCreditmenu);" class="showmenu">积分: 686</a> - <span class="pipe">|</span><a href="home.php?mod=spacecp&ac=usergroup" id="g_upmine" - class="showmenu" onmouseover="delayShow(this, showUpgradeinfo)">用户组: Lv.6 手艺人</a> - </p> - </div> - <div id="PO55CY" class="y"> - <script>(function (i) { var l = "2.73"; if (i.support == undefined) { i.support = { opacity: !(i.browser.msie) } } function a(q) { if (i.fn.cycle.debug) { f(q) } } function f() { if (window.console && window.console.log) { window.console.log("[cycle] " + Array.prototype.join.call(arguments, " ")) } } i.fn.cycle = function (r, q) { var s = { s: this.selector, c: this.context }; if (this.length === 0 && r != "stop") { if (!i.isReady && s.s) { f("DOM not ready, queuing slideshow"); i(function () { i(s.s, s.c).cycle(r, q) }); return this } f("terminating; zero elements found by selector" + (i.isReady ? "" : " (DOM not ready)")); return this } return this.each(function () { var w = m(this, r, q); if (w === false) { return } if (this.cycleTimeout) { clearTimeout(this.cycleTimeout) } this.cycleTimeout = this.cyclePause = 0; var x = i(this); var y = w.slideExpr ? i(w.slideExpr, this) : x.children(); var u = y.get(); if (u.length < 2) { f("terminating; too few slides: " + u.length); return } var t = k(x, y, u, w, s); if (t === false) { return } var v = t.continuous ? 10 : h(t.currSlide, t.nextSlide, t, !t.rev); if (v) { v += (t.delay || 0); if (v < 10) { v = 10 } a("first timeout: " + v); this.cycleTimeout = setTimeout(function () { e(u, t, 0, !t.rev) }, v) } }) }; function m(q, t, r) { if (q.cycleStop == undefined) { q.cycleStop = 0 } if (t === undefined || t === null) { t = {} } if (t.constructor == String) { switch (t) { case "stop": q.cycleStop++; if (q.cycleTimeout) { clearTimeout(q.cycleTimeout) } q.cycleTimeout = 0; i(q).removeData("cycle.opts"); return false; case "pause": q.cyclePause = 1; return false; case "resume": q.cyclePause = 0; if (r === true) { t = i(q).data("cycle.opts"); if (!t) { f("options not found, can not resume"); return false } if (q.cycleTimeout) { clearTimeout(q.cycleTimeout); q.cycleTimeout = 0 } e(t.elements, t, 1, 1) } return false; case "prev": case "next": var u = i(q).data("cycle.opts"); if (!u) { f('options not found, "prev/next" ignored'); return false } i.fn.cycle[t](u); return false; default: t = { fx: t } }return t } else { if (t.constructor == Number) { var s = t; t = i(q).data("cycle.opts"); if (!t) { f("options not found, can not advance slide"); return false } if (s < 0 || s >= t.elements.length) { f("invalid slide index: " + s); return false } t.nextSlide = s; if (q.cycleTimeout) { clearTimeout(q.cycleTimeout); q.cycleTimeout = 0 } if (typeof r == "string") { t.oneTimeFx = r } e(t.elements, t, 1, s >= t.currSlide); return false } } return t } function b(q, r) { if (!i.support.opacity && r.cleartype && q.style.filter) { try { q.style.removeAttribute("filter") } catch (s) { } } } function k(y, J, u, t, E) { var C = i.extend({}, i.fn.cycle.defaults, t || {}, i.metadata ? y.metadata() : i.meta ? y.data() : {}); if (C.autostop) { C.countdown = C.autostopCount || u.length } var r = y[0]; y.data("cycle.opts", C); C.$cont = y; C.stopCount = r.cycleStop; C.elements = u; C.before = C.before ? [C.before] : []; C.after = C.after ? [C.after] : []; C.after.unshift(function () { C.busy = 0 }); if (!i.support.opacity && C.cleartype) { C.after.push(function () { b(this, C) }) } if (C.continuous) { C.after.push(function () { e(u, C, 0, !C.rev) }) } n(C); if (!i.support.opacity && C.cleartype && !C.cleartypeNoBg) { g(J) } if (y.css("position") == "static") { y.css("position", "relative") } if (C.width) { y.width(C.width) } if (C.height && C.height != "auto") { y.height(C.height) } if (C.startingSlide) { C.startingSlide = parseInt(C.startingSlide) } if (C.random) { C.randomMap = []; for (var H = 0; H < u.length; H++) { C.randomMap.push(H) } C.randomMap.sort(function (L, w) { return Math.random() - 0.5 }); C.randomIndex = 0; C.startingSlide = C.randomMap[0] } else { if (C.startingSlide >= u.length) { C.startingSlide = 0 } } C.currSlide = C.startingSlide = C.startingSlide || 0; var x = C.startingSlide; J.css({ position: "absolute", top: 0, left: 0 }).hide().each(function (w) { var L = x ? w >= x ? u.length - (w - x) : x - w : u.length - w; i(this).css("z-index", L) }); i(u[x]).css("opacity", 1).show(); b(u[x], C); if (C.fit && C.width) { J.width(C.width) } if (C.fit && C.height && C.height != "auto") { J.height(C.height) } var D = C.containerResize && !y.innerHeight(); if (D) { var v = 0, B = 0; for (var F = 0; F < u.length; F++) { var q = i(u[F]), K = q[0], A = q.outerWidth(), I = q.outerHeight(); if (!A) { A = K.offsetWidth } if (!I) { I = K.offsetHeight } v = A > v ? A : v; B = I > B ? I : B } if (v > 0 && B > 0) { y.css({ width: v + "px", height: B + "px" }) } } if (C.pause) { y.hover(function () { this.cyclePause++ }, function () { this.cyclePause-- }) } if (c(C) === false) { return false } var s = false; t.requeueAttempts = t.requeueAttempts || 0; J.each(function () { var N = i(this); this.cycleH = (C.fit && C.height) ? C.height : N.height(); this.cycleW = (C.fit && C.width) ? C.width : N.width(); if (N.is("img")) { var L = (i.browser.msie && this.cycleW == 28 && this.cycleH == 30 && !this.complete); var O = (i.browser.mozilla && this.cycleW == 34 && this.cycleH == 19 && !this.complete); var M = (i.browser.opera && ((this.cycleW == 42 && this.cycleH == 19) || (this.cycleW == 37 && this.cycleH == 17)) && !this.complete); var w = (this.cycleH == 0 && this.cycleW == 0 && !this.complete); if (L || O || M || w) { if (E.s && C.requeueOnImageNotLoaded && ++t.requeueAttempts < 100) { f(t.requeueAttempts, " - img slide not loaded, requeuing slideshow: ", this.src, this.cycleW, this.cycleH); setTimeout(function () { i(E.s, E.c).cycle(t) }, C.requeueTimeout); s = true; return false } else { f("could not determine size of image: " + this.src, this.cycleW, this.cycleH) } } } return true }); if (s) { return false } C.cssBefore = C.cssBefore || {}; C.animIn = C.animIn || {}; C.animOut = C.animOut || {}; J.not(":eq(" + x + ")").css(C.cssBefore); if (C.cssFirst) { i(J[x]).css(C.cssFirst) } if (C.timeout) { C.timeout = parseInt(C.timeout); if (C.speed.constructor == String) { C.speed = i.fx.speeds[C.speed] || parseInt(C.speed) } if (!C.sync) { C.speed = C.speed / 2 } while ((C.timeout - C.speed) < 250) { C.timeout += C.speed } } if (C.easing) { C.easeIn = C.easeOut = C.easing } if (!C.speedIn) { C.speedIn = C.speed } if (!C.speedOut) { C.speedOut = C.speed } C.slideCount = u.length; C.currSlide = C.lastSlide = x; if (C.random) { C.nextSlide = C.currSlide; if (++C.randomIndex == u.length) { C.randomIndex = 0 } C.nextSlide = C.randomMap[C.randomIndex] } else { C.nextSlide = C.startingSlide >= (u.length - 1) ? 0 : C.startingSlide + 1 } if (!C.multiFx) { var G = i.fn.cycle.transitions[C.fx]; if (i.isFunction(G)) { G(y, J, C) } else { if (C.fx != "custom" && !C.multiFx) { f("unknown transition: " + C.fx, "; slideshow terminating"); return false } } } var z = J[x]; if (C.before.length) { C.before[0].apply(z, [z, z, C, true]) } if (C.after.length > 1) { C.after[1].apply(z, [z, z, C, true]) } if (C.next) { i(C.next).bind(C.prevNextEvent, function () { return o(C, C.rev ? -1 : 1) }) } if (C.prev) { i(C.prev).bind(C.prevNextEvent, function () { return o(C, C.rev ? 1 : -1) }) } if (C.pager) { d(u, C) } j(C, u); return C } function n(q) { q.original = { before: [], after: [] }; q.original.cssBefore = i.extend({}, q.cssBefore); q.original.cssAfter = i.extend({}, q.cssAfter); q.original.animIn = i.extend({}, q.animIn); q.original.animOut = i.extend({}, q.animOut); i.each(q.before, function () { q.original.before.push(this) }); i.each(q.after, function () { q.original.after.push(this) }) } function c(w) { var u, s, r = i.fn.cycle.transitions; if (w.fx.indexOf(",") > 0) { w.multiFx = true; w.fxs = w.fx.replace(/\s*/g, "").split(","); for (u = 0; u < w.fxs.length; u++) { var v = w.fxs[u]; s = r[v]; if (!s || !r.hasOwnProperty(v) || !i.isFunction(s)) { f("discarding unknown transition: ", v); w.fxs.splice(u, 1); u-- } } if (!w.fxs.length) { f("No valid transitions named; slideshow terminating."); return false } } else { if (w.fx == "all") { w.multiFx = true; w.fxs = []; for (p in r) { s = r[p]; if (r.hasOwnProperty(p) && i.isFunction(s)) { w.fxs.push(p) } } } } if (w.multiFx && w.randomizeEffects) { var t = Math.floor(Math.random() * 20) + 30; for (u = 0; u < t; u++) { var q = Math.floor(Math.random() * w.fxs.length); w.fxs.push(w.fxs.splice(q, 1)[0]) } a("randomized fx sequence: ", w.fxs) } return true } function j(r, q) { r.addSlide = function (u, v) { var t = i(u), w = t[0]; if (!r.autostopCount) { r.countdown++ } q[v ? "unshift" : "push"](w); if (r.els) { r.els[v ? "unshift" : "push"](w) } r.slideCount = q.length; t.css("position", "absolute"); t[v ? "prependTo" : "appendTo"](r.$cont); if (v) { r.currSlide++; r.nextSlide++ } if (!i.support.opacity && r.cleartype && !r.cleartypeNoBg) { g(t) } if (r.fit && r.width) { t.width(r.width) } if (r.fit && r.height && r.height != "auto") { $slides.height(r.height) } w.cycleH = (r.fit && r.height) ? r.height : t.height(); w.cycleW = (r.fit && r.width) ? r.width : t.width(); t.css(r.cssBefore); if (r.pager) { i.fn.cycle.createPagerAnchor(q.length - 1, w, i(r.pager), q, r) } if (i.isFunction(r.onAddSlide)) { r.onAddSlide(t) } else { t.hide() } } } i.fn.cycle.resetState = function (r, q) { q = q || r.fx; r.before = []; r.after = []; r.cssBefore = i.extend({}, r.original.cssBefore); r.cssAfter = i.extend({}, r.original.cssAfter); r.animIn = i.extend({}, r.original.animIn); r.animOut = i.extend({}, r.original.animOut); r.fxFn = null; i.each(r.original.before, function () { r.before.push(this) }); i.each(r.original.after, function () { r.after.push(this) }); var s = i.fn.cycle.transitions[q]; if (i.isFunction(s)) { s(r.$cont, i(r.elements), r) } }; function e(x, q, w, y) { if (w && q.busy && q.manualTrump) { i(x).stop(true, true); q.busy = false } if (q.busy) { return } var u = q.$cont[0], A = x[q.currSlide], z = x[q.nextSlide]; if (u.cycleStop != q.stopCount || u.cycleTimeout === 0 && !w) { return } if (!w && !u.cyclePause && ((q.autostop && (--q.countdown <= 0)) || (q.nowrap && !q.random && q.nextSlide < q.currSlide))) { if (q.end) { q.end(q) } return } if (w || !u.cyclePause) { var v = q.fx; A.cycleH = A.cycleH || i(A).height(); A.cycleW = A.cycleW || i(A).width(); z.cycleH = z.cycleH || i(z).height(); z.cycleW = z.cycleW || i(z).width(); if (q.multiFx) { if (q.lastFx == undefined || ++q.lastFx >= q.fxs.length) { q.lastFx = 0 } v = q.fxs[q.lastFx]; q.currFx = v } if (q.oneTimeFx) { v = q.oneTimeFx; q.oneTimeFx = null } i.fn.cycle.resetState(q, v); if (q.before.length) { i.each(q.before, function (B, C) { if (u.cycleStop != q.stopCount) { return } C.apply(z, [A, z, q, y]) }) } var s = function () { i.each(q.after, function (B, C) { if (u.cycleStop != q.stopCount) { return } C.apply(z, [A, z, q, y]) }) }; if (q.nextSlide != q.currSlide) { q.busy = 1; if (q.fxFn) { q.fxFn(A, z, q, s, y) } else { if (i.isFunction(i.fn.cycle[q.fx])) { i.fn.cycle[q.fx](A, z, q, s) } else { i.fn.cycle.custom(A, z, q, s, w && q.fastOnEvent) } } } q.lastSlide = q.currSlide; if (q.random) { q.currSlide = q.nextSlide; if (++q.randomIndex == x.length) { q.randomIndex = 0 } q.nextSlide = q.randomMap[q.randomIndex] } else { var t = (q.nextSlide + 1) == x.length; q.nextSlide = t ? 0 : q.nextSlide + 1; q.currSlide = t ? x.length - 1 : q.nextSlide - 1 } if (q.pager) { i.fn.cycle.updateActivePagerLink(q.pager, q.currSlide) } } var r = 0; if (q.timeout && !q.continuous) { r = h(A, z, q, y) } else { if (q.continuous && u.cyclePause) { r = 10 } } if (r > 0) { u.cycleTimeout = setTimeout(function () { e(x, q, 0, !q.rev) }, r) } } i.fn.cycle.updateActivePagerLink = function (q, r) { i(q).each(function () { i(this).find("a").removeClass("activeSlide").filter("a:eq(" + r + ")").addClass("activeSlide") }) }; function h(v, s, u, r) { if (u.timeoutFn) { var q = u.timeoutFn(v, s, u, r); while ((q - u.speed) < 250) { q += u.speed } a("calculated timeout: " + q + "; speed: " + u.speed); if (q !== false) { return q } } return u.timeout } i.fn.cycle.next = function (q) { o(q, q.rev ? -1 : 1) }; i.fn.cycle.prev = function (q) { o(q, q.rev ? 1 : -1) }; function o(r, u) { var q = r.elements; var t = r.$cont[0], s = t.cycleTimeout; if (s) { clearTimeout(s); t.cycleTimeout = 0 } if (r.random && u < 0) { r.randomIndex--; if (--r.randomIndex == -2) { r.randomIndex = q.length - 2 } else { if (r.randomIndex == -1) { r.randomIndex = q.length - 1 } } r.nextSlide = r.randomMap[r.randomIndex] } else { if (r.random) { if (++r.randomIndex == q.length) { r.randomIndex = 0 } r.nextSlide = r.randomMap[r.randomIndex] } else { r.nextSlide = r.currSlide + u; if (r.nextSlide < 0) { if (r.nowrap) { return false } r.nextSlide = q.length - 1 } else { if (r.nextSlide >= q.length) { if (r.nowrap) { return false } r.nextSlide = 0 } } } } if (i.isFunction(r.prevNextClick)) { r.prevNextClick(u > 0, r.nextSlide, q[r.nextSlide]) } e(q, r, 1, u >= 0); return false } function d(r, s) { var q = i(s.pager); i.each(r, function (t, u) { i.fn.cycle.createPagerAnchor(t, u, q, r, s) }); i.fn.cycle.updateActivePagerLink(s.pager, s.startingSlide) } i.fn.cycle.createPagerAnchor = function (u, v, s, t, w) { var r; if (i.isFunction(w.pagerAnchorBuilder)) { r = w.pagerAnchorBuilder(u, v) } else { r = '<a href="#">' + (u + 1) + "</a>" } if (!r) { return } var x = i(r); if (x.parents("body").length === 0) { var q = []; if (s.length > 1) { s.each(function () { var y = x.clone(true); i(this).append(y); q.push(y[0]) }); x = i(q) } else { x.appendTo(s) } } x.bind(w.pagerEvent, function (A) { A.preventDefault(); w.nextSlide = u; var z = w.$cont[0], y = z.cycleTimeout; if (y) { clearTimeout(y); z.cycleTimeout = 0 } if (i.isFunction(w.pagerClick)) { w.pagerClick(w.nextSlide, t[w.nextSlide]) } e(t, w, 1, w.currSlide < u); return false }); if (w.pagerEvent != "click") { x.click(function () { return false }) } if (w.pauseOnPagerHover) { x.hover(function () { w.$cont[0].cyclePause++ }, function () { w.$cont[0].cyclePause-- }) } }; i.fn.cycle.hopsFromLast = function (t, s) { var r, q = t.lastSlide, u = t.currSlide; if (s) { r = u > q ? u - q : t.slideCount - q } else { r = u < q ? q - u : q + t.slideCount - u } return r }; function g(s) { function r(t) { t = parseInt(t).toString(16); return t.length < 2 ? "0" + t : t } function q(w) { for (; w && w.nodeName.toLowerCase() != "html"; w = w.parentNode) { var t = i.css(w, "background-color"); if (t.indexOf("rgb") >= 0) { var u = t.match(/\d+/g); return "#" + r(u[0]) + r(u[1]) + r(u[2]) } if (t && t != "transparent") { return t } } return "#ffffff" } s.each(function () { i(this).css("background-color", q(this)) }) } i.fn.cycle.commonReset = function (v, t, u, r, s, q) { i(u.elements).not(v).hide(); u.cssBefore.opacity = 1; u.cssBefore.display = "block"; if (r !== false && t.cycleW > 0) { u.cssBefore.width = t.cycleW } if (s !== false && t.cycleH > 0) { u.cssBefore.height = t.cycleH } u.cssAfter = u.cssAfter || {}; u.cssAfter.display = "none"; i(v).css("zIndex", u.slideCount + (q === true ? 1 : 0)); i(t).css("zIndex", u.slideCount + (q === true ? 0 : 1)) }; i.fn.cycle.custom = function (B, v, q, s, r) { var A = i(B), w = i(v); var t = q.speedIn, z = q.speedOut, u = q.easeIn, y = q.easeOut; w.css(q.cssBefore); if (r) { if (typeof r == "number") { t = z = r } else { t = z = 1 } u = y = null } var x = function () { w.animate(q.animIn, t, u, s) }; A.animate(q.animOut, z, y, function () { if (q.cssAfter) { A.css(q.cssAfter) } if (!q.sync) { x() } }); if (q.sync) { x() } }; i.fn.cycle.transitions = { fade: function (r, s, q) { s.not(":eq(" + q.currSlide + ")").css("opacity", 0); q.before.push(function (v, t, u) { i.fn.cycle.commonReset(v, t, u); u.cssBefore.opacity = 0 }); q.animIn = { opacity: 1 }; q.animOut = { opacity: 0 }; q.cssBefore = { top: 0, left: 0 } } }; i.fn.cycle.ver = function () { return l }; i.fn.cycle.defaults = { fx: "fade", timeout: 4000, timeoutFn: null, continuous: 0, speed: 1000, speedIn: null, speedOut: null, next: null, prev: null, prevNextClick: null, prevNextEvent: "click", pager: null, pagerClick: null, pagerEvent: "click", pagerAnchorBuilder: null, before: null, after: null, end: null, easing: null, easeIn: null, easeOut: null, shuffle: null, animIn: null, animOut: null, cssBefore: null, cssAfter: null, fxFn: null, height: "auto", startingSlide: 0, sync: 1, random: 0, fit: 0, containerResize: 1, pause: 0, pauseOnPagerHover: 0, autostop: 0, autostopCount: 0, delay: 0, slideExpr: null, cleartype: !i.support.opacity, cleartypeNoBg: false, nowrap: 0, fastOnEvent: 0, randomizeEffects: 1, rev: 0, manualTrump: true, requeueOnImageNotLoaded: true, requeueTimeout: 250 } })(jQuery); - /* - * jQuery Cycle Plugin Transition Definitions - * This script is a plugin for the jQuery Cycle Plugin - * Examples and documentation at: http://malsup.com/jquery/cycle/ - * Copyright (c) 2007-2008 M. Alsup - * Version: 2.72 - * Dual licensed under the MIT and GPL licenses: - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - */ - (function (a) { a.fn.cycle.transitions.none = function (c, d, b) { b.fxFn = function (g, e, f, h) { a(e).show(); a(g).hide(); h() } }; a.fn.cycle.transitions.scrollUp = function (d, e, c) { d.css("overflow", "hidden"); c.before.push(a.fn.cycle.commonReset); var b = d.height(); c.cssBefore = { top: b, left: 0 }; c.cssFirst = { top: 0 }; c.animIn = { top: 0 }; c.animOut = { top: -b } }; a.fn.cycle.transitions.scrollDown = function (d, e, c) { d.css("overflow", "hidden"); c.before.push(a.fn.cycle.commonReset); var b = d.height(); c.cssFirst = { top: 0 }; c.cssBefore = { top: -b, left: 0 }; c.animIn = { top: 0 }; c.animOut = { top: b } }; a.fn.cycle.transitions.scrollLeft = function (d, e, c) { d.css("overflow", "hidden"); c.before.push(a.fn.cycle.commonReset); var b = d.width(); c.cssFirst = { left: 0 }; c.cssBefore = { left: b, top: 0 }; c.animIn = { left: 0 }; c.animOut = { left: 0 - b } }; a.fn.cycle.transitions.scrollRight = function (d, e, c) { d.css("overflow", "hidden"); c.before.push(a.fn.cycle.commonReset); var b = d.width(); c.cssFirst = { left: 0 }; c.cssBefore = { left: -b, top: 0 }; c.animIn = { left: 0 }; c.animOut = { left: b } }; a.fn.cycle.transitions.scrollHorz = function (c, d, b) { c.css("overflow", "hidden").width(); b.before.push(function (h, f, g, e) { a.fn.cycle.commonReset(h, f, g); g.cssBefore.left = e ? (f.cycleW - 1) : (1 - f.cycleW); g.animOut.left = e ? -h.cycleW : h.cycleW }); b.cssFirst = { left: 0 }; b.cssBefore = { top: 0 }; b.animIn = { left: 0 }; b.animOut = { top: 0 } }; a.fn.cycle.transitions.scrollVert = function (c, d, b) { c.css("overflow", "hidden"); b.before.push(function (h, f, g, e) { a.fn.cycle.commonReset(h, f, g); g.cssBefore.top = e ? (1 - f.cycleH) : (f.cycleH - 1); g.animOut.top = e ? h.cycleH : -h.cycleH }); b.cssFirst = { top: 0 }; b.cssBefore = { left: 0 }; b.animIn = { top: 0 }; b.animOut = { left: 0 } }; a.fn.cycle.transitions.slideX = function (c, d, b) { b.before.push(function (g, e, f) { a(f.elements).not(g).hide(); a.fn.cycle.commonReset(g, e, f, false, true); f.animIn.width = e.cycleW }); b.cssBefore = { left: 0, top: 0, width: 0 }; b.animIn = { width: "show" }; b.animOut = { width: 0 } }; a.fn.cycle.transitions.slideY = function (c, d, b) { b.before.push(function (g, e, f) { a(f.elements).not(g).hide(); a.fn.cycle.commonReset(g, e, f, true, false); f.animIn.height = e.cycleH }); b.cssBefore = { left: 0, top: 0, height: 0 }; b.animIn = { height: "show" }; b.animOut = { height: 0 } }; a.fn.cycle.transitions.shuffle = function (e, f, d) { var c, b = e.css("overflow", "visible").width(); f.css({ left: 0, top: 0 }); d.before.push(function (i, g, h) { a.fn.cycle.commonReset(i, g, h, true, true, true) }); if (!d.speedAdjusted) { d.speed = d.speed / 2; d.speedAdjusted = true } d.random = 0; d.shuffle = d.shuffle || { left: -b, top: 15 }; d.els = []; for (c = 0; c < f.length; c++) { d.els.push(f[c]) } for (c = 0; c < d.currSlide; c++) { d.els.push(d.els.shift()) } d.fxFn = function (m, j, l, g, i) { var h = i ? a(m) : a(j); a(j).css(l.cssBefore); var k = l.slideCount; h.animate(l.shuffle, l.speedIn, l.easeIn, function () { var o = a.fn.cycle.hopsFromLast(l, i); for (var q = 0; q < o; q++) { i ? l.els.push(l.els.shift()) : l.els.unshift(l.els.pop()) } if (i) { for (var r = 0, n = l.els.length; r < n; r++) { a(l.els[r]).css("z-index", n - r + k) } } else { var s = a(m).css("z-index"); h.css("z-index", parseInt(s) + 1 + k) } h.animate({ left: 0, top: 0 }, l.speedOut, l.easeOut, function () { a(i ? this : m).hide(); if (g) { g() } }) }) }; d.cssBefore = { display: "block", opacity: 1, top: 0, left: 0 } }; a.fn.cycle.transitions.turnUp = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, true, false); f.cssBefore.top = e.cycleH; f.animIn.height = e.cycleH }); b.cssFirst = { top: 0 }; b.cssBefore = { left: 0, height: 0 }; b.animIn = { top: 0 }; b.animOut = { height: 0 } }; a.fn.cycle.transitions.turnDown = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, true, false); f.animIn.height = e.cycleH; f.animOut.top = g.cycleH }); b.cssFirst = { top: 0 }; b.cssBefore = { left: 0, top: 0, height: 0 }; b.animOut = { height: 0 } }; a.fn.cycle.transitions.turnLeft = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, true); f.cssBefore.left = e.cycleW; f.animIn.width = e.cycleW }); b.cssBefore = { top: 0, width: 0 }; b.animIn = { left: 0 }; b.animOut = { width: 0 } }; a.fn.cycle.transitions.turnRight = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, true); f.animIn.width = e.cycleW; f.animOut.left = g.cycleW }); b.cssBefore = { top: 0, left: 0, width: 0 }; b.animIn = { left: 0 }; b.animOut = { width: 0 } }; a.fn.cycle.transitions.zoom = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, false, true); f.cssBefore.top = e.cycleH / 2; f.cssBefore.left = e.cycleW / 2; f.animIn = { top: 0, left: 0, width: e.cycleW, height: e.cycleH }; f.animOut = { width: 0, height: 0, top: g.cycleH / 2, left: g.cycleW / 2 } }); b.cssFirst = { top: 0, left: 0 }; b.cssBefore = { width: 0, height: 0 } }; a.fn.cycle.transitions.fadeZoom = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, false); f.cssBefore.left = e.cycleW / 2; f.cssBefore.top = e.cycleH / 2; f.animIn = { top: 0, left: 0, width: e.cycleW, height: e.cycleH } }); b.cssBefore = { width: 0, height: 0 }; b.animOut = { opacity: 0 } }; a.fn.cycle.transitions.blindX = function (d, e, c) { var b = d.css("overflow", "hidden").width(); c.before.push(function (h, f, g) { a.fn.cycle.commonReset(h, f, g); g.animIn.width = f.cycleW; g.animOut.left = h.cycleW }); c.cssBefore = { left: b, top: 0 }; c.animIn = { left: 0 }; c.animOut = { left: b } }; a.fn.cycle.transitions.blindY = function (d, e, c) { var b = d.css("overflow", "hidden").height(); c.before.push(function (h, f, g) { a.fn.cycle.commonReset(h, f, g); g.animIn.height = f.cycleH; g.animOut.top = h.cycleH }); c.cssBefore = { top: b, left: 0 }; c.animIn = { top: 0 }; c.animOut = { top: b } }; a.fn.cycle.transitions.blindZ = function (e, f, d) { var c = e.css("overflow", "hidden").height(); var b = e.width(); d.before.push(function (i, g, h) { a.fn.cycle.commonReset(i, g, h); h.animIn.height = g.cycleH; h.animOut.top = i.cycleH }); d.cssBefore = { top: c, left: b }; d.animIn = { top: 0, left: 0 }; d.animOut = { top: c, left: b } }; a.fn.cycle.transitions.growX = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, true); f.cssBefore.left = this.cycleW / 2; f.animIn = { left: 0, width: this.cycleW }; f.animOut = { left: 0 } }); b.cssBefore = { width: 0, top: 0 } }; a.fn.cycle.transitions.growY = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, true, false); f.cssBefore.top = this.cycleH / 2; f.animIn = { top: 0, height: this.cycleH }; f.animOut = { top: 0 } }); b.cssBefore = { height: 0, left: 0 } }; a.fn.cycle.transitions.curtainX = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, false, true, true); f.cssBefore.left = e.cycleW / 2; f.animIn = { left: 0, width: this.cycleW }; f.animOut = { left: g.cycleW / 2, width: 0 } }); b.cssBefore = { top: 0, width: 0 } }; a.fn.cycle.transitions.curtainY = function (c, d, b) { b.before.push(function (g, e, f) { a.fn.cycle.commonReset(g, e, f, true, false, true); f.cssBefore.top = e.cycleH / 2; f.animIn = { top: 0, height: e.cycleH }; f.animOut = { top: g.cycleH / 2, height: 0 } }); b.cssBefore = { left: 0, height: 0 } }; a.fn.cycle.transitions.cover = function (f, g, e) { var i = e.direction || "left"; var b = f.css("overflow", "hidden").width(); var c = f.height(); e.before.push(function (j, d, h) { a.fn.cycle.commonReset(j, d, h); if (i == "right") { h.cssBefore.left = -b } else { if (i == "up") { h.cssBefore.top = c } else { if (i == "down") { h.cssBefore.top = -c } else { h.cssBefore.left = b } } } }); e.animIn = { left: 0, top: 0 }; e.animOut = { opacity: 1 }; e.cssBefore = { top: 0, left: 0 } }; a.fn.cycle.transitions.uncover = function (f, g, e) { var i = e.direction || "left"; var b = f.css("overflow", "hidden").width(); var c = f.height(); e.before.push(function (j, d, h) { a.fn.cycle.commonReset(j, d, h, true, true, true); if (i == "right") { h.animOut.left = b } else { if (i == "up") { h.animOut.top = -c } else { if (i == "down") { h.animOut.top = c } else { h.animOut.left = -b } } } }); e.animIn = { left: 0, top: 0 }; e.animOut = { opacity: 1 }; e.cssBefore = { top: 0, left: 0 } }; a.fn.cycle.transitions.toss = function (e, f, d) { var b = e.css("overflow", "visible").width(); var c = e.height(); d.before.push(function (i, g, h) { a.fn.cycle.commonReset(i, g, h, true, true, true); if (!h.animOut.left && !h.animOut.top) { h.animOut = { left: b * 2, top: -c / 2, opacity: 0 } } else { h.animOut.opacity = 0 } }); d.cssBefore = { left: 0, top: 0 }; d.animIn = { left: 0 } }; a.fn.cycle.transitions.wipe = function (s, m, e) { var q = s.css("overflow", "hidden").width(); var j = s.height(); e.cssBefore = e.cssBefore || {}; var g; if (e.clip) { if (/l2r/.test(e.clip)) { g = "rect(0px 0px " + j + "px 0px)" } else { if (/r2l/.test(e.clip)) { g = "rect(0px " + q + "px " + j + "px " + q + "px)" } else { if (/t2b/.test(e.clip)) { g = "rect(0px " + q + "px 0px 0px)" } else { if (/b2t/.test(e.clip)) { g = "rect(" + j + "px " + q + "px " + j + "px 0px)" } else { if (/zoom/.test(e.clip)) { var o = parseInt(j / 2); var f = parseInt(q / 2); g = "rect(" + o + "px " + f + "px " + o + "px " + f + "px)" } } } } } } e.cssBefore.clip = e.cssBefore.clip || g || "rect(0px 0px 0px 0px)"; var k = e.cssBefore.clip.match(/(\d+)/g); var u = parseInt(k[0]), c = parseInt(k[1]), n = parseInt(k[2]), i = parseInt(k[3]); e.before.push(function (w, h, t) { if (w == h) { return } var d = a(w), b = a(h); a.fn.cycle.commonReset(w, h, t, true, true, false); t.cssAfter.display = "block"; var r = 1, l = parseInt((t.speedIn / 13)) - 1; (function v() { var y = u ? u - parseInt(r * (u / l)) : 0; var z = i ? i - parseInt(r * (i / l)) : 0; var A = n < j ? n + parseInt(r * ((j - n) / l || 1)) : j; var x = c < q ? c + parseInt(r * ((q - c) / l || 1)) : q; b.css({ clip: "rect(" + y + "px " + x + "px " + A + "px " + z + "px)" }); (r++ <= l) ? setTimeout(v, 13) : d.css("display", "none") })() }); e.cssBefore = { display: "block", opacity: 1, top: 0, left: 0 }; e.animIn = { left: 0 }; e.animOut = { left: 0 } } })(jQuery);</script> - </div> - </div> - </div> - <!--img class="mc_top" src="template/mcbbs/image/muddy_pig_subhero_updated6-19.png"/--> - <!--框背景的头部--> - <div class="mc_map_border_top"></div> - <!--框背景的左右--> - <div class="mc_map_border_left"> - <div class="mc_map_border_right"> - <div id="hd"> - <div width="400" height="600" class="imgshadow"></div> - <div class="wp"> - <div id="nv"> - <!--<a href="javascript:;" id="qmenu" onmouseover="delayShow(this, function () {showMenu({'ctrlid':'qmenu','pos':'34!','ctrlclass':'a','duration':2});showForummenu(139);})">快捷导航</a>--> - <ul class="nv_ul"> - <li id="mn_portal"><a href="portal.php" hidefocus="true" - title="Portal">首页<span>Portal</span></a></li> - <li class="a" id="mn_forum" - onmouseover="showMenu({'ctrlid':this.id,'ctrlclass':'hover','duration':2})"><a - href="forum.php" hidefocus="true" title="Forum">论坛<span>Forum</span></a></li> - <li id="mn_group" - onmouseover="showMenu({'ctrlid':this.id,'ctrlclass':'hover','duration':2})"><a - href="group.php" hidefocus="true" title="Groups">小组<span>Groups</span></a></li> - <li id="mn_Nce95" - onmouseover="showMenu({'ctrlid':this.id,'ctrlclass':'hover','duration':2})"><a - href="https://minecraft.fandom.com/zh/wiki/Minecraft_Wiki" hidefocus="true" - title="Wiki">百科<span>Wiki</span></a></li> - <li id="mn_N45f0" - onmouseover="showMenu({'ctrlid':this.id,'ctrlclass':'hover','duration':2})"><a - href="#" hidefocus="true" title="Utilities">工具<span>Utilities</span></a></li> - </ul> - - </div> - <div id="nv_right"> - <div id="an"> - <dl class="cl"> - <dt class="z xw1"></dt> - <dd> - <div id="anc"> - <ul id="ancl"> - <li><span><a href="https://www.mcbbs.net/thread-1272232-1-1.html" - target="_blank" - class="xi2"><b>请勿外借您的论坛账号,设置高强度密码</b></a></span></li> - </ul> - </div> - </dd> - </dl> - </div> - <script type="text/javascript">announcement();</script> - </div> - <script type="text/javascript"> - jq(function () { - jq("ul.p_pop").on("mouseover", function () { - var id = jq(this).attr("ctrlid"); - jq("#" + id).css({ background: "#e4dcc7", color: "#339933" }); - }); - jq("ul.p_pop").on("mouseleave", function () { - var id = jq(this).attr("ctrlid"); - setTimeout(function () { - jq("#" + id).css({ background: "none", color: "#fff" }); - }, 250); - }); - }) - </script> - <ul class="p_pop h_pop" id="plugin_menu" style="display: none"> - <li><a href="plugin.php?id=dc_signin:dc_signin" id="mn_plink_dc_signin">每日签到</a></li> - </ul> - <ul class="p_pop h_pop" id="mn_forum_menu" style="display: none"> - <li><a href="thread-7808-1-1.html" hidefocus="true">坛规</a></li> - <li><a href="thread-12685-1-1.html" hidefocus="true">勋章申请</a></li> - <li><a href="thread-924844-1-2.html" hidefocus="true">身份认证</a></li> - </ul> - <ul class="p_pop h_pop" id="mn_group_menu" style="display: none"> - <li><a href="/thread-332265-1-1.html" hidefocus="true">优秀小组申请</a></li> - </ul> - <div class="p_pop h_pop" id="mn_userapp_menu" style="display: none"></div> - <ul class="p_pop h_pop" id="mn_Nce95_menu" style="display: none"> - <li><a href="https://wiki.biligame.com/mc/Minecraft_Wiki" hidefocus="true">中文百科镜像</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E6%88%90%E5%B0%B1" - hidefocus="true">成就(基岩版)</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E8%BF%9B%E5%BA%A6" - hidefocus="true">进度(Java版)</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E7%94%9F%E7%89%A9" - hidefocus="true">生物</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E6%96%B9%E5%9D%97" - hidefocus="true">方块</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E7%89%A9%E5%93%81" - hidefocus="true">物品</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E7%94%9F%E7%89%A9%E7%BE%A4%E7%B3%BB" - hidefocus="true">生物群系</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E7%8A%B6%E6%80%81%E6%95%88%E6%9E%9C" - hidefocus="true">状态效果</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E9%99%84%E9%AD%94" - hidefocus="true">附魔</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E4%BA%A4%E6%98%93" - hidefocus="true">交易</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/%E7%BA%A2%E7%9F%B3%E5%85%83%E4%BB%B6" - hidefocus="true">红石元件</a></li> - <li><a href="https://minecraft.fandom.com/zh/wiki/Special:%E6%9C%80%E8%BF%91%E6%9B%B4%E6%94%B9" - hidefocus="true">最近更改</a></li> - </ul> - <ul class="p_pop h_pop" id="mn_N45f0_menu" style="display: none"> - <li><a href="misc.php?mod=faq" hidefocus="true" target="_blank">帮助</a></li> - <li><a href="https://pastebin.com/" hidefocus="true" target="_blank">剪贴板 - Pastebin</a></li> - <li><a href="https://sm.ms/" hidefocus="true" target="_blank">图床 - sm.ms</a></li> - <li><a href="http://pan.baidu.com" hidefocus="true" target="_blank">网盘 - 百度网盘</a></li> - <li><a href="https://www.weiyun.com/" hidefocus="true" target="_blank">网盘 - 微云</a></li> - <li><a href="https://www.baidu.com/s?wd=%20site%3Amcbbs.net" hidefocus="true" - target="_blank">搜索 - 百度站内搜索</a></li> - </ul> - <div id="mu" class="cl"> - </div> - </div> - </div> - - <script src="/source/plugin/zhaisoul_thread_album/static/album.js" type="text/javascript"></script> - <link href="/source/plugin/zhaisoul_thread_album/static/album.css" rel="stylesheet"> - <div id="wp" class="wp" style="margin:0 85px;float:left;"> - <style id="diy_style" type="text/css"> - #framevhtvGB { - margin: 0px !important; - } - - #portal_block_898 { - border: 0px !important; - margin: 0px !important; - } - - #portal_block_898 .dxb_bc { - margin: 0px !important; - } - </style> - <!--[diy=diynavtop]--> - <div id="diynavtop" class="area"></div> - <!--[/diy]--> - <div id="pt" class="bm cl"> - <div class="z"> - <a href="./" class="nvhm" title="首页">Minecraft(我的世界)中文论坛</a><em>»</em><a - href="forum.php">论坛</a> <em>›</em> <a - href="forum.php?gid=36">综合讨论</a><em>›</em> <a href="forum-news-1.html">幻翼块讯</a> - </div> - </div> - <div class="wp"> - <!--[diy=diy1]--> - <div id="diy1" class="area"></div> - <!--[/diy]--> - </div> - <div class="boardnav"> - <div id="ct" class="wp cl"> - - <div class="mn" style="width:960px;"> - <div class="bm bml pbn"> - <div class="bm_h cl"> - <span class="o"><img id="forum_rules_139_img" - src="template/mcbbs/image/collapsed_no.gif" title="收起/展开" alt="收起/展开" - onclick="toggle_collapse('forum_rules_139')" /></span><span class="y"> - <a href="home.php?mod=spacecp&ac=favorite&type=forum&id=139&handlekey=favoriteforum&formhash=3964a52c" - id="a_favorite" class="fa_fav" - onclick="showWindow(this.id, this.href, 'get', 0);">收藏本版 <strong - class="xi1" id="number_favorite">(<span - id="number_favorite_num">2546</span>)</strong></a> - - </span> - <h1 class="xs2"> - <a href="forum-news-1.html">幻翼块讯</a> - <span class="xs1 xw0 i">今日: <strong class="xi1">0</strong><span - class="pipe">|</span>主题: <strong class="xi1">4400</strong><span - class="pipe">|</span>排名: <strong class="xi1" - title="上次排名:27">24</strong><b class="ico_increase"> </b></span> - </h1> - </div> - <div class="bm_c cl " style="background:#FBF2DB;"> - <div>版主: <span class="xi2"><a href="home.php?mod=space&username=LocusAzzurro" - class="notabs" c="1">LocusAzzurro</a>, <a - href="home.php?mod=space&username=zyjking" class="notabs" - c="1">zyjking</a>, <a - href="home.php?mod=space&username=%E6%96%AF%E4%B9%8C" class="notabs" - c="1">斯乌</a></span></div> - <div id="forum_rules_139" style=";"> - <div class="ptn xg2"> - <div align="center"><img id="aimg_R1X1N" class="zoom" width="700" - height="300" - src="https://attachment.mcbbs.net/data/myattachment/forum/202110/24/104627rmmcmrm6hlgkvgih.png" - border="0" alt="" /></div><br /> - <div align="center"> - <font size="3"> - <font color="Black"><strong><br /> - 这里是一个任何人都可以参与播报的中文Minecraft资讯平台</strong></font> - </font> - </div><br /> - <div align="center"> - <font size="2"> - <font color="Black">本版用于 Mojang - 及其作品的<strong>官方</strong>相关资讯,官网非块讯类博文请发到<a - href="https://www.mcbbs.net/forum.php?mod=forumdisplay&fid=1015&page=1" - target="_blank"> - <font color="DarkRed">识海漫谈</font> - </a></font> - </font><br /> - <font size="2"> - <font color="Black">发帖前请阅读<a - href="https://www.mcbbs.net/thread-1253320-1-1.html" - target="_blank"> - <font color="DarkRed">版规</font> - </a></font> - </font><br /> - <font size="2"> - <font color="Black">本版内容未特别说明者,均允许转载,但<a - href="https://www.mcbbs.net/plugin.php?id=link_redirect&target=http%3A%2F%2Fwww.creativecommons.org%2Flicenses%2Fby-sa%2F3.0%2Fcn%2Flegalcode" - target="_blank"> - <font color="DarkRed">需要署名并以相同方式共享</font> - </a>,具体参见<a - href="https://www.mcbbs.net/thread-1253320-1-1.html" - target="_blank"> - <font color="DarkRed">版规具体规章第八条/转载须知</font> - </a><br /> - 此外,欢迎加入块讯版块交流qq群:<font color="DarkRed">643353107</font> - ,须有版块发帖记录</font> - </font> - </div> - </div> - </div> - </div> - </div> - - - <div class="bm bmw fl"> - <div class="bm_h cl"> - <span class="o"><img id="subforum_139_img" - src="template/mcbbs/image/collapsed_no.gif" title="收起/展开" alt="收起/展开" - onclick="toggle_collapse('subforum_139');" /></span> - <h2>子版块</h2> - </div> - - <div id="subforum_139" class="bm_c" style=" padding-bottom:0;background: #FBF2DB;"> - <table cellspacing="0" cellpadding="0" class="fl_tb"> - <tr> - <td class="fl_icn" style="width: 68px;"> - <a href="forum-translation-1.html"><img - src="https://attachment.mcbbs.net/data/myattachment/common/29/common_1015_icon.png" - align="left" alt="识海漫谈" /></a> - </td> - <td> - <h2><a href="forum-translation-1.html" style="">识海漫谈</a></h2> - <p class="xg2">┗ <a - href="https://www.mcbbs.net/plugin.php?id=link_redirect&target=https%3A%2F%2Fminecraft.fandom.com%2Fzh%2Fwiki%2FMinecraft_Wiki" - target="_blank"><strong>中文Wiki</strong></a> | <a - href="https://www.mcbbs.net/thread-823054-1-1.html" - target="_blank"><strong>官方博文录</strong></a></p> - </td> - <td class="fl_i"> - <span class="xi2">1789</span><span class="xg1"> / <span - title="20676">2万</span></span> - </td> - <td class="fl_by"> - <div> - <a href="forum.php?mod=redirect&tid=1288632&goto=lastpost#lastpost" - class="xi2">[Minecraft.net | MINECRAFT BUI ...</a> - <cite><span title="2022-5-19 23:51">昨天 23:51</span> <a - href="home.php?mod=space&username=sprixt">sprixt</a></cite> - </div> - </td> - </tr> - <tr class="fl_row"> - </tr> - </table> - </div> - </div> - <div class="drag"> - <!--[diy=diy4]--> - <div id="diy4" class="area"> - <div id="framevhtvGB" class=" frame move-span cl frame-1"> - <div id="framevhtvGB_left" class="column frame-1-c"> - <div id="framevhtvGB_left_temp" class="move-span temp"></div> - <div id="portal_block_898" class="block move-span"> - <div id="portal_block_898_content" class="dxb_bc"> - <div class="bm bmw fl"> - <div class="bm_h cl"><span class="o"></span> - <h2>新闻推荐</h2> - </div> - <div class="bm_c" id="tuisuong_pl" style=""> - <div id="portal_block_800_content" class="dxb_bc" - style="position: relative;"> - <div class="slidebox" id="0.7527101117473101" - style="display: block;"> - - - - <div class="slideshow"> - <li style="width: 912px; height: 232px;"><a - href="thread-1252431-1-1.html" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/block/1f/1fd2b0cf3fd783263eb140fada25a4b1.jpg" - width="912" - height="232" /></a><span - class="title">Java版账号持续迁移中...</span> - </li> - <li style="width: 912px; height: 232px;"><a - href="thread-823054-1-1.html" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/block/ac/ac3707077f87b47753848943cc1d6cf4.jpg" - width="912" - height="232" /></a><span - class="title">Minecraft.net 官方博文录 - [译文征集中]</span></li> - </div> - </div> - - <script type="text/javascript"> - runslideshow(); - </script> - - - </div> - </div> - </div> - </div> - </div> - </div> - </div> - </div> - <!--[/diy]--> - </div> - - - - - <div id="pgt" class="bm bw0 pgs cl" style="background:#FBF2DB;margin:0;padding:20px;"> - <span id="fd_page_top"> - <div class="pg"><strong>1</strong><a href="forum-news-2.html">2</a><a - href="forum-news-3.html">3</a><a href="forum-news-4.html">4</a><a - href="forum-news-5.html">5</a><a href="forum-news-6.html">6</a><a - href="forum-news-7.html">7</a><a href="forum-news-8.html">8</a><a - href="forum-news-9.html">9</a><a href="forum-news-10.html">10</a><a - href="forum-news-158.html" class="last">... 158</a><label><input - type="text" name="custompage" class="px" size="2" - title="输入页码,按回车快速跳转" value="1" - onkeydown="if(event.keyCode==13) {window.location='forum.php?mod=forumdisplay&fid=139&page='+this.value;; doane(event);}" /><span - title="共 158 页"> / 158 页</span></label><a href="forum-news-2.html" - class="nxt">下一页</a></div> - </span> - <span class="pgb y" id="visitedforums" - onmouseover="$('visitedforums').id = 'visitedforumstmp';this.id = 'visitedforums';showMenu({'ctrlid':this.id,'pos':'34'})"><a - href="forum.php">返 回</a></span> - <a href="javascript:;" id="newspecial" - onmouseover="$('newspecial').id = 'newspecialtmp';this.id = 'newspecial';showMenu({'ctrlid':this.id})" - onclick="showWindow('newthread', 'forum.php?mod=post&action=newthread&fid=139')" - title="发新帖"><img src="template/mcbbs/image/pn_post.png" alt="发新帖" /></a> - </div> - <ul id="thread_types" class="ttp bm cl"> - <li id="ttp_all" class="xw1 a"><a href="forum-news-1.html">全部</a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=285">公告<span - class="xg1 num">27</span></a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯<span - class="xg1 num">617</span></a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=207">块讯<span - class="xg1 num">1416</span></a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=286">周边<span - class="xg1 num">763</span></a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=1899">主机资讯<span - class="xg1 num">236</span></a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2382">时评<span - class="xg1 num">13</span></a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯<span - class="xg1 num">495</span></a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2401">基岩块讯<span - class="xg1 num">832</span></a></li> - </ul> - <script type="text/javascript">showTypes('thread_types');</script> - <div id="threadlist" class="tl bm bmw" style="position: relative;"> - <div class="th"> - <table cellspacing="0" cellpadding="0"> - <tr> - <th colspan="2"> - <div class="tf"> - <span id="atarget" onclick="setatarget(1)" class="y" - title="在新窗口中打开帖子">新窗</span> - <a id="filter_special" href="javascript:;" class="showmenu xi2" - onclick="showMenu(this.id)">全部主题</a> - <a href="forum.php?mod=forumdisplay&fid=139&filter=lastpost&orderby=lastpost" - class="xi2">最新</a> - <a href="forum.php?mod=forumdisplay&fid=139&filter=heat&orderby=heats" - class="xi2">热门</a> - <a href="forum.php?mod=forumdisplay&fid=139&filter=hot" - class="xi2">热帖</a> - <a href="forum.php?mod=forumdisplay&fid=139&filter=digest&digest=1" - class="xi2">精华</a> - <a id="filter_dateline" href="javascript:;" class="showmenu xi2" - onclick="showMenu(this.id)">更多</a> - <span id="clearstickthread" style="display: none;"> - <span class="pipe">|</span> - <a href="javascript:;" onclick="clearStickThread()" - class="xi2" title="显示置顶">显示置顶</a> - </span> - </div> - </th> - <td class="by">作者</td> - <td class="num">回复/查看</td> - <td class="by">最后发表</td> - </tr> - </table> - </div> - <div class="bm_c"> - <script - type="text/javascript">var lasttime = 1652976922; var listcolspan = '5';</script> - <div id="forumnew" style="display:none"></div> - <form method="post" autocomplete="off" name="moderate" id="moderate" - action="forum.php?mod=topicadmin&action=moderate&fid=139&infloat=yes&nopost=yes"> - <input type="hidden" name="formhash" value="3964a52c" /> - <input type="hidden" name="listextra" value="page%3D1" /> - <table summary="forum_139" cellspacing="0" cellpadding="0" - id="threadlisttableid"> - <tbody id="stickthread_565057"> - <tr> - <td class="icn"> - <a href="thread-565057-1-1.html" - title="全局置顶主题 - 关闭的主题 - 新窗口打开" target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_565057" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='565057';CONTENT_ID='stickthread_565057';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a href="javascript:void(0);" - onclick="hideStickThread('565057')" class="showhide y" - title="隐藏置顶帖">隐藏置顶帖</a></em> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('565057', 'stickthread_565057');">预览</a> - <a href="thread-565057-1-1.html" - style="font-weight: bold;color: #2897C5;" - onclick="atarget(this)" class="s xst">【必读】MCBBS新人引导帖</a> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - </th> - <td class="by"> - <cite> - 匿名</cite> - <em><span>2016-3-8</span></em> - </td> - <td class="num"><a href="thread-565057-1-1.html" - class="xi2">0</a><em>1241561</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E5%8C%BF%E5%90%8D" - c="1">匿名</a></cite> - <em><a - href="forum.php?mod=redirect&tid=565057&goto=lastpost#lastpost">2016-3-8 - 04:57</a></em> - </td> - </tr> - </tbody> - <tbody id="stickthread_7808"> - <tr> - <td class="icn"> - <a href="thread-7808-1-1.html" - title="全局置顶主题 - 关闭的主题 - 新窗口打开" target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_7808" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='7808';CONTENT_ID='stickthread_7808';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a href="javascript:void(0);" - onclick="hideStickThread('7808')" class="showhide y" - title="隐藏置顶帖">隐藏置顶帖</a></em> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('7808', 'stickthread_7808');">预览</a> - <a href="thread-7808-1-1.html" style="font-weight: bold;" - onclick="atarget(this)" - class="s xst">【坛规】我的世界中文论坛规章制度</a> - </th> - <td class="by"> - <cite> - 匿名</cite> - <em><span>2011-8-6</span></em> - </td> - <td class="num"><a href="thread-7808-1-1.html" - class="xi2">3</a><em>2603428</em></td> - <td class="by"> - <cite>匿名</cite> - <em><a - href="forum.php?mod=redirect&tid=7808&goto=lastpost#lastpost">2011-8-7 - 16:37</a></em> - </td> - </tr> - </tbody> - <tbody id="stickthread_1259391"> - <tr> - <td class="icn"> - <a href="thread-1259391-1-1.html" - title="分类置顶主题 - 关闭的主题 - 新窗口打开" target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1259391" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1259391';CONTENT_ID='stickthread_1259391';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a href="javascript:void(0);" - onclick="hideStickThread('1259391')" class="showhide y" - title="隐藏置顶帖">隐藏置顶帖</a></em> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1259391', 'stickthread_1259391');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=285">公告</a>]</em> - <a href="thread-1259391-1-1.html" - style="font-weight: bold;color: #2897C5;" - onclick="atarget(this)" class="s xst">【综合讨论大区】QQ交流群 - 欢迎加入</a> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=1575538" c="1" - style="color: #660099;">ff98sha</a> <a - href="home.php?mod=spacecp&ac=profile&op=verify&vid=1" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/common/c4/common_1_verify_icon.png" - class="vm" alt="作者认证" title="作者认证" /></a></cite> - <em><span>2021-9-8</span></em> - </td> - <td class="num"><a href="thread-1259391-1-1.html" - class="xi2">0</a><em>7423</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=ff98sha" - c="1">ff98sha</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1259391&goto=lastpost#lastpost">2021-9-8 - 23:00</a></em> - </td> - </tr> - </tbody> - <tbody id="stickthread_1279926"> - <tr> - <td class="icn"> - <a href="thread-1279926-1-1.html" - title="本版置顶主题 - 关闭的主题 - 新窗口打开" target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1279926" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1279926';CONTENT_ID='stickthread_1279926';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a href="javascript:void(0);" - onclick="hideStickThread('1279926')" class="showhide y" - title="隐藏置顶帖">隐藏置顶帖</a></em> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1279926', 'stickthread_1279926');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1279926-1-1.html" - style="font-weight: bold;color: #EE1B2E;" - onclick="atarget(this)" class="s xst">Minecraft 1.18 - (洞穴与山崖第二部分) 特性列表</a> - <img src="template/mcbbs/image/digest_1.gif" - align="absmiddle" alt="digest" title="精华 1" /> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=1666555" c="1" - style="color: #660000;">zyjking</a></cite> - <em><span>2021-11-30</span></em> - </td> - <td class="num"><a href="thread-1279926-1-1.html" - class="xi2">0</a><em>9955</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=zyjking" - c="1">zyjking</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1279926&goto=lastpost#lastpost">2021-11-30 - 21:10</a></em> - </td> - </tr> - </tbody> - <tbody id="stickthread_1253320"> - <tr> - <td class="icn"> - <a href="thread-1253320-1-1.html" - title="本版置顶主题 - 关闭的主题 - 新窗口打开" target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1253320" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1253320';CONTENT_ID='stickthread_1253320';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a href="javascript:void(0);" - onclick="hideStickThread('1253320')" class="showhide y" - title="隐藏置顶帖">隐藏置顶帖</a></em> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1253320', 'stickthread_1253320');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=285">公告</a>]</em> - <a href="thread-1253320-1-1.html" - style="font-weight: bold;color: #2B65B7;" - onclick="atarget(this)" class="s xst">【幻翼块讯版】版规|模板代码</a> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=1350847" - c="1">广药</a> <a - href="home.php?mod=spacecp&ac=profile&op=verify&vid=1" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/common/c4/common_1_verify_icon.png" - class="vm" alt="作者认证" title="作者认证" /></a></cite> - <em><span>2021-8-25</span></em> - </td> - <td class="num"><a href="thread-1253320-1-1.html" - class="xi2">1</a><em>7110</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E5%B9%BF%E8%8D%AF" - c="1">广药</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1253320&goto=lastpost#lastpost">2021-9-2 - 09:40</a></em> - </td> - </tr> - </tbody> - <tbody id="separatorline"> - <tr class="ts"> - <td> </td> - <th> </th> - <td> </td> - <td> </td> - <td> </td> - </tr> - </tbody> - <script type="text/javascript">hideStickThread();</script> - <tbody id="normalthread_1340927"> - <tr> - <td class="icn"> - <a href="thread-1340927-1-1.html" title="有新回复 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_new.gif" /> - </a> - </td> - <th class="new"> - <a href="javascript:;" id="content_1340927" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1340927';CONTENT_ID='normalthread_1340927';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1340927', 'normalthread_1340927');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1340927-1-1.html" - style="font-weight: bold;color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft Java版 - 1.19-pre1 发布</a> - <img src="static/image/stamp/008.small.gif" alt="版主推荐" - align="absmiddle" /> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1340927-2-1.html">2</a></span> - <a href="forum.php?mod=redirect&tid=1340927&goto=lastpost#lastpost" - class="xi1">New</a> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=3152226" - c="1">希铁石z</a></cite> - <em><span><span - title="2022-5-19">昨天 00:35</span></span></em> - </td> - <td class="num"><a href="thread-1340927-1-1.html" - class="xi2">26</a><em>1625</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=zqz0801" - c="1">zqz0801</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1340927&goto=lastpost#lastpost"><span - title="2022-5-19 21:41">昨天 21:41</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1340080"> - <tr> - <td class="icn"> - <a href="thread-1340080-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1340080" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1340080';CONTENT_ID='normalthread_1340080';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1340080', 'normalthread_1340080');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=207">块讯</a>]</em> - <a href="thread-1340080-1-1.html" style="color: #EC1282;" - onclick="atarget(this)" class="s xst">(已恢复)Mojang - Status:服务器出现一些小问题</a> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2999647" - c="1">DreamVoid</a> <a - href="home.php?mod=spacecp&ac=profile&op=verify&vid=2" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/common/c8/common_2_verify_icon.png" - class="vm" alt="服主认证" title="服主认证" /></a></cite> - <em><span><span - title="2022-5-16">4 天前</span></span></em> - </td> - <td class="num"><a href="thread-1340080-1-1.html" - class="xi2">3</a><em>643</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=peterlsl" - c="1">peterlsl</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1340080&goto=lastpost#lastpost"><span - title="2022-5-16 22:48">4 天前</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1339940"> - <tr> - <td class="icn"> - <a href="thread-1339940-1-1.html" title="新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_common.gif" /> - </a> - </td> - <th class="common"> - <a href="javascript:;" id="content_1339940" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1339940';CONTENT_ID='normalthread_1339940';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1339940', 'normalthread_1339940');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=207">块讯</a>]</em> - <a href="thread-1339940-1-1.html" style="color: #EC1282;" - onclick="atarget(this)" class="s xst">kinbdogz - 就近期荒野更新的风波发表看法</a> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1339940-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=10240" c="1" - style="color: #0099FF;">卡狗</a></cite> - <em><span><span - title="2022-5-16">4 天前</span></span></em> - </td> - <td class="num"><a href="thread-1339940-1-1.html" - class="xi2">18</a><em>939</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E4%B9%B0%E4%BA%86%E4%B8%AA%E8%A1%A8~" - c="1">买了个表~</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1339940&goto=lastpost#lastpost"><span - title="2022-5-18 19:07">前天 19:07</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1339097"> - <tr> - <td class="icn"> - <a href="thread-1339097-1-1.html" title="新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_common.gif" /> - </a> - </td> - <th class="common"> - <a href="javascript:;" id="content_1339097" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1339097';CONTENT_ID='normalthread_1339097';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1339097', 'normalthread_1339097');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1339097-1-1.html" - style="font-weight: bold;color: #EE1B2E;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 - 1.18.33 发布(仅 Switch)</a> - <img src="static/image/stamp/008.small.gif" alt="版主推荐" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2479240" - c="1">电量量</a> <a - href="home.php?mod=spacecp&ac=profile&op=verify&vid=1" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/common/c4/common_1_verify_icon.png" - class="vm" alt="作者认证" title="作者认证" /></a></cite> - <em><span><span - title="2022-5-14">6 天前</span></span></em> - </td> - <td class="num"><a href="thread-1339097-1-1.html" - class="xi2">6</a><em>558</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E5%86%B0%E7%BE%8E%E5%BC%8F%E3%80%82%E3%80%82" - c="1">冰美式。。</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1339097&goto=lastpost#lastpost"><span - title="2022-5-18 14:18">前天 14:18</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1338607"> - <tr> - <td class="icn"> - <a href="thread-1338607-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1338607" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1338607';CONTENT_ID='normalthread_1338607';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1338607', 'normalthread_1338607');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1338607-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft Java版 - 22w19a 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1338607-2-1.html">2</a><a - href="thread-1338607-3-1.html">3</a><a - href="thread-1338607-4-1.html">4</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2969317" - c="1">寂华</a></cite> - <em><span><span - title="2022-5-13">7 天前</span></span></em> - </td> - <td class="num"><a href="thread-1338607-1-1.html" - class="xi2">47</a><em>4469</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=LY.%E7%99%BD%E7%91%BE" - c="1">LY.白瑾</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1338607&goto=lastpost#lastpost"><span - title="2022-5-18 19:17">前天 19:17</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1338592"> - <tr> - <td class="icn"> - <a href="thread-1338592-1-1.html" title="新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_common.gif" /> - </a> - </td> - <th class="common"> - <a href="javascript:;" id="content_1338592" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1338592';CONTENT_ID='normalthread_1338592';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1338592', 'normalthread_1338592');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1338592-1-1.html" - style="font-weight: bold;color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta - & Preview 1.19.0.32/33 发布</a> - <img src="static/image/stamp/008.small.gif" alt="版主推荐" - align="absmiddle" /> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2501735" - c="1">苦力怕553</a> <a - href="home.php?mod=spacecp&ac=profile&op=verify&vid=1" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/common/c4/common_1_verify_icon.png" - class="vm" alt="作者认证" title="作者认证" /></a></cite> - <em><span><span - title="2022-5-13">7 天前</span></span></em> - </td> - <td class="num"><a href="thread-1338592-1-1.html" - class="xi2">7</a><em>1978</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=Ph-%E8%8B%AF" - c="1">Ph-苯</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1338592&goto=lastpost#lastpost"><span - title="2022-5-18 10:23">前天 10:23</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1338588"> - <tr> - <td class="icn"> - <a href="thread-1338588-1-1.html" title="有新回复 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_new.gif" /> - </a> - </td> - <th class="new"> - <a href="javascript:;" id="content_1338588" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1338588';CONTENT_ID='normalthread_1338588';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1338588', 'normalthread_1338588');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2382">时评</a>]</em> - <a href="thread-1338588-1-1.html" - style="font-weight: bold;color: #8F2A90;" - onclick="atarget(this)" - class="s xst">请给我们一个真正的“荒野更新”</a> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1338588-2-1.html">2</a><a - href="thread-1338588-3-1.html">3</a></span> - <a href="forum.php?mod=redirect&tid=1338588&goto=lastpost#lastpost" - class="xi1">New</a> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=1605611" c="1" - style="color: #660000;">斯乌</a></cite> - <em><span><span - title="2022-5-13">7 天前</span></span></em> - </td> - <td class="num"><a href="thread-1338588-1-1.html" - class="xi2">37</a><em>2250</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=tianyuhhh" - c="1">tianyuhhh</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1338588&goto=lastpost#lastpost"><span - title="2022-5-18 23:57">前天 23:57</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1338496"> - <tr> - <td class="icn"> - <a href="thread-1338496-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1338496" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1338496';CONTENT_ID='normalthread_1338496';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1338496', 'normalthread_1338496');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=207">块讯</a>]</em> - <a href="thread-1338496-1-1.html" style="color: #EC1282;" - onclick="atarget(this)" - class="s xst">slicedlime:周三无快照,推迟至周四</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2933654" - c="1">橄榄Chan</a></cite> - <em><span>2022-5-11</span></em> - </td> - <td class="num"><a href="thread-1338496-1-1.html" - class="xi2">6</a><em>904</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E5%8D%A1%E7%8B%97" - c="1">卡狗</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1338496&goto=lastpost#lastpost"><span - title="2022-5-13 00:05">7 天前</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1336371"> - <tr> - <td class="icn"> - <a href="thread-1336371-1-1.html" title="有新回复 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_new.gif" /> - </a> - </td> - <th class="new"> - <a href="javascript:;" id="content_1336371" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1336371';CONTENT_ID='normalthread_1336371';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1336371', 'normalthread_1336371');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1336371-1-1.html" - style="font-weight: bold;color: #EE1B2E;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 - 1.18.32 发布(仅 Android、NS)【新增 NS 平台】</a> - <img src="static/image/stamp/008.small.gif" alt="版主推荐" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1336371-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2479240" - c="1">电量量</a> <a - href="home.php?mod=spacecp&ac=profile&op=verify&vid=1" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/common/c4/common_1_verify_icon.png" - class="vm" alt="作者认证" title="作者认证" /></a></cite> - <em><span>2022-5-6</span></em> - </td> - <td class="num"><a href="thread-1336371-1-1.html" - class="xi2">15</a><em>1424</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=a136569113" - c="1">a136569113</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1336371&goto=lastpost#lastpost"><span - title="2022-5-19 17:43">昨天 17:43</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1335897"> - <tr> - <td class="icn"> - <a href="thread-1335897-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1335897" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1335897';CONTENT_ID='normalthread_1335897';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1335897', 'normalthread_1335897');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1335897-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta - & Preview 1.19.0.30/31 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1335897-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=1694714" c="1" - style="color: #660000;">AzureZeng</a></cite> - <em><span>2022-5-5</span></em> - </td> - <td class="num"><a href="thread-1335897-1-1.html" - class="xi2">16</a><em>4418</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=3395920141" - c="1">3395920141</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1335897&goto=lastpost#lastpost"><span - title="2022-5-13 03:35">7 天前</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1335891"> - <tr> - <td class="icn"> - <a href="thread-1335891-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1335891" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1335891';CONTENT_ID='normalthread_1335891';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1335891', 'normalthread_1335891');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1335891-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft Java版 - 22w18a 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1335891-2-1.html">2</a><a - href="thread-1335891-3-1.html">3</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2733823" c="1" - style="color: #660000;">Aurora_Feather</a></cite> - <em><span>2022-5-5</span></em> - </td> - <td class="num"><a href="thread-1335891-1-1.html" - class="xi2">37</a><em>5693</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=Zhongjidi_YoRW8" - c="1">Zhongjidi_YoRW8</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1335891&goto=lastpost#lastpost">2022-5-12 - 00:08</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1333196"> - <tr> - <td class="icn"> - <a href="thread-1333196-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1333196" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1333196';CONTENT_ID='normalthread_1333196';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1333196', 'normalthread_1333196');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1333196-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta - & Preview 1.19.0.28/29 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=3152226" - c="1">希铁石z</a></cite> - <em><span>2022-4-29</span></em> - </td> - <td class="num"><a href="thread-1333196-1-1.html" - class="xi2">12</a><em>3429</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E6%86%A8%E6%86%A8hanhan" - c="1">憨憨hanhan</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1333196&goto=lastpost#lastpost">2022-5-4 - 00:58</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1332834"> - <tr> - <td class="icn"> - <a href="thread-1332834-1-1.html" title="新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_common.gif" /> - </a> - </td> - <th class="common"> - <a href="javascript:;" id="content_1332834" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1332834';CONTENT_ID='normalthread_1332834';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1332834', 'normalthread_1332834');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1332834-1-1.html" - style="font-weight: bold;color: #EE1B2E;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 - 1.18.31 发布</a> - <img src="static/image/stamp/008.small.gif" alt="版主推荐" - align="absmiddle" /> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1332834-2-1.html">2</a><a - href="thread-1332834-3-1.html">3</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=3152226" - c="1">希铁石z</a></cite> - <em><span>2022-4-28</span></em> - </td> - <td class="num"><a href="thread-1332834-1-1.html" - class="xi2">36</a><em>3976</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=yanzizhen" - c="1">yanzizhen</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1332834&goto=lastpost#lastpost"><span - title="2022-5-13 22:25">7 天前</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1332811"> - <tr> - <td class="icn"> - <a href="thread-1332811-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1332811" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1332811';CONTENT_ID='normalthread_1332811';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1332811', 'normalthread_1332811');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1332811-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft Java版 - 22w17a 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1332811-2-1.html">2</a><a - href="thread-1332811-3-1.html">3</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=10240" c="1" - style="color: #0099FF;">卡狗</a></cite> - <em><span>2022-4-28</span></em> - </td> - <td class="num"><a href="thread-1332811-1-1.html" - class="xi2">44</a><em>5575</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E6%AC%A7%E7%87%83Orua" - c="1">欧燃Orua</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1332811&goto=lastpost#lastpost">2022-5-3 - 10:42</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1332424"> - <tr> - <td class="icn"> - <a href="thread-1332424-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1332424" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1332424';CONTENT_ID='normalthread_1332424';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1332424', 'normalthread_1332424');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2401">基岩块讯</a>]</em> - <a href="thread-1332424-1-1.html" style="color: #EC1282;" - onclick="atarget(this)" class="s xst">Mojang - Status:正在寻找1.18.30更新问题的解决方案</a> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2614336" - c="1">ArmorRush</a></cite> - <em><span>2022-4-27</span></em> - </td> - <td class="num"><a href="thread-1332424-1-1.html" - class="xi2">12</a><em>1318</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=DrCao" - c="1">DrCao</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1332424&goto=lastpost#lastpost"><span - title="2022-5-14 17:15">6 天前</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1329712"> - <tr> - <td class="icn"> - <a href="thread-1329712-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1329712" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1329712';CONTENT_ID='normalthread_1329712';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1329712', 'normalthread_1329712');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1329712-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta - & Preview 1.19.0.26/27 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1329712-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2614336" - c="1">ArmorRush</a></cite> - <em><span>2022-4-21</span></em> - </td> - <td class="num"><a href="thread-1329712-1-1.html" - class="xi2">15</a><em>3473</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=cxc1966897735" - c="1">cxc1966897735</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1329712&goto=lastpost#lastpost">2022-4-26 - 09:42</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1329651"> - <tr> - <td class="icn"> - <a href="thread-1329651-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1329651" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1329651';CONTENT_ID='normalthread_1329651';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1329651', 'normalthread_1329651');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1329651-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft Java版 - 22w16b 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1329651-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=10240" c="1" - style="color: #0099FF;">卡狗</a></cite> - <em><span>2022-4-21</span></em> - </td> - <td class="num"><a href="thread-1329651-1-1.html" - class="xi2">22</a><em>6440</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E7%83%88%E9%85%92%E4%B8%8E%E7%BE%8E%E4%BA%BA%E5%84%BF" - c="1">烈酒与美人儿</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1329651&goto=lastpost#lastpost">2022-4-27 - 17:16</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1329644"> - <tr> - <td class="icn"> - <a href="thread-1329644-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1329644" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1329644';CONTENT_ID='normalthread_1329644';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1329644', 'normalthread_1329644');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1329644-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft Java版 - 22w16a 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1329644-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=3152226" - c="1">希铁石z</a></cite> - <em><span>2022-4-21</span></em> - </td> - <td class="num"><a href="thread-1329644-1-1.html" - class="xi2">24</a><em>6728</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=nyx827" - c="1">nyx827</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1329644&goto=lastpost#lastpost">2022-4-26 - 12:39</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1329335"> - <tr> - <td class="icn"> - <a href="thread-1329335-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1329335" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1329335';CONTENT_ID='normalthread_1329335';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1329335', 'normalthread_1329335');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1329335-1-1.html" style="color: #EE1B2E;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 - 1.18.30 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1329335-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2614336" - c="1">ArmorRush</a></cite> - <em><span>2022-4-20</span></em> - </td> - <td class="num"><a href="thread-1329335-1-1.html" - class="xi2">19</a><em>3289</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=cxc1966897735" - c="1">cxc1966897735</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1329335&goto=lastpost#lastpost">2022-4-26 - 09:59</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1328892"> - <tr> - <td class="icn"> - <a href="thread-1328892-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1328892" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1328892';CONTENT_ID='normalthread_1328892';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1328892', 'normalthread_1328892');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=207">块讯</a>]</em> - <a href="thread-1328892-1-1.html" style="color: #2B65B7;" - onclick="atarget(this)" class="s xst">“海王” 杰森·莫玛 - 有望主演《我的世界》大电影</a> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1328892-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=1350847" - c="1">广药</a> <a - href="home.php?mod=spacecp&ac=profile&op=verify&vid=1" - target="_blank"><img - src="https://attachment.mcbbs.net/data/myattachment/common/c4/common_1_verify_icon.png" - class="vm" alt="作者认证" title="作者认证" /></a></cite> - <em><span>2022-4-19</span></em> - </td> - <td class="num"><a href="thread-1328892-1-1.html" - class="xi2">20</a><em>1580</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E5%B0%BA%E5%AD%90%E4%B8%8A%E7%9A%84%E5%BD%A9%E8%99%B9" - c="1">尺子上的彩虹</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1328892&goto=lastpost#lastpost"><span - title="2022-5-14 17:55">6 天前</span></a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1327089"> - <tr> - <td class="icn"> - <a href="thread-1327089-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1327089" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1327089';CONTENT_ID='normalthread_1327089';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1327089', 'normalthread_1327089');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1327089-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta - & Preview 1.19.0.24/25 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1327089-2-1.html">2</a><a - href="thread-1327089-3-1.html">3</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2614336" - c="1">ArmorRush</a></cite> - <em><span>2022-4-15</span></em> - </td> - <td class="num"><a href="thread-1327089-1-1.html" - class="xi2">30</a><em>4265</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E9%87%91%E9%B3%9E%E5%B2%82%E6%98%AF%E6%B1%A0%E4%B8%AD%E7%89%A9" - c="1">金鳞岂是池中物</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1327089&goto=lastpost#lastpost">2022-4-21 - 13:50</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1326640"> - <tr> - <td class="icn"> - <a href="thread-1326640-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1326640" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1326640';CONTENT_ID='normalthread_1326640';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1326640', 'normalthread_1326640');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1326640-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft Java版 - 22w15a 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="static/image/filetype/image_s.gif" - alt="attach_img" title="图片附件" align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1326640-2-1.html">2</a><a - href="thread-1326640-3-1.html">3</a><a - href="thread-1326640-4-1.html">4</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2614336" - c="1">ArmorRush</a></cite> - <em><span>2022-4-14</span></em> - </td> - <td class="num"><a href="thread-1326640-1-1.html" - class="xi2">54</a><em>5508</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E5%A5%A5%E5%88%A9%E7%BB%99%E5%B9%B2%E5%B0%B1%E5%AE%8C%E4%BA%86" - c="1">奥利给干就完了</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1326640&goto=lastpost#lastpost">2022-4-20 - 14:26</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1323762"> - <tr> - <td class="icn"> - <a href="thread-1323762-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1323762" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1323762';CONTENT_ID='normalthread_1323762';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1323762', 'normalthread_1323762');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2400">基岩版资讯</a>]</em> - <a href="thread-1323762-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft 基岩版 Beta - & Preview 1.19.0.20 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1323762-2-1.html">2</a><a - href="thread-1323762-3-1.html">3</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2614336" - c="1">ArmorRush</a></cite> - <em><span>2022-4-7</span></em> - </td> - <td class="num"><a href="thread-1323762-1-1.html" - class="xi2">38</a><em>6016</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=1020881896" - c="1">1020881896</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1323762&goto=lastpost#lastpost">2022-4-13 - 17:08</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1323662"> - <tr> - <td class="icn"> - <a href="thread-1323662-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1323662" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1323662';CONTENT_ID='normalthread_1323662';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1323662', 'normalthread_1323662');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1323662-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">Minecraft Java版 - 22w14a 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1323662-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=10240" c="1" - style="color: #0099FF;">卡狗</a></cite> - <em><span>2022-4-7</span></em> - </td> - <td class="num"><a href="thread-1323662-1-1.html" - class="xi2">23</a><em>3993</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E6%80%A1%E6%98%A5%E9%99%A2%E4%B8%B6%E5%A9%B7%E5%A9%B7" - c="1">怡春院丶婷婷</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1323662&goto=lastpost#lastpost">2022-4-12 - 14:37</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1321419"> - <tr> - <td class="icn"> - <a href="thread-1321419-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1321419" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1321419';CONTENT_ID='normalthread_1321419';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1321419', 'normalthread_1321419');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=204">Java版资讯</a>]</em> - <a href="thread-1321419-1-1.html" style="color: #3C9D40;" - onclick="atarget(this)" class="s xst">[愚人节] Minecraft - Java版 22w13oneBlockAtATime 发布</a> - <img src="static/image/stamp/timeout.small.gif" alt="过期" - align="absmiddle" /> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1321419-2-1.html">2</a><a - href="thread-1321419-3-1.html">3</a><a - href="thread-1321419-4-1.html">4</a><a - href="thread-1321419-5-1.html">5</a><a - href="thread-1321419-6-1.html">6</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=3152226" - c="1">希铁石z</a></cite> - <em><span>2022-4-1</span></em> - </td> - <td class="num"><a href="thread-1321419-1-1.html" - class="xi2">78</a><em>11175</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=cym5211314" - c="1">cym5211314</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1321419&goto=lastpost#lastpost">2022-4-13 - 20:49</a></em> - </td> - </tr> - </tbody> - <tbody id="normalthread_1320986"> - <tr> - <td class="icn"> - <a href="thread-1320986-1-1.html" title="关闭的主题 - 新窗口打开" - target="_blank"> - <img src="template/mcbbs/image/folder_lock.gif" /> - </a> - </td> - <th class="lock"> - <a href="javascript:;" id="content_1320986" - class="showcontent y" title="更多操作" - onclick="CONTENT_TID='1320986';CONTENT_ID='normalthread_1320986';showMenu({'ctrlid':this.id,'menuid':'content_menu'})"></a> - <a class="tdpre y" href="javascript:void(0);" - onclick="previewThread('1320986', 'normalthread_1320986');">预览</a> - <em>[<a - href="forum.php?mod=forumdisplay&fid=139&filter=typeid&typeid=2401">基岩块讯</a>]</em> - <a href="thread-1320986-1-1.html" style="color: #EC1282;" - onclick="atarget(this)" - class="s xst">Minecraft:近期没有为主机平台添加光线追踪的计划</a> - <img src="template/mcbbs/image/agree.gif" align="absmiddle" - alt="agree" title="帖子被加分" /> - <span class="tps"> ...<a - href="thread-1320986-2-1.html">2</a></span> - </th> - <td class="by"> - <cite> - <a href="home.php?mod=space&uid=2614336" - c="1">ArmorRush</a></cite> - <em><span>2022-4-1</span></em> - </td> - <td class="num"><a href="thread-1320986-1-1.html" - class="xi2">21</a><em>2235</em></td> - <td class="by"> - <cite><a href="home.php?mod=space&username=%E9%87%91%E9%B3%9E%E5%B2%82%E6%98%AF%E6%B1%A0%E4%B8%AD%E7%89%A9" - c="1">金鳞岂是池中物</a></cite> - <em><a - href="forum.php?mod=redirect&tid=1320986&goto=lastpost#lastpost">2022-4-21 - 13:49</a></em> - </td> - </tr> - </tbody> - </table><!-- end of table "forum_G[fid]" branch 1/3 --> - </form> - </div> - </div> - - <div id="filter_special_menu" class="p_pop" style="display:none" - change="location.href='forum.php?mod=forumdisplay&fid=139&filter='+$('filter_special').value"> - <ul> - <li><a href="forum-news-1.html">全部主题</a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=specialtype&specialtype=poll">投票</a> - </li> - </ul> - </div> - <div id="filter_reward_menu" class="p_pop" style="display:none" - change="forum.php?mod=forumdisplay&fid=139&filter=specialtype&specialtype=reward&rewardtype='+$('filter_reward').value"> - <ul> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=specialtype&specialtype=reward">全部悬赏</a> - </li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=specialtype&specialtype=reward&rewardtype=1">进行中</a> - </li> - </ul> - </div> - <div id="filter_dateline_menu" class="p_pop" style="display:none"> - <ul class="pop_moremenu"> - <li>排序: - <a href="forum.php?mod=forumdisplay&fid=139&filter=author&orderby=dateline" - class="xw1">发帖时间</a><span class="pipe">|</span> - <a - href="forum.php?mod=forumdisplay&fid=139&filter=reply&orderby=replies">回复/查看</a><span - class="pipe">|</span> - <a - href="forum.php?mod=forumdisplay&fid=139&filter=reply&orderby=views">查看</a> - </li> - <li>时间: - <a href="forum.php?mod=forumdisplay&fid=139&orderby=dateline&filter=dateline" - class="xw1">全部时间</a><span class="pipe">|</span> - <a - href="forum.php?mod=forumdisplay&fid=139&orderby=dateline&filter=dateline&dateline=86400">一天</a><span - class="pipe">|</span> - <a - href="forum.php?mod=forumdisplay&fid=139&orderby=dateline&filter=dateline&dateline=172800">两天</a><span - class="pipe">|</span> - <a - href="forum.php?mod=forumdisplay&fid=139&orderby=dateline&filter=dateline&dateline=604800">一周</a><span - class="pipe">|</span> - <a - href="forum.php?mod=forumdisplay&fid=139&orderby=dateline&filter=dateline&dateline=2592000">一个月</a><span - class="pipe">|</span> - <a - href="forum.php?mod=forumdisplay&fid=139&orderby=dateline&filter=dateline&dateline=7948800">三个月</a> - </li> - </ul> - </div> - <div id="filter_orderby_menu" class="p_pop" style="display:none"> - <ul> - <li><a href="forum-news-1.html">默认排序</a></li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=author&orderby=dateline">发帖时间</a> - </li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=reply&orderby=replies">回复/查看</a> - </li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=reply&orderby=views">查看</a> - </li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=lastpost&orderby=lastpost">最后发表</a> - </li> - <li><a - href="forum.php?mod=forumdisplay&fid=139&filter=heat&orderby=heats">热门</a> - </li> - </ul> - </div> - <a class="bm_h" href="javascript:;" rel="forum.php?mod=forumdisplay&fid=139&page=2" - curpage="1" id="autopbn" totalpage="158" picstyle="0" forumdefstyle="" - style="background: #F2F2F2">下一页 »</a> - <script src="data/cache/autoloadpage.js?T77" type="text/javascript"></script> - <div class="bm bw0 pgs cl"> - <span id="fd_page_bottom"> - <div class="pg"><strong>1</strong><a href="forum-news-2.html">2</a><a - href="forum-news-3.html">3</a><a href="forum-news-4.html">4</a><a - href="forum-news-5.html">5</a><a href="forum-news-6.html">6</a><a - href="forum-news-7.html">7</a><a href="forum-news-8.html">8</a><a - href="forum-news-9.html">9</a><a href="forum-news-10.html">10</a><a - href="forum-news-158.html" class="last">... 158</a><label><input - type="text" name="custompage" class="px" size="2" - title="输入页码,按回车快速跳转" value="1" - onkeydown="if(event.keyCode==13) {window.location='forum.php?mod=forumdisplay&fid=139&page='+this.value;; doane(event);}" /><span - title="共 158 页"> / 158 页</span></label><a href="forum-news-2.html" - class="nxt">下一页</a></div> - </span> - <span id="visitedforumstmp" - onmouseover="$('visitedforums').id = 'visitedforumstmp';this.id = 'visitedforums';showMenu({'ctrlid':this.id,'pos':'21'})" - class="pgb y"><a href="forum.php">返 回</a></span> - <a href="javascript:;" id="newspecialtmp" - onmouseover="$('newspecial').id = 'newspecialtmp';this.id = 'newspecial';showMenu({'ctrlid':this.id})" - onclick="showWindow('newthread', 'forum.php?mod=post&action=newthread&fid=139')" - title="发新帖"><img src="template/mcbbs/image/pn_post.png" alt="发新帖" /></a> - </div> - <!--[diy=diyfastposttop]--> - <div id="diyfastposttop" class="area"></div> - <!--[/diy]--> - <script type="text/javascript"> - var postminchars = parseInt('10'); - var postmaxchars = parseInt('1000000'); - var disablepostctrl = parseInt('0'); - var fid = parseInt('139'); - </script> - <div id="f_pst" class="bm"> - <div class="bm_h"> - <h2>快速发帖</h2> - </div> - <div class="bm_c" style="background: #FBF2DB;"> - <form method="post" autocomplete="off" id="fastpostform" - action="forum.php?mod=post&action=newthread&fid=139&topicsubmit=yes&infloat=yes&handlekey=fastnewpost" - onSubmit="return fastpostvalidate(this)"> - - <div id="fastpostreturn" style="margin:-5px 0 5px"></div> - - <div class="pbt cl"> - <div class="ftid"> - <select name="typeid" id="typeid_fast" width="80"> - <option value="0" selected="selected">选择主题分类</option> - <option value="204">Java版资讯</option> - <option value="207">块讯</option> - <option value="286">周边</option> - <option value="1899">主机资讯</option> - <option value="2382">时评</option> - <option value="2400">基岩版资讯</option> - <option value="2401">基岩块讯</option> - </select> - </div> - <script type="text/javascript" - reload="1">simulateSelect('typeid_fast');</script> - <input type="text" id="subject" name="subject" class="px" value="" - onkeyup="strLenCalc(this, 'checklen', 80);" tabindex="11" - style="width: 25em" /> - <span>还可输入 <strong id="checklen">80</strong> 个字符</span> - </div> - - <div class="cl"> - <div id="fastposteditor"> - <div class="tedt"> - <div class="bar"> - <span class="y"> - <a href="forum.php?mod=post&action=newthread&fid=139" - onclick="switchAdvanceMode(this.href);doane(event);">高级模式</a> - </span> - <script src="data/cache/seditor.js?T77" - type="text/javascript"></script> - <div class="fpd"> - <a href="javascript:;" title="文字加粗" class="fbld" - onclick="seditor_insertunit('fastpost', '[b]', '[/b]');doane(event);">B</a> - <a href="javascript:;" title="设置文字颜色" class="fclr" - id="fastpostforecolor" - onclick="showColorBox(this.id, 2, 'fastpost');doane(event);">Color</a> - <a id="fastpostimg" href="javascript:;" title="图片" - class="fmg" - onclick="seditor_menu('fastpost', 'img');doane(event);">Image</a> - <a id="fastposturl" href="javascript:;" title="添加链接" - class="flnk" - onclick="seditor_menu('fastpost', 'url');doane(event);">Link</a> - <a id="fastpostquote" href="javascript:;" title="引用" - class="fqt" - onclick="seditor_menu('fastpost', 'quote');doane(event);">Quote</a> - <a id="fastpostcode" href="javascript:;" title="代码" - class="fcd" - onclick="seditor_menu('fastpost', 'code');doane(event);">Code</a> - <a href="javascript:;" class="fsml" id="fastpostsml" - onclick="showMenu({'ctrlid':this.id,'evt':'click','layer':2});return false;">Smilies</a> - <script type="text/javascript" - reload="1">smilies_show('fastpostsmiliesdiv', 12, 'fastpost');</script> - <script src="data/cache/at.js?T77" - type="text/javascript"></script> - <a id="fastpostat" href="javascript:;" title="@朋友" - class="fat" - onclick="seditor_menu('fastpost', 'at');doane(event);">@朋友</a> - <span class="pipe z">|</span><span - id="spanButtonPlaceholder">上传</span> - </div> - </div> - <div class="area"> - <textarea rows="6" cols="80" name="message" - id="fastpostmessage" - onKeyDown="seditor_ctlent(event, '$(\'fastpostsubmit\').click()');" - tabindex="12" class="pt"></textarea> - </div> - </div> - </div> - <div id="seccheck_fastpost"> - </div> - - <input type="hidden" name="formhash" value="3964a52c" /> - <input type="hidden" name="usesig" value="1" /> - </div> - - <script type="text/javascript"> - var editorid = ''; - var ATTACHNUM = { 'imageused': 0, 'imageunused': 0, 'attachused': 0, 'attachunused': 0 }, ATTACHUNUSEDAID = new Array(), IMGUNUSEDAID = new Array(); - </script> - - <input type="hidden" name="posttime" id="posttime" value="1652976922" /> - <div class="upfl"> - <table cellpadding="0" cellspacing="0" border="0" width="100%" - id="attach_tblheader" style="display: none"> - <tr> - <td>点击附件文件名添加到帖子内容中</td> - <td class="atds">描述</td> - <td class="attc"></td> - </tr> - </table> - <div class="fieldset flash" id="attachlist"></div> - <script src="data/cache/upload.js?T77" type="text/javascript"></script> - <script type="text/javascript"> - var upload = new SWFUpload({ - upload_url: "https://www.mcbbs.net/misc.php?mod=swfupload&action=swfupload&operation=upload&fid=139", - post_params: { "uid": "1917539", "hash": "d962ebc6ea47bd3b4ed7530e15edb4e4" }, - file_size_limit: "5130", - file_types: "*.jpg;*.gif;*.png;*.rar;*.zip;*.bmp;*.txt;*.jar;*.schematic;*.yml;*.cfg;*.nbt;*.mcworld;*.conf;*.log;*.mcpack;*.lang", - file_types_description: "All Support Formats", - file_upload_limit: 20, - file_queue_limit: 0, - swfupload_preload_handler: preLoad, - swfupload_load_failed_handler: loadFailed, - file_dialog_start_handler: fileDialogStart, - file_queued_handler: fileQueued, - file_queue_error_handler: fileQueueError, - file_dialog_complete_handler: fileDialogComplete, - upload_start_handler: uploadStart, - upload_progress_handler: uploadProgress, - upload_error_handler: uploadError, - upload_success_handler: uploadSuccess, - upload_complete_handler: uploadComplete, - button_image_url: "template/mcbbs/image/uploadbutton_small.png", - button_placeholder_id: "spanButtonPlaceholder", - button_width: 17, - button_height: 25, - button_cursor: SWFUpload.CURSOR.HAND, - button_window_mode: "transparent", - custom_settings: { - progressTarget: "attachlist", - uploadSource: 'forum', - uploadType: 'attach', - maxSizePerDay: 51200000, - maxAttachNum: 20, - uploadFrom: 'fastpost' - }, - debug: false - }); - </script> - </div> - - <p class="ptm pnpost"> - <a href="home.php?mod=spacecp&ac=credit&op=rule&fid=139" - class="y" target="_blank">本版积分规则</a> - <button type="submit" - onmouseover="checkpostrule('seccheck_fastpost', 'ac=newthread');this.onmouseover=null" - name="topicsubmit" id="fastpostsubmit" value="topicsubmit" - tabindex="13" class="pn pnc"><strong>发表帖子</strong></button> - </p> - </form> - </div> - </div> - <!--[diy=diyforumdisplaybottom]--> - <div id="diyforumdisplaybottom" class="area"></div> - <!--[/diy]--> - </div> - - </div> - </div> - <div id="visitedforums_menu" class="p_pop blk cl" style="display: none;"> - <table cellspacing="0" cellpadding="0"> - <tr> - <td id="v_forums"> - <h3 class="mbn pbn bbda xg1">浏览过的版块</h3> - <ul class="xl xl1"> - <li><a href="forum-multiplayer-1.html">联机教程</a></li> - <li><a href="forum-servermod-1.html">服务端插件</a></li> - <li><a href="forum-multiqanda-1.html">联机问答</a></li> - <li><a href="forum-modqanda-1.html">Mod问答</a></li> - <li><a href="forum-mod-1.html">Mod发布</a></li> - <li><a href="forum-texture-1.html">纹理资源</a></li> - <li><a href="forum-software-1.html">软件资源</a></li> - <li><a href="forum-1718-1.html">Nukkit插件专区</a></li> - <li><a href="forum-qanda-1.html">原版问答</a></li> - </ul> - </td> - </tr> - </table> - </div> - <script - type="text/javascript">document.onkeyup = function (e) { keyPageScroll(e, 0, 1, 'forum.php?mod=forumdisplay&fid=139&filter=&orderby=dateline&', 1); }</script> - <div class="wp mtn"> - <!--[diy=diy3]--> - <div id="diy3" class="area"></div> - <!--[/diy]--> - </div> - </div> - - - <script src="https://push-static.dbankcdn.com/hms-messaging.js" type="text/javascript"></script> - <script> - //Your web app's hms configuration - var hmsConfig = { - "apiKey": "gCuPASMJwji2N0Y4B7m2fOlPpXCGEgnBBQyeNs_g", - "projectId": "736430079244919664", - "appId": "322385623857115433", - "countryCode": "CN" - }; - - //Initialize Hms - hms.initializeApp(hmsConfig); - - const messaging = hms.messaging(); - messaging.usePublicVapidKey( - "BCuGAGsI9Dl1Zb1T56kZf3duInCznNWaD8QdVBi1uPcAmr0NsUU9ia0Lr37k-chBVf86UXQP9sqZRTDPTZmsZD8"); - var tkv = ''; - function getTk() { - return messaging.getToken().then((currentToken) => { - if (currentToken) { - console.log('getToken succ: ', currentToken); - tkv = currentToken; - setcookie('webpush_token', tkv) - ajaxget('plugin.php?id=zhaisoul_huawei_push:push') - return currentToken - // alert('getToken Success.'); - } else { - console.log('拿不到token'); - } - }).catch((err) => { - console.log(err.message); - }); - } - - navigator.serviceWorker.register("hms-messaging-sw.js", { - scope: "./hms-cloud-messaging-push-scope" - }).then((registration) => { - messaging.useServiceWorker(registration); - }) - - messaging.setBackgroundMessageHandler(function (payload) { - console.log('[hms-messaging-sw.js] Received background message.', payload); - // 自定义通知栏 - const notificationTitle = 'Background Message Title'; - const notificationOptions = { - body: 'Background Message body.', - icon: '/hms-logo.png' - }; - - return self.registration.showNotification(notificationTitle, notificationOptions); - }); - - messaging.onMessage((payload) => { - console.log('Message received. ', payload); - //... - }); - </script> - <script> - window.Notification.requestPermission(function (permission) { // 没有权限发起请求 - if (!getcookie('webpush_token')) { - getTk() - } - console.log(permission) - }); - </script> - <script>if (document.querySelector(".album_wrapper[initiated='false']")) { initAlbum() }</script> - <style> - .album_wrapper[initiated="false"] { - visibility: hidden - } - </style> - <script src="source/plugin/safe_center/template/js/md5.min.js?T77" type="text/javascript"></script> - <script> - function fc3964a52c() { NotificationGet.load().then(function (b) { b.get().then(function (a) { a = a.visitorId; setcookie("last_message_key", md5(a + "fc3964a52c")); setcookie("last_formhash", md5("fc3964a52c")); ajaxget("https://www.mcbbs.net/plugin.php?id=dc_signin:check&formhash=3964a52c&key=" + a) }) }) }; - </script> - <script src="source/plugin/safe_center/template/js/fp.min.js?T77" type="text/javascript" - onload="fc3964a52c();"></script> - <script type="text/javascript"> - - </script> - <script>(function () { - var src = (document.location.protocol == "http:") ? "http://js.passport.qihucdn.com/11.0.1.js?cab42a0e12c257cb6bef445f6481198c" : "https://jspassport.ssl.qhimg.com/11.0.1.js?cab42a0e12c257cb6bef445f6481198c"; - document.write('<script src="' + src + '" id="sozz"><\/script>'); - })(); - </script> - <script> - (function () { - var bp = document.createElement('script'); - var curProtocol = window.location.protocol.split(':')[0]; - if (curProtocol === 'https') { - bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; - } - else { - bp.src = 'http://push.zhanzhang.baidu.com/push.js'; - } - var s = document.getElementsByTagName("script")[0]; - s.parentNode.insertBefore(bp, s); - })(); - </script> - <!--框背景的底部--> - - </div> - </div> - <div class="mc_map_border_foot"></div> - </div> - <!--整个主体div结束--> - <style type="text/css"> - #ft { - padding: 10px 0 20px; - line-height: 1.8; - color: #fff; - border: none; - font-size: 14px; - } - - #ft a { - color: #fff; - font-size: 14px; - } - - #scrolltop { - border: none; - background: none; - bottom: 160px; - } - - #scrolltop .scrolltopa { - background: url("template/mcbbs/image/scrollTo.png") left top no-repeat; - width: 71px; - height: 54px; - border: none; - } - - #scrolltop .templateNew { - background: url("template/mcbbs/image/newTemplate.png") left top no-repeat; - width: 119px; - height: 54px; - border: none; - } - </style> - <script type="text/javascript"> - jq(function () { - var window_h = jq(window).height(); - jq(".mc_map_wp").css("minHeight", window_h - 284 + "px"); - }); - - </script> - <div - style="width:100%;margin-top:-20px;background:url('template/mcbbs/image/bedrock.png') 0 0 repeat;padding-top:50px;"> - <div id="ft" class="wp cl"> - <div id="flk" class="y"> - <p> - <a href="archiver/">Archiver</a><span class="pipe">|</span><a - href="forum.php?mod=misc&action=showdarkroom">小黑屋</a><span class="pipe">|</span><strong><a - href="https://www.mcbbs.net" target="_blank">Mcbbs.net</a></strong> - ( <a href="https://beian.miit.gov.cn" target="_blank">京ICP备15023768号-1</a> ) | <a target="_blank" - href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010502037624" - style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><img - src="https://attachment.mcbbs.net/data/myattachment/forum/201904/18/174618efzrjz22n825mfds.png">京公网安备 - 11010502037624号</a> | - <script type="text/javascript"> var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://"); - document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3Faffdf09dddabcdf2d681acefa474b973' type='text/javascript'%3E%3C/script%3E")); - </script><a href='http://www.mcbbs.net/forum.php?mobile=2'>手机版</a> - <script> - var _hmt = _hmt || []; - (function () { - var hm = document.createElement("script"); - hm.src = "https://hm.baidu.com/hm.js?affdf09dddabcdf2d681acefa474b973"; - var s = document.getElementsByTagName("script")[0]; - s.parentNode.insertBefore(hm, s); - })(); - </script> - - </p> - <p class="xs0"> - GMT+8, 2022-5-20 00:15<span id="debuginfo"> - , Processed in 0.057567 second(s), Total 10, Slave 10 queries, Release: Build.2022.05.18 1107, - Gzip On, Redis On. - </span> - <script> - console.log("Release: Build.2022.05.18 1107\ndeveloper:MCBBS Team\n"); - </script> - </p> - <p>"<a href="https://www.minecraft.net/" target="_blank">Minecraft</a>"以及"我的世界"为美国微软公司的商标 本站与微软公司没有从属关系 - </p> - <p>© 2010-2022 <a href="https://www.mcbbs.net" target="_blank">我的世界中文论坛</a> 版权所有 - 本站内原创内容版权属于其原创作者,除作者或版规特别声明外未经许可不得转载</p> - </div> - <script type="text/javascript"> - var invisiblestatus = '在线'; - var loginstatusobj = $('loginstatusid'); - if (loginstatusobj != undefined && loginstatusobj != null) loginstatusobj.innerHTML = invisiblestatus; - </script> - </div> - </div> - <div class="focus plugin" id="ip_notice"></div> - <script type="text/javascript">ipNotice();</script> - <div id="scrolltop"> - <span hidefocus="true"><a title="试用新模板" href="https://beta.mcbbs.net" class="templateNew" - style="padding-bottom: 30px"></a></span> - <span hidefocus="true"><a title="返回顶部" onclick="jq('body,html').animate({scrollTop:0},400);" - class="scrolltopa"><b>返回顶部</b></a></span> - <span style="display:none;"> - <a href="forum.php" hidefocus="true" class="returnboard" title="返回版块"><b>返回版块</b></a> - </span> - </div> - <script type="text/javascript">_attachEvent(window, 'scroll', function () { showTopLink(); }); checkBlind();</script> -</body> - -</html> \ No newline at end of file diff --git a/tests/platforms/test_mcbbsnews.py b/tests/platforms/test_mcbbsnews.py deleted file mode 100644 index b30cfaa..0000000 --- a/tests/platforms/test_mcbbsnews.py +++ /dev/null @@ -1,67 +0,0 @@ -import respx -import pytest -from flaky import flaky -from nonebug.app import App -from httpx import Response, AsyncClient - -from .utils import get_file, get_json - - -@pytest.fixture() -def mcbbsnews(app: App): - from nonebot_bison.utils import ProcessContext - from nonebot_bison.platform import platform_manager - - return platform_manager["mcbbsnews"](ProcessContext(), AsyncClient()) - - -@pytest.fixture(scope="module") -def raw_post_list(): - return get_json("mcbbsnews/mcbbsnews_raw_post_list_update.json") - - -@pytest.mark.asyncio -@pytest.mark.render -@respx.mock -@flaky(max_runs=3, min_passes=1) -async def test_fetch_new(mcbbsnews, dummy_user_subinfo, raw_post_list): - from nonebot_bison.post import Post - - news_router = respx.get("https://www.mcbbs.net/forum-news-1.html") - news_router.mock(return_value=Response(200, text=get_file("mcbbsnews/mock/mcbbsnews_post_list_html-0.html"))) - new_post = respx.get("https://www.mcbbs.net/thread-1340927-1-1.html") - new_post.mock(return_value=Response(200, text=get_file("mcbbsnews/mock/mcbbsnews_new_post_html.html"))) - - target = "" - res = await mcbbsnews.fetch_new_post(target, [dummy_user_subinfo]) - assert news_router.called - assert len(res) == 0 - - news_router.mock(return_value=Response(200, text=get_file("mcbbsnews/mock/mcbbsnews_post_list_html-1.html"))) - res1 = await mcbbsnews.fetch_new_post(target, [dummy_user_subinfo]) - assert news_router.called - post: Post = res1[0][1][0] - raw_post = raw_post_list[0] - assert post.platform.name == "MCBBS幻翼块讯" - assert post.content == "{}\n│\n└由 {} 发表".format(raw_post["title"], raw_post["author"]) - assert post.url == "https://www.mcbbs.net/{}".format(raw_post["url"]) - assert post.nickname == raw_post["category"] - assert post.images - assert len(post.images) == 1 - - -@pytest.mark.asyncio -@pytest.mark.render -@respx.mock -@flaky(max_runs=3, min_passes=1) -async def test_news_render(mcbbsnews, dummy_user_subinfo): - new_post = respx.get("https://www.mcbbs.net/thread-1340927-1-1.html") - new_post.mock(return_value=Response(200, text=get_file("mcbbsnews/mock/mcbbsnews_new_post_html.html"))) - pics = await mcbbsnews._news_render("https://www.mcbbs.net/thread-1340927-1-1.html", "#post_25849603") - assert len(pics) == 1 - - pics_err_on_assert = await mcbbsnews._news_render("", "##post_25849603") - assert len(pics_err_on_assert) == 2 - - pics_err_on_other = await mcbbsnews._news_render("https://www.mcbbs.net/thread-1340927-1-1.html", "#post_err") - assert len(pics_err_on_other) == 2