插件中文资料库
中文说明、玩家点评、适用场景和替代推荐,方便快速判断是否适合你。
- 界面布局、头像框、姓名板和动作条优化
Returner 插件下载与使用指南
本页整理了 Returner 的功能用途、适用人群、安装方法和常见问题,方便玩家快速判断是否需要安装。
适合谁用
Returner 是一款 其他插件 类插件,适合需要优化界面、提升操作效率或补充游戏信息提示的魔兽世界玩家。
基本信息
- 插件作者:axelrodd123
- 插件分类:其他插件
- 适配版本:12.0.0,12.0.1,12.0.5,12.0.7
- 累计下载:5,777
安装方法
- 点击上方下载按钮获取 Returner插件文件。
- 解压后将插件文件夹放入 World of Warcraft/_retail_/Interface/AddOns 目录。
- 重启游戏或在角色界面点击插件,确认 Returner 已启用。
- 如果插件不生效,请检查版本是否匹配,或关闭同类冲突插件后重试。
使用建议
Returner 安装后建议先在角色界面确认已启用,进入游戏后根据插件提供的命令、小地图按钮或设置面板进行调整。如遇到报错,可先单独启用该插件排查冲突。
Returner 常见问题
Returner 适合需要 其他插件 类功能的玩家,特别是希望提升游戏便利性、界面管理或战斗信息获取效率的用户。
下载后解压到 Interface/AddOns 目录,然后重启游戏并在角色界面启用插件。
常见原因是目录多套一层、游戏版本不匹配、依赖插件缺失或同类插件冲突。
可以查看本页的替代插件推荐和相关插件区域,按下载量和分类选择同类工具。
插件 AI 问答
可以问:这个插件正式服能用吗、和 DBM 冲突吗、怎么设置、有没有替代插件。
Returner 是一款魔兽世界插件,主要用于其他插件相关功能。建议根据自己的版本和插件环境先测试兼容性。
插件用途
Returner 主要面向需要其他插件功能的玩家,用来改善游戏体验、减少重复操作或补充默认界面没有直接提供的信息。
适用场景
- 其他插件相关功能
使用建议
安装后建议先在角色选择界面或插件管理器中确认已启用,再进入游戏测试是否与现有整合包、WA 和其他插件冲突。如遇报错,可以先禁用同类插件排查。
WORLD OF WARCRAFT · ADDON · MIT LICENSED · AUTO-UPDATED DAILY
RETURNER
The welcome-back panel that catches you up before you alt-tab.
You log back in. You see 47 mail icons, three currencies you don't recognize, and a quest hub on the map you've never visited. Guild chat has scrolled past 200 messages of jokes about a boss you've never heard of. You feel old.
Returner fixes that.
|
40+ NEWS ITEMS |
0 ms COMBAT IMPACT |
12 kB TOTAL SIZE |
DAILY AUTO-REFRESH |
What it looks like in-game

Caption suggestion : "The actual panel after a 23-day absence. Color-coded cards, clickable URLs, scrollable history."
Why this exists
WoW has too much. Daily quests, weekly resets, monthly events, seasonal patches, expansion drops, hotfixes every Tuesday. If you skip a week, you've already missed three things. If you skip three weeks, you no longer remember which faction is mad at you.
Wowhead and Reddit and the official forums all live in a browser tab you have to remember to open. Returner brings the news directly into the place you already are : in-game, exactly when it matters, exactly the moment you log back in.
Features
| Feature | What it does |
|---|---|
| Smart auto-popup | Triggers only after your absence threshold and only when there's actually something new. No spam. No popup-fatigue. |
| Color-coded news | Each item is tagged : PATCH, EVENT, HOTFIX, NEWS, ESPORTS. Skim what you care about. |
| Per-account memory | Catch up on alt 1, alt 2 stays quiet. The "last seen" timestamp lives at account level. |
| Lightweight | Pure Lua, zero library dependencies, ~12 kB on disk. Runs only at login. Zero ticking timers in combat. |
| Auto-updated content | A daily GitHub Action regenerates the news data, tags a release, and ships it to CurseForge. You auto-update overnight, your panel stays fresh forever. |
| Hackable | The data is a plain Lua table. Add your guild events, custom dates, internal raid notes. Reload, done. |
| Open source | MIT licensed. Source, scripts, scraper, CI workflows, packager config : all public. |
Commands
| Command | Description |
|---|---|
/rt or /returner |
Open the panel anytime. |
/rt threshold <N> |
Days of absence before auto-popup. 0 disables, /rt still works manually. |
/rt on / /rt off |
Toggle the auto-popup without losing your threshold setting. |
/rt reset |
Clear the read state. Next open shows every item again. |
/rt status |
Print current settings, threshold, last-seen, seen-until. |
/rt simulate <N> |
Preview the panel as if you'd been away N days. Pure testing tool. |
The plumbing (for the curious)
Most addons need a developer remembering to update them. Returner is different : the bundled news file regenerates itself every morning via a GitHub Action, then auto-publishes to CurseForge. The dev does nothing. You auto-update through the CurseForge App. Your panel is always current.
WoW News RSS → GitHub Action (cron at 06:00 UTC)
↓
Python scraper / parser
↓
Data.lua regenerated
↓
Auto-tag if changed
↓
BigWigsMods packager
↓
CurseForge auto-publish
↓
You auto-update overnight
If Wowhead's feed format ever changes, the maintainer gets a GitHub email about a failed run and fixes the parser. The whole pipeline is public, audit it, fork it, run your own.
Want to hack it ?
Adding your own custom news item is one Lua table entry. Open Data.lua in the addon folder and append :
{
timestamp = 1762000000,
title = "Guild raid night, Friday 21h CET",
body = "Be there or be benched.",
url = "https://discord.gg/your-guild",
category = "event",
},
Reload, done. The panel picks it up automatically.
FAQ
Will it slow my game down ?
No. Returner has zero CPU cost outside of one panel popup at login. No combat-time logic, no ticking timers, no event handlers in hot paths.
Will it spam me on every alt ?
No. The "last seen" timestamp is shared across your account. Catch up on one character, the others stay quiet.
What if I never want the popup ?
Run /rt off or set the threshold to 0. The panel stays accessible via /rt manually, and your settings persist across sessions.
How fresh is the news ?
Refreshed once a day, max 24 hours after a story breaks. Old items roll off after one year so the panel stays focused on what's actually recent.
Why not a Discord bot or a website ?
Because alt-tabbing is the friction that made you skip the news in the first place. Returner is in-game, exactly where you already are.
Found a bug ?
Open an issue on GitHub. Pull requests welcome. The maintainer responds.
« Don't read the news. The news reads itself to you. »
Source & license
Source : github.com/axelrodd123/Returner
License : MIT. Fork it, mod it, ship your own variant.
Issues : github.com/axelrodd123/Returner/issues
━━━━━━━━━━━━━━━━━
AxelRodd · still chasing the perfect corner hit
CurseForge: https://www.curseforge.com/wow/addons/returner用户评价
暂无 / 5,0 条评价相关推荐
继续看看这些内容