魔兽科普汇聚WoW玩家们专属综合资讯门户网站!

FishingStats

FishingStats 是一款魔兽世界插件,主要用于其他插件相关功能。建议根据自己的版本和插件环境先测试兼容性。

免费下载 举报 收藏插件
插件详情

插件中文资料库

中文说明、玩家点评、适用场景和替代推荐,方便快速判断是否适合你。

玩家一句话点评
FishingStats 适合需要其他插件、界面增强或玩法辅助的玩家,建议结合自己的职业和版本先测试再长期使用。
适用场景
  • 界面布局、头像框、姓名板和动作条优化

FishingStats 插件下载与使用指南

本页整理了 FishingStats 的功能用途、适用人群、安装方法和常见问题,方便玩家快速判断是否需要安装。

适合谁用

FishingStats 是一款 钓鱼 / 其他插件 类插件,适合需要优化界面、提升操作效率或补充游戏信息提示的魔兽世界玩家。

基本信息

  • 插件作者:zpdream2
  • 插件分类:钓鱼 / 其他插件
  • 适配版本:12.0.5,12.0.7
  • 累计下载:4,986

安装方法

  1. 点击上方下载按钮获取 FishingStats插件文件。
  2. 解压后将插件文件夹放入 World of Warcraft/_retail_/Interface/AddOns 目录。
  3. 重启游戏或在角色界面点击插件,确认 FishingStats 已启用。
  4. 如果插件不生效,请检查版本是否匹配,或关闭同类冲突插件后重试。

使用建议

FishingStats 安装后建议先在角色界面确认已启用,进入游戏后根据插件提供的命令、小地图按钮或设置面板进行调整。如遇到报错,可先单独启用该插件排查冲突。

FishingStats 常见问题

这个插件适合哪些玩家?

FishingStats 适合需要 钓鱼 / 其他插件 类功能的玩家,特别是希望提升游戏便利性、界面管理或战斗信息获取效率的用户。

下载后怎么安装?

下载后解压到 Interface/AddOns 目录,然后重启游戏并在角色界面启用插件。

为什么插件不显示或不生效?

常见原因是目录多套一层、游戏版本不匹配、依赖插件缺失或同类插件冲突。

有没有类似插件可以替代?

可以查看本页的替代插件推荐和相关插件区域,按下载量和分类选择同类工具。

插件 AI 问答

可以问:这个插件正式服能用吗、和 DBM 冲突吗、怎么设置、有没有替代插件。

FishingStats 是一款魔兽世界插件,主要用于其他插件相关功能。建议根据自己的版本和插件环境先测试兼容性。

插件用途

FishingStats 主要面向需要其他插件功能的玩家,用来改善游戏体验、减少重复操作或补充默认界面没有直接提供的信息。

适用场景

  • 其他插件相关功能

使用建议

安装后建议先在角色选择界面或插件管理器中确认已启用,再进入游戏测试是否与现有整合包、WA 和其他插件冲突。如遇报错,可以先禁用同类插件排查。

Probably an old memory.
I remember there used to be a fishing addon that could track what you fished up in the current map and the quantities.
Then someone in the game said they fished up a mount in the 12.0暗夜 zone in under 200 casts. That's right, it was our UU大佬, UU姐姐, UU欧皇 from the Taiwanese server.

So I wanted to find that old addon again, but I couldn't remember its name. I think it was called Fishboddy? I saw that the original author never updated it for 12.0.

Oh well, I'll just write one myself.

It's mainly for bragging rights, to show whether your fishing luck is bad or you're a true lucky charm.

And so, this addon was born.

As shown in the image.
There are only a few features.
Use the command /fs to display this statistics window.
/fs reset to reset the window position.

1. Display current map.
2. Display fishing skill level (fishing lure bonuses not yet implemented).
3. Display number of casts.
5. Display cumulative effective fishing time (only records actual casting time, idle/afk time not counted).
6. Display fished-up items, their quantities, and percentage rates.
7. Click the "Broadcast" button to brag about how long you've been fishing. It's currently recommended to use /s or /g, as sending too many messages in public channels might trigger spam warnings.

--------------------- I'm the dividing line -------------------
Now for the complaints.
I originally thought there would be a direct API to query the fishing skill level corresponding to each map version.
After trying for a long time, I realized I was overthinking it. I couldn't find a suitable API.
In the end, I used a brute-force method to check which skill IDs were active.
The command is as follows: brute-force checks skill IDs 1-4000, returns non-zero skill levels.
/run local r={};for i=1,4000 do local info=C_TradeSkillUI.GetProfessionInfoBySkillLineID(i);if info and info.skillLevel and info.skillLevel>0 then table.insert(r,i..":"..info.skillLevel) end end;print(table.concat(r," "))

For example, my feedback:
182:1 186:1 356:175 762:150 2556:1 2572:1 2585:175 2586:21 2587:1 2588:1 2589:1 2590:1 2591:1 2592:1 2727:1 2754:1 2761:1 2775:55 2902:1 2911:132

The number after the colon is the skill level.

So here's the problem. I have to go to the map corresponding to each version to fish, and I need the skill to level up to see the change, because the default level for a newly learned skill is 1. Look at the long list of 1s above.
Then I went to Orgrimmar.

[img]./mon_202604/01/7mQ2x-4d2uKbToS5y-4g.jpg[/img]
How frustrating! I caught 25 fish and the skill didn't increase by a single point??
Why isn't it increasing at all?

--------------------- I'm the dividing line -------------------

So currently, this addon supports fishing level queries for versions 7.0, 8.0, 9.0, 10.0, 11.0, and 12.0.
The skill IDs for older versions are stored in the basedata.lua file.

If you players experiment and find out the fishing skill IDs for older versions,
please let me know so I can update them in the addon.

Thank you.

As usual, this addon supports Simplified Chinese, Traditional Chinese, and English.

CurseForge: https://www.curseforge.com/wow/addons/fishingstats

用户评价

暂无 / 5,0 条评价
免费插件下载后可以评价;付费插件 / WA 购买后可以评价;委托订单完成后可以评价。
暂无评价。

相关推荐

继续看看这些内容

全站搜索