随心修改器 【支持1.3.15】
- 分类:骑砍2:霸主MOD - 霸主功能
- 来源: 原创
- 浏览:7740 次
- 下载:1605 次
- 大小:50KB
- 版本:1.1
- 作者:随心
- 时间:2026-04-26
更新日志:
新增:
1.攻城扎营速度倍率
2.攻城器械建造速度倍率
3.攻城器械无敌(在大地图上和战场中)
4.割草范围自定义
BUG修复
1.修复在竞技场中崩溃的bug
2.修复多重穿透无法关闭的bug
【随心修改器BUG反馈群】:1080887001
作者的话:
最近我看到有人说我剽窃了内置修改器,这里我必须澄清一下
点击查看
◆MOD名称
随心修改器

◆必看说明
无需创建新档即可使用,在大地图设置
创建新档时必须关闭MOD,然后在大地图启用
◆MOD介绍
包含60+项功能

角色

王国

部队

打铁

◆等其他
2539244691
总体评价
最原版的 功能 就把总开关开了 进竞技场 就蹦 竞技场练习也是
骑马与砍杀2:霸主 - 崩溃分析报告
:root {
/* --- 核心配色 (Slate & Emerald & Rose & Indigo) --- */
--bg-body: #f1f5f9; /* 稍微深一点的灰白,突出卡片 */
--bg-card: #ffffff;
/* 更加丰富的深色渐变 */
--bg-header: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
--text-main: #1e293b;
--text-secondary: #64748b;
--text-light: #94a3b8;
--primary: #10b981; /* Emerald 500 */
--primary-dark: #059669; /* Emerald 600 */
--primary-light: #d1fae5; /* Emerald 100 */
--primary-glow: rgba(16, 185, 129, 0.4);
--danger: #f43f5e; /* Rose 500 */
--danger-bg: #fff1f2; /* Rose 50 */
--danger-border: #fecdd3; /* Rose 200 */
--warning: #f59e0b; /* Amber 500 */
--warning-bg: #fffbeb; /* Amber 50 */
--warning-border: #fde68a;
--code-bg: #282c34; /* One Dark 背景色 */
--border: #e2e8f0;
/* --- 阴影系统 --- */
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--shadow: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.08);
--shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
--shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
--radius: 16px; /* 更圆润的角 */
}
/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
:root {
--bg-body: #0b1120;
--bg-card: #1e293b;
--text-main: #f8fafc;
--text-secondary: #cbd5e1;
--text-light: #64748b;
--border: #334155;
--danger-bg: rgba(244, 63, 94, 0.1);
--danger-border: rgba(244, 63, 94, 0.3);
--warning-bg: rgba(245, 158, 11, 0.1);
--warning-border: rgba(245, 158, 11, 0.3);
--primary-light: rgba(16, 185, 129, 0.1);
--shadow: 0 4px 6px -1px rgb(0 0 0 / 0.5);
--shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.5);
}
}
/* ================= 动画定义 ================= */
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
0% { box-shadow: 0 0 0 0 var(--primary-glow); }
70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: \'Inter\', system-ui, -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, \'Microsoft YaHei UI\', sans-serif;
background: var(--bg-body);
color: var(--text-main);
line-height: 1.6;
padding: 30px 20px;
-webkit-font-smoothing: antialiased;
}
.container {
max-width: 1400px;
margin: 0 auto;
}
/* ================= 顶部 Header (增强视觉) ================= */
.header {
background: var(--bg-header);
color: white;
padding: 5rem 3rem;
border-radius: var(--radius);
box-shadow: var(--shadow-lg);
margin-bottom: 2.5rem;
position: relative;
overflow: hidden;
animation: fadeInUp 0.6s ease-out;
}
/* 背景纹理装饰 */
.header::before {
content: \'\';
position: absolute;
inset: 0;
background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
background-size: 30px 30px;
opacity: 0.3;
pointer-events: none;
}
/* 动态光效 */
.header::after {
content: \'\';
position: absolute;
top: -50%; right: -10%;
width: 600px; height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
transform: rotate(-15deg);
pointer-events: none;
filter: blur(40px);
}
.header h1 {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 0.8rem;
letter-spacing: -0.02em;
text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.header p { color: #e2e8f0; font-size: 1.1rem; font-weight: 500; }
.subtitle {
display: inline-flex;
align-items: center;
margin-top: 1.2rem;
padding: 6px 16px;
background: rgba(255,255,255,0.15);
border: 1px solid rgba(255,255,255,0.2);
border-radius: 99px;
font-size: 0.9rem;
backdrop-filter: blur(8px);
}
/* ================= 通用卡片 (增加悬停交互) ================= */
.section {
background: var(--bg-card);
border-radius: var(--radius);
padding: 2.5rem;
margin-bottom: 2rem;
box-shadow: var(--shadow);
border: 1px solid var(--border);
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
animation: fadeInUp 0.6s ease-out backwards;
}
/* 依次延迟动画 */
.section:nth-child(1) { animation-delay: 0.1s; }
.section:nth-child(2) { animation-delay: 0.2s; }
.section:nth-child(3) { animation-delay: 0.3s; }
.section:nth-child(4) { animation-delay: 0.4s; }
.section:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.section-title {
font-size: 1.6rem;
color: var(--text-main);
margin-bottom: 1.8rem;
padding-bottom: 1rem;
border-bottom: 2px solid var(--border);
font-weight: 700;
display: flex;
align-items: center;
position: relative;
}
.section-title::before {
content: \'\';
display: inline-block;
width: 8px; height: 32px;
background: var(--primary);
margin-right: 16px;
border-radius: 4px;
box-shadow: 0 2px 8px var(--primary-glow);
}
/* ================= 信息网格 (Info Grid) ================= */
.info-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .info-grid { grid-template-columns: repeat(4, 1fr); } }
.info-card {
background: var(--bg-body);
border: 1px solid var(--border);
border-radius: 12px;
padding: 1.5rem;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.info-card:hover {
border-color: var(--primary);
transform: translateY(-4px);
box-shadow: var(--shadow-md);
background: var(--bg-card);
}
.info-card h3 {
color: var(--text-secondary);
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.08em;
font-weight: 600;
margin-bottom: 0.5rem;
}
.info-card p {
color: var(--text-main);
font-size: 1.25rem;
font-weight: 700;
/* 文本溢出处理 */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.severity-badge {
display: inline-flex;
align-items: center;
padding: 4px 12px;
border-radius: 99px;
color: white;
font-weight: 700;
font-size: 0.85rem;
box-shadow: 0 2px 4px rgba(0,0,0,0.15);
letter-spacing: 0.5px;
}
/* ================= 问题分析 (Problem Analysis) ================= */
.mod-warning {
background: var(--danger-bg);
border: 1px solid var(--danger-border);
border-left: 6px solid var(--danger);
padding: 2rem;
border-radius: 12px;
margin-bottom: 2rem;
position: relative;
}
.mod-warning h3 {
color: var(--danger);
font-size: 1.2rem;
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 10px;
}
.mod-name {
font-size: 1.5rem;
margin: 1.2rem 0;
padding: 1.2rem;
background: rgba(255,255,255,0.6);
backdrop-filter: blur(4px);
border-radius: 8px;
color: var(--danger);
font-weight: 800;
box-shadow: var(--shadow-sm);
border: 1px solid var(--danger-border);
}
@media (prefers-color-scheme: dark) {
.mod-name { background: rgba(0,0,0,0.2); }
}
/* ================= 系统状态 & 统计 ================= */
.system-info {
background: linear-gradient(to right, var(--bg-body), var(--bg-card));
border: 1px solid var(--border);
border-radius: 12px;
padding: 1.5rem;
margin: 2rem 0;
}
.stats-row {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 1.5rem;
margin-top: 1rem;
}
.stat-item {
text-align: center;
padding: 1.5rem;
background: var(--bg-card);
border-radius: 16px;
border: 1px solid var(--border);
min-width: 160px;
box-shadow: var(--shadow-sm);
transition: transform 0.2s;
}
.stat-item:hover { transform: scale(1.05); border-color: var(--text-light); }
.stat-value { font-size: 2.2rem; font-weight: 800; color: var(--text-main); line-height: 1.2; }
.stat-label { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.5rem; font-weight: 600; text-transform: uppercase; }
/* ================= 列表样式 (Lists) ================= */
.chinese-info {
background: var(--primary-light);
border: 1px solid rgba(16, 185, 129, 0.3);
border-radius: 12px;
padding: 1.8rem;
margin: 1.5rem 0;
}
.scenarios-list, .suggestions-list {
background: var(--bg-body);
border-radius: 12px;
padding: 1.5rem;
margin: 1.2rem 0;
border: 1px solid var(--border);
}
.scenarios-list h4, .suggestions-list h4 {
color: var(--text-main);
font-weight: 700;
margin-bottom: 1rem;
font-size: 1.05rem;
}
.scenarios-list ul, .suggestions-list ul { list-style: none; padding-left: 0; }
.scenarios-list li, .suggestions-list li {
padding: 0.85rem 0;
border-bottom: 1px dashed var(--border);
display: flex;
align-items: start;
color: var(--text-secondary);
}
.scenarios-list li:last-child, .suggestions-list li:last-child { border-bottom: none; }
.scenarios-list li::before { content: \'●\'; color: var(--warning); margin-right: 12px; font-size: 0.8em; margin-top: 4px; }
.suggestions-list li::before { content: \'✓\'; color: var(--primary); margin-right: 12px; font-weight: 800; }
/* ================= 堆栈跟踪 (Stack Trace) ================= */
.stack-trace {
background: var(--code-bg);
border-radius: 12px;
overflow: hidden;
border: 1px solid #334155;
font-family: \'JetBrains Mono\', \'Consolas\', monospace;
}
.stack-frame {
background: var(--bg-card);
border-bottom: 1px solid var(--border);
margin-bottom: 0;
transition: background 0.15s;
}
.stack-frame-mod { background: #fff1f2; border-left: 4px solid var(--danger); }
.stack-frame-core { background: var(--bg-body); border-left: 4px solid var(--text-light); }
/* 深色模式下 Mod 帧背景调整 */
@media (prefers-color-scheme: dark) {
.stack-frame-mod { background: rgba(244, 63, 94, 0.1); }
.stack-frame-core { background: rgba(255, 255, 255, 0.03); }
}
.stack-frame:hover { filter: brightness(0.97); }
.stack-frame-header {
padding: 14px 20px;
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
font-size: 0.9rem;
cursor: pointer;
}
.frame-method { flex: 1; font-weight: 600; color: var(--text-main); word-break: break-all; }
.stack-frame-mod .frame-method { color: #be123c; } /* 深红 */
@media (prefers-color-scheme: dark) { .stack-frame-mod .frame-method { color: #fb7185; } }
.frame-location {
color: var(--text-secondary);
font-size: 0.8em;
padding: 4px 10px;
background: rgba(0,0,0,0.05);
border-radius: 6px;
font-family: inherit;
}
/* Badges */
.frame-badge {
padding: 3px 8px;
border-radius: 6px;
font-size: 0.75em;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.mod-badge { background: var(--danger); color: white; box-shadow: 0 2px 4px rgba(244, 63, 94, 0.3); }
.core-badge { background: var(--text-light); color: white; }
.decompiled-badge { background: #8b5cf6; color: white; }
/* ================= 源码查看 (Source Code Editor Style) ================= */
.toggle-source-btn {
background: white;
border: 1px solid var(--border);
color: var(--text-secondary);
padding: 8px 16px;
margin: 0 20px 16px;
border-radius: 8px;
font-size: 0.85rem;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.2s;
font-weight: 500;
}
.toggle-source-btn:hover { background: var(--bg-body); border-color: var(--text-secondary); color: var(--text-main); }
.source-context {
background: #282c34; /* 经典深色编辑器背景 */
border-radius: 0 0 12px 12px; /* 只圆下角 */
padding: 0;
border: 1px solid #3f3f46;
margin: 0 16px 16px 16px;
overflow: hidden;
box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
}
.source-header {
background: #21252b;
padding: 8px 16px;
border-bottom: 1px solid #181a1f;
display: flex;
align-items: center;
gap: 8px;
font-size: 0.8rem;
color: #abb2bf;
}
.source-code {
color: #abb2bf;
font-family: \'JetBrains Mono\', \'Consolas\', monospace;
font-size: 0.9rem;
line-height: 1.7; /* 稍微增加行高 */
overflow-x: auto;
padding: 16px 0;
}
/* 自定义滚动条 */
.source-code::-webkit-scrollbar { height: 10px; background: #282c34; }
.source-code::-webkit-scrollbar-thumb { background: #4b5263; border-radius: 5px; }
.source-code code { display: block; min-height: 1.2em; }
/* --- 核心修复:行号与对齐 --- */
.source-code .line-meta {
display: inline-block;
min-width: 95px; /* 确保足够宽度 */
color: #5c6370; /* 弱化的灰色 */
text-align: right;
margin-right: 15px;
user-select: none; /* 禁止选中 */
-webkit-user-select: none;
border-right: 1px solid #3e4451;
padding-right: 12px;
white-space: pre;
vertical-align: top;
font-size: 0.85em; /* 行号稍微小一点 */
}
/* --- 核心修复:错误行高亮与偏移 --- */
.source-code .error-line {
background: rgba(224, 108, 117, 0.15); /* 柔和的红色背景 */
color: #e06c75;
font-weight: bold;
display: block;
/* 填满容器宽度 */
margin: 0;
/* 左侧加粗红线 */
border-left: 4px solid #e06c75;
/* 右移修复:左内边距 = 标准内边距 + 额外缩进 */
padding: 0 1rem 0 4px; /* 这里稍微调整了一下逻辑,让文字和上面对齐更自然 */
}
/* 让错误行的行号颜色也变红 */
.source-code .error-line .line-meta {
color: #e06c75;
border-right-color: rgba(224, 108, 117, 0.4);
background: linear-gradient(90deg, transparent, rgba(224, 108, 117, 0.1));
}
.decompile-info {
margin: 0;
padding: 8px 16px;
background: #21252b;
border-top: 1px solid #3e4451;
color: #c678dd; /* 紫色 */
font-size: 0.8rem;
font-family: \'JetBrains Mono\', monospace;
}
/* ================= 终端风格视图 (Terminal) ================= */
.terminal-stack-trace {
background: #1e1e1e; /* VS Code Terminal Dark */
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-lg);
margin: 3rem 0;
border: 1px solid #333;
}
.terminal-header {
background: #252526;
padding: 10px 20px;
border-bottom: 1px solid #333;
display: flex;
justify-content: space-between;
align-items: center;
}
.terminal-title { color: #4ec9b0; font-family: monospace; font-weight: bold; }
.terminal-hint {
background: #3c3c3c;
color: #cccccc;
padding: 2px 8px;
border-radius: 4px;
font-size: 0.75rem;
}
.terminal-content {
padding: 20px;
color: #d4d4d4;
font-family: \'JetBrains Mono\', \'Consolas\', monospace;
font-size: 0.9rem;
line-height: 1.6;
white-space: pre;
overflow-x: auto;
max-height: 600px;
overflow-y: auto;
}
.terminal-content::-webkit-scrollbar { width: 12px; height: 12px; background: #1e1e1e; }
.terminal-content::-webkit-scrollbar-thumb { background: #424242; border-radius: 6px; border: 2px solid #1e1e1e; }
/* ================= 底部操作区 ================= */
.quick-actions {
background: var(--warning-bg);
border: 1px solid var(--warning-border);
border-radius: 12px;
padding: 2rem;
margin: 2.5rem 0;
text-align: center;
}
.action-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
background: white;
border: 1px solid #fbbf24;
color: #d97706;
padding: 12px 24px;
margin: 8px;
border-radius: 8px;
font-weight: 700;
text-decoration: none;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
box-shadow: var(--shadow-sm);
}
.action-button:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-md);
background: #fffbeb;
border-color: #f59e0b;
}
/* ================= 摘要盒子 ================= */
.summary-box {
background: linear-gradient(135deg, var(--primary-light), white);
border: 2px solid var(--primary);
border-radius: 16px;
padding: 2.5rem;
box-shadow: var(--shadow);
}
.summary-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 1.5rem;
}
@media (min-width: 768px) { .summary-grid { grid-template-columns: repeat(4, 1fr); } }
.summary-item {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
padding: 1.5rem;
border-radius: 12px;
text-align: center;
border: 1px solid rgba(16, 185, 129, 0.2);
transition: transform 0.2s;
}
.summary-item:hover { transform: translateY(-5px); border-color: var(--primary); }
.summary-icon { font-size: 2.5rem; margin-bottom: 12px; }
.summary-title { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 4px; font-weight: 600; }
.summary-value { font-size: 1.1rem; font-weight: 800; color: var(--primary-dark); }
/* ================= Footer ================= */
.footer {
text-align: center;
padding: 4rem 0;
color: var(--text-secondary);
border-top: 1px solid var(--border);
margin-top: 4rem;
}
.author-info {
background: linear-gradient(to bottom right, #f0fdfa, #ccfbf1);
border: 1px solid #99f6e4;
padding: 2.5rem;
border-radius: 16px;
display: inline-block;
margin-top: 2rem;
box-shadow: var(--shadow);
max-width: 600px;
width: 100%;
}
.author-name {
font-size: 1.8rem;
font-weight: 800;
color: #0f766e;
margin: 0.5rem 0;
background: -webkit-linear-gradient(45deg, #0f766e, #14b8a6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* ================= 浮动组件 ================= */
.back-to-top {
position: fixed; bottom: 40px; right: 40px;
width: 56px; height: 56px;
border-radius: 50%;
background: var(--primary);
color: white;
border: none;
font-size: 24px;
box-shadow: var(--shadow-lg);
cursor: pointer;
display: none;
align-items: center; justify-content: center;
z-index: 100;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.back-to-top:hover {
transform: translateY(-8px) scale(1.1);
background: var(--primary-dark);
box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.4);
}
.progress-bar {
position: fixed; top: 0; left: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary), #34d399);
z-index: 9999; width: 0;
transition: width 0.2s ease;
box-shadow: 0 1px 3px rgba(16, 185, 129, 0.4);
}
-
英雄加强[支持1.3.x][原创]
霸主功能 / 原创浏览:103614 次下载:21116 次 -
中文站骑砍2模组一键汉化工具v0.93 | 支持DeepSeek/AI智能翻译 | 小白秒上手
游戏工具 / 原创浏览:9738 次下载:2770 次 -
RTS Camera自由视角[支持战帆1.1.1/本体1.3.13/本体v1.2.12][原创]
霸主功能 / 原创浏览:506575 次下载:196279 次 -
衣谷三国v0.1.3.60[支持1.2.12][Demo版本]
骑砍2:霸主MOD / 原创浏览:2877778 次下载:1899191 次 -
骑马与砍杀战团23MOD典藏中文版
游戏下载 / 二次创作浏览:1449116 次下载:336941 次 -
战场沉浸 - 斥候迷雾 (Battlefield Immersion - Scouting Fog) v1.1.0
霸主功能 / 原创浏览:944 次下载:72 次 -
WSE2启动器[战团][汉化版][Warband Script Enhancer 2]
游戏工具 / 转载 / 汉化浏览:271977 次下载:159307 次 -
织丰[汉化整合包下载][支持1.2.12]
霸主剧本 / 转载浏览:757396 次下载:423597 次 -
士兵编辑器【1.2.12-1.3.14】【支持DLC】(可视化自定义兵种\创建兵种\创造兵种mod)
霸主功能 / 原创浏览:385841 次下载:134545 次
-
MOD四前置[支持1.3.x-1.1.0]25.12.06
11 / 转载浏览:3563365 次下载:2276340 次 -
【测试中】新版骑砍中文站Mod管理器
游戏工具 / 原创浏览:2778138 次下载:2094379 次 -
衣谷三国v0.1.3.60[支持1.2.12][Demo版本]
骑砍2:霸主MOD / 原创浏览:2877778 次下载:1899191 次 -
权游国度6.3.3[支持1.2.12-1.2.10]
15 / 转载 / 汉化浏览:1813037 次下载:743106 次 -
东亚王朝1645V3.1国庆版[支持1.2.12][整合版]
15 / 二次创作浏览:1540378 次下载:606493 次 -
混搭武器包-国风版[支持1.3x-1.2x][原创]
14 / 原创浏览:1325614 次下载:582754 次 -
军火商[支持正式版v1.0.1][原创]
13 / 原创浏览:2069330 次下载:549734 次 -
中古战锤[支持1.2.11][汉化版]汉化包v2
15 / 汉化浏览:1383421 次下载:497715 次 -
【马年大更新!】衣谷三国196大拓展【支持1.212】稳定版发布!!
15 / 原创 / 二次创作 / 汉化浏览:648157 次下载:430151 次






cunt1111
总体评价
超过7个工厂就会出错跳出
等两天吧
不好意思,還是沒能成功
你好,請問現在支持1.3.4嗎?
已修复,重新打开网盘地址下载