跳到内容

Necesse 模组与插件

此目录列出来自 Steam Workshop 的 Necesse 项目。条目可能需要在服务器端、客户端或两端安装,也可能包含地图或其他用户生成内容。安装前请检查链接的来源页面、游戏版本和依赖项。

Brutal Shearing – Necesse Mod

Brutal Shearing

作者:76561198301620167

Updated for game version 1.0.2 Shears sheep when hit by a player. If a sheep can be sheared (is fully grown and has wool), then any attack by a player will shear it. However, be warned! If you attack a sheep that can't be sheared, then it will receive the damage as usual. Source code can be found on GitHub here: snoobinoob/brutalShearing

372 次下载 详情 →
Bob's Mod – Necesse Mod

Bob's Mod

作者:76561198083737752

Edit 2/4/2024: Might return to this some time in the future but the official updates adding in some of these things discouraged me a bit (alongside having to figure out how to port the mod to newer versions). It was pretty fun to work on though. If I return to this I might stick to just adding some enemy changes for harder difficulties and keep the devil deal items in and scrap the other stuff. Fun fact: last thing I was working on was adding a demon trader which would trade boss souls for their respective devil deal item but I stopped working on the mod before I figured out how to properly set it up. (Description still a W.I.P.) Adds/changes different things in the game. Current Version: v0.3.5.2 New Content: - New mana mechanic - 3 New weapon types (Daggers, Wands, Greatbows) - Shield trinkets - 1 armor set - 2 new buffs & 1 new debuff - New loot item (Geodes) - 1 new vanilla recipe - New 'Devil Deal' items: Devil deal items are dropped from bosses only when playing on harder difficulties, these have very powerful effects with some negative trade offs Haven't really done enough testing to balance things properly so feedback is appreciated.

229 次下载 详情 →
Login and Register Mod – Necesse Mod

Login and Register Mod

作者:76561198040279001

🔒 Login & Register Mod A simple, lightweight security system for Necesse servers. ✨ Features Adds /login, /register, and /changepass commands Prevents players from interacting with the world until they log in Protects against griefers, bots, and random joiners Works on any world, any server, fully multiplayer compatible Zero performance impact 📌 How It Works New players must create an account using: ➡️ /register <password> Returning players must log in using: ➡️ /login <password> Players can change their password anytime: ➡️ /changepass <old> <new> 👑 Admin Command: /resetuser <username> — resets a player's login data If a player is not logged in, they cannot: 🚷 Move items 🔨 Break or place blocks 📦 Interact with chests, doors, NPCs ⚔️ Attack, use items, or open menus They are fully locked until authentication is complete! 🌍 Used On Eternal World RPG Server A clean, optimized RPG-style Necesse server with custom systems. Join our community: 🔗 https://discord.gg/Kpw6PNPwfb

331 次下载 详情 →
Boss Trophies – Necesse Mod

Boss Trophies

作者:76561198122309470

Mount the heads of every boss you have kill. Each boss drops a wall trophy and a floor trophy.

575 次下载 详情 →
NPC名字汉化 – Necesse Mod

NPC名字汉化

作者:76561198863359245

替换后续游戏内所有生成的NPC名字为中文名 自定义姓名: 打开模组JAR包,在resources\locale\目录下编辑zh-CN.lang,修改后重启游戏生效 其他语言: 在resources\locale\目录下新建语言文件,保持与zh-CN.lang相同的格式 我刚学习如何制作模组,对于联机部分,我从未试过联机 模组路径:steam\steamapps\workshop\content\1169040\3592633593 Replaces all newly generated NPC names in-game with Chinese names For other languages: Add language files in the mod's folder at resources\locale\ Use the same format as zh-CN.lang GitHub:https://github.com/leiyim/custom-naming-mod-1.0

525 次下载 详情 →
CustomDataLib – Necesse Mod

CustomDataLib

作者:76561198348399588

THIS LIBRARY MOD HAS REPLACED CustomPlayerLib AND YOU SHOULD NOT USE THAT LIBRARY AS IT IS OUTDATED AND BROKEN. Base implementation for custom player data. This is a library and doesn't add any functionality itself. Docs available here. Credits Huge credit to darkluke1111 on discord for pointing out previous issues with the library and helping me fix them. As well as brainstorming with me on how to make the library better. And generally reviewing my code and suggesting some improvements. Credit for the CustomMob idea goes to real_thunderbear on discord as they needed it. I just added it to the library for ease of use for anyone in the future. For Developers Example mod using this library: To be added Make sure to modify your build.gradle file: - Add to dependencies: compileOnly "com.jubiman:customdatalib:1.+" - Add top level: project.ext.modDependencies = - If gradle can't resolve the package, add to the repositories (it should find it as it is in the Maven Central repository): maven { url "https://s01.oss.sonatype.org/content/repositories/releases/" } Using the library First off I recommend reading the documentation here Custom Player Data This is mostly the same as the original CustomPlayerLib. First you want to create a CustomPlayer class, which has a constructor with a long as argument. All code fragments can be found in the example public class MyPlayer extends CustomPlayer { public MyPlayer(long auth) { super(auth); } } Source Then create a CustomPlayersHandler class, which does the logic for all players in the game. public class MyPlayersHandler extends CustomPlayersHandler<MyPlayer> { // It's recommended to store the name in a static constant, so you can easily access it public static final String name = "myplayers"; public MyPlayersHandler() { super(MyPlayer.class, name); } // These methods are not necessary, but they are recommended. /** * This replaces CustomPlayerRegistry.get(MyPlayers.name).get(auth) * with MyPlayers.getPlayer(auth). * It's just less code to write :) */ public static MyPlayersHandler getInstance() { return (MyPlayersHandler) CustomPlayerRegistry.INSTANCE.get(name); } /** * A null safe way to get a player from the map, adds player if they don't exist yet * @param auth the authentication of the player's ServerClient * @return the MyPlayer object belonging to the player */ public static MyPlayer getPlayer(long auth) { return getInstance().get(auth); } } Source Then at last we need to register the classes by adding the following line to your mod's (annotated with @ModEntry) init() function: CustomPlayerRegistry.register(MyPlayersHandler.name, MyPlayersHandler.class); New modular system Instead of extending a different base class like CustomPlayerTickable, you can implement one or many of the different interfaces. Currently supported are: ClientTickable, Syncable, Savable and HUDDrawable. All CustomData classes are tickable from the server-side, but by defining it as ClientTickable it will also be ticked on the client-side. Please note that ClientTickable and Syncable require extra steps in order to properly function ClientTickable Currently only CustomPlayers are supported, as I do not see the need for client-side mob ticking. This interface should mainly be used to cache values on the client-side which could be used by the HUDDrawable interface. Most of the times you can ignore this interface. Please keep in mind that currently, only CustomPlayers are supported. Syncable The Syncable interface requires you to create a new packet: PacketMyPlayerSync (or whaterver your custom player naming is). A new instance of this packet will be created in the getSyncPacket() class you implement from the Syncable interface. The isContinuousSync() function should usually return false, as this will only sync once when the player connects. If this is set to true, the sync packet will be sent every second. An example of the custom packet: public class PacketSyncPlayer extends Packet {

287 次下载 详情 →
Enchant MORE – Necesse Mod

Enchant MORE

作者:76561198063400471

Enchant More/Multiplier Enchant item a little more using enchant table. Craft in anvil with some gold. Add scroll to it then consume. Add Weapon choose enchant. Gucci **Enchant Anvil can be craft inside the furniture tab** v1.1.2 - Add some Enchant. - Fix bug. - some enchant arent finalize yet. v1.1.1 - Add 8 NEW Enchant. - Add 2 Unique Enchant. v1.1 - Add 4 NEW Enchant. - Cleanup some code artifact. v1.0 - Add enchant table. - Add ability to enchant item a little more. - Add EquipmentExpansion Equipment. This mod include EquipmentExpansion mod If original Owner of the EquipmentExpansion is back i will Remove the EquipmentExpansion part from my mod ASAP. https://steamcommunity.com/sharedfiles/filedetails/?id=2829639892 Some functionality isnt working or request please do comment. What will come next? - MORE New enchants. - Equipments. - Some type of modular enchant system, inspired by Tome of Power.

547 次下载 详情 →
SuperWoodSword – Necesse Mod

SuperWoodSword

作者:76561199039777494

1. 木剑的伤害设为520。 2. 火把亮度翻倍。 3. 新增工作台配方:1木头做炸药、铁锭、钨锭、注魔卷轴。 --- 1. WoodSword attackDamage to 520 2. torch lightLevel to double 3. 1 log in workstation can make dynamitestick or craftingmat or enchantingscroll

518 次下载 详情 →
Mountain2.0 – Necesse Mod

Mountain2.0

作者:76561198863359245

Rocky Mountains & Expanded Decor Biomes //New mountain biomes. //Six new decorative biomes. //Larger biomes, defaulting to 1×1 to 24×24 times the original size. Update spawn point detection: removed the requirement for forest biome. Prioritizes spawning in vanilla biomes. If no vanilla biome is found, defaults to (0, 0). Config file: %APPDATA%\Necesse\mods\BiomeSizeMod Biome Size and Mod Biome Switches Default All On: true/false Note: Cannot be subscribed alongside the Mountain mod. Mountain3(test) https://steamcommunity.com/sharedfiles/filedetails/?id=3774889169 A temporary private mod uses override generation, can play with Mountain 2.0 + 1.3 vanilla terrain generation. 山脉与扩展装饰群落 //新增山脉群落。 //新增六种装饰性生物群落 //更大的生物群落,默认 1×1 至 24×24 倍原版尺寸。 更新出生点检测,取消游戏原版必须出生点在森林,优先出生在原版生物群落,找不到原版群落才会默认出生在(0,0) 配置文件:%APPDATA%\Necesse\mods\BiomeSizeMod 生物群落大小和模组生物群系开关默认全开:true/false 注意:不可与 Mountain 模组同时订阅。 Mountain3(test) https://steamcommunity.com/sharedfiles/filedetails/?id=3774889169 一个临时不公开模组采用覆盖生成,可以玩到Mountain2.0+1.3原版地形生成

466 次下载 详情 →
Night Owl Trait [EN, PL] – Necesse Mod

Night Owl Trait [EN, PL]

作者:76561198806903819

Night Owl Trait Tired of your workstations sitting idle when the sun goes down? Keep your settlement's economy booming 24/7 with the new Night Owl personality! This mod introduces a brand new, highly useful Bonus Perk (Personality) for your settlers. Villagers who are Night Owls have their entire daily schedule flipped: they will sleep during day and work throughout the night. Features - New Bonus Perk: Adds the "Night Owl" trait to the game. By default, it spawns as a rare Bonus Perk (indicated by the purple star next to the settler's name). - Flipped Schedule: Night Owls completely ignore the standard sleep rules. They go to bed in the morning and wake up in the evening ready to work. - Seamless Integration: The trait utilizes the vanilla personality system. Night Owls can be found naturally on recruitment missions or wandering into your town. Configuration Upon first launching the game with the mod, a settings file is automatically created inside `%APPDATA%\Necesse\cfg\mods\NightOwlSettings.cfg`. You have full control over how the mod behaves: - Enable/Disable: Master switch to turn the trait on or off. - Spawn Weight: Adjust how often this trait appears on new settlers (default is 100 tickets). - Bonus Perk Toggle: Choose whether Night Owl acts as a powerful Bonus Perk (purple star) or just a regular personality trait. Compatibility This mod is completely safe to add to existing worlds! Fully compatible with multiplayer servers. Check out my other mods! Night Owl Trait Desire Paths Starred Mobs Cheers!

576 次下载 详情 →
Hardcore Lite – Necesse Mod

Hardcore Lite

作者:76561198370410892

Adds a new death penalty. This mod changes how the hardcore penalty works fundamentally. In normal hardcore when you die you are locked out of your save or practically banned from the world. This doesn't make for very good gameplay with friends. This mod makes you recreate your character on death. You will lose any max health upgrades or trinket slot additions. Items are still dropped but all player data is reset. Special thanks to Zillion for making another phenomenal thumbnail for this. Special thanks to GoliathX211 for creating this mod. Changelog: Version 1.1.1: * bumped Necesse version to 0.25.1 Version 1.1: * updated for Necesse 0.25 * added support for preserving team membership

231 次下载 详情 →
Multi-Visitor System – Necesse Mod

Multi-Visitor System

作者:76561198863359245

As an optional add-on for the Tame Monster (NPC) mod, or can be used standalone. Regular Visitors: Visitor groups will arrive at your settlement at regular intervals. The more settlers you have, the more frequent the visits. Random Group Size: Group size ranges from 1 to 7 visitors. Tame Monster (NPC) Support: Fully compatible with the Tame Monster (NPC) mod. (Not affected by the "Frequent Visitors" mod - spawn interval is independent.) Supported Languages: Chinese English

530 次下载 详情 →
NeceTrans – Necesse Mod

NeceTrans

作者:76561198043208170

AI auto-translation mod for Necesse 填写正确API信息后,可以将翻译多种语言。 一句话简介:自动扫描你装的模组,把英文说明全部实时翻译成中文! 核心功能: 智能扫描:启动游戏自动识别所有启用的Mod AI翻译:调用API将文本翻译成简体中文(还支持繁中、日文、韩文等9种语言) 缓存系统:翻译过的内容本地保存,下次启动秒加载 批量处理:可以一口气翻译几百条文本,支持设置批处理大小 实时注入:不需要重启游戏,翻译完立即生效 使用步骤特简单: 装上Mod进游戏后,按E打开背包启用NeceTrans模组(地球图标) 填写API相关信息(还是一样,参考我上面那篇) 点"扫描模组"看看有哪些可以翻译 点"开始翻译"等进度条走完 搞定回游戏发现所有Mod都变中文了 Brief Description: Automatically scans the mods you have installed and translates all English descriptions into the corresponding language in real time! Core features: Intelligent scanning: Automatically identifies all enabled mods when the game is launched AI translation: Uses API to translate text into Simplified Chinese (also supports Traditional Chinese, Japanese, Korean, and 9 other languages) Caching System: Translated content is saved locally, loading instantly on next launch Batch Processing: Can translate hundreds of texts in one go, supports setting batch size Real-time Injection: No need to restart the game, translations take effect immediately Usage steps are super simple: After installing the mod and entering the game, press E to open the inventory and enable the NeceTrans mod (Earth icon) Fill in the relevant API information (same as before, refer to my previous post above) Click "Scan Mods" to see which ones can be translated Click "Start Translation" and wait for the progress bar to complete After finishing and returning to the game, you will found that all the mods had been changed to the corresponding language. 如果你觉得不错的话,可以去 爱发电 支持大叔,随缘随缘~ https://afdian.com/a/maiya0126 If you enjoy what I do, consider supporting me on Ko-fi! Every little bit means the world! https://ko-fi.com/maiya0126

458 次下载 详情 →
IncreaseLightLevel – Necesse Mod

IncreaseLightLevel

作者:76561198125574464

Increases the light level of placed light sources to 250. This only applies to objects in the game that have a default light level of 150. The difference between this and my similar mod, Double Light Level, is that the brightness range is smaller, but display glitches are unlikely to occur.

506 次下载 详情 →
IncreasePathSpeed – Necesse Mod

IncreasePathSpeed

作者:76561198125574464

Change road movement speed coefficient to 100% instead of 10%.

519 次下载 详情 →
Love Sword – Necesse Mod

Love Sword

作者:76561198068515780

Just a cute sword. It's pink, pretty, and powerful. Made at the iron anvil. x15 Life Quartz x15 Tungsten Bars -Frenzie

284 次下载 详情 →
Cordsse (Discord Rich Presence) – Necesse Mod

Cordsse (Discord Rich Presence)

作者:76561198999900929

Cordsse Simple Discord Rich Presence for Necesse Displays: Name of your player in the game Name of the world Changes picture if you're on surface or in cave Playing multiplayer or singleplayer Health (see singleplayer photo) Main Menu with a tooltip Singleplayer on surface level Multiplayer in cave level

408 次下载 详情 →
Day Display – Necesse Mod

Day Display

作者:76561198045441848

Shows the current day in the top-left. Changes color based on time of day. Note that with default day and night settings, morning starts at 7 AM but the day increments at 8 AM. This is an issue with the game, not this mod.

363 次下载 详情 →
Market Boxes Rework – Necesse Mod

Market Boxes Rework

作者:76561198057282454

Renew of the 'Market Boxes' mod

407 次下载 详情 →
Loot Filter – Necesse Mod

Loot Filter

作者:76561197963616059

Loot Filter Tired of hauling junk? Stop picking it up. Press L in game (rebindable), or click the filter button next to the inventory quickbar, to open a searchable list of every item in the game. Tick the ones you never want to pick up — they'll stay on the ground instead of filling your inventory. No more pockets full of grass, dirt and slime goo while you're mining or mowing through a swamp. Features - Searchable item list — type to filter all ~2,000 items live, click anywhere on a row to toggle it - Excluded items stay on the ground — they're never vacuumed toward you and never picked up - "Loot All" respects your filter — filtered items stay in the chest; drag or shift-click still moves them when you actually want one - "Excluded only" view — review and manage your current filter at a glance - Master toggle — switch the whole filter off without losing your list - Your list is saved — persists across sessions and worlds automatically - Death drops are always returned — the filter can never block you from recovering your own inventory after dying - Controller & Steam Deck friendly — open the inventory and use the filter button on the quickbar (mod keybinds can't be bound to controller buttons, so the button is the way in on Deck) Multiplayer Filters are per player — everyone on the server can have their own list. Works out of the box in singleplayer and host-and-play. On a dedicated server, install the mod on the server as well (clients sync their filters to it automatically). How it works Item pickup in Necesse is decided server-side in a single place (the pickup targeting check). This mod patches that one method: if the item is on your filter, the pickup simply never targets you. Settlers, quest pickups and other players are unaffected. Notes - The keybind can be changed under Settings → Controls → "Open Loot Filter" - Coins and boss drops can be filtered too if you really want — the list is unrestricted, so tick responsibly Found a bug or have a suggestion? Leave a comment below.

489 次下载 详情 →
Shade – Necesse Mod

Shade

作者:76561198273978786

beware the shade... update! nerfed the lanky son of a gun just a bit.

246 次下载 详情 →
Just a Nuke – Necesse Mod

Just a Nuke

作者:76561199375329607

Just a Nuclear bomb, what else? Want to delete a village just for fun? Done! Want to clear an island from all the trees, stones, etc? Done! Nukes are fully configurable, just change the configs, located: - On Windows: "%APPDATA%/Necesse/cfg/mods" - On Linux "$HOME/.config/Necesse/cfg/mods" ($HOME -> /home/yourusername) They can be crafted in the Tungsten Workstation Changelog - upated to v1.1 of the game Config includes: - Can damage the owner - Can be crafted - Can destroy object - Can destroy tiles - Fuse time - Range - Damage - Armor penetration

346 次下载 详情 →
Set Bonus Enhancement – Necesse Mod

Set Bonus Enhancement

作者:76561198863359245

Currently added set enhancements: Pharaoh, Arachnid, Soldier, Shark Added three infusion scrolls: (These enchantments affect both players and settlers) Set Enhancement I Set Enhancement II Set Enhancement III Acquisition: Deep chests in any biome. Usage: Works like other equipment infusion scrolls. Can be applied to trinkets, functional accessories, and armor pieces. Players do not need the enchantment on a full set for it to work, but settlers require it to be enchanted onto the armor set. Pharaoh Set: Set Enhancement I: Locust damage +70 Set Enhancement II: Locust explodes 2 extra times on death Set Enhancement III: Locust spawn speed doubled Arachnid Set: 1 set enhancement: Summon 1 extra spider per 2 summon slots 2 set enhancements: Summon 1 extra spider per 1 summon slot 3 set enhancements: Summon 3 extra spiders per 2 summon slots Soldier Set: Set Enhancement I: Frenzy max stacks increased to 4 Set Enhancement II: Frenzy per stack: +15% move & attack speed Set Enhancement III: 25% chance to gain frenzy on hit, kill heals 50 HP Shark Set: Set Enhancement I: Bleed duration increased to 12 seconds Set Enhancement II: Frenzy max stacks increased to 11 Set Enhancement III: Gain health equal to frenzy stacks when causing bleed Supported languages: English Simplified Chinese

452 次下载 详情 →
NeceTalk – Necesse Mod

NeceTalk

作者:76561198043208170

NeceTalk - AI定居者对话 Mod 简介 / Introduction NeceTalk 为 Necesse 中的定居者赋予灵魂!利用AI大语言模型,让定居者根据职业、性格、环境和社交关系自动进行对话。他们会在闲聊中展现个性,和你自然地交流,甚至在无人时自言自语。 NeceTalk brings your Necesse settlers to life! Powered by AI large language models, settlers automatically chat based on their profession, personality, environment, and social relationships. They express personality in conversations, respond naturally to you, and even talk to themselves when idle. 使用方法 / How to Use 1. 安装mod后启动游戏 2. 点击右侧工具栏的NeceTalk按钮打开设置 3. 选择AI供应商并填入API密钥 4. 开启"自动对话"和"聊天气泡" 5. 靠近定居者即可看到他们开始聊天! 优化支持Player2这个API软件,推荐使用 1. Install the mod and launch the game 2. Click the NeceTalk button on the right toolbar to open settings 3. Select an AI provider and enter your API key 4. Enable "Auto Talk" and "Chat Bubble" 5. Walk near settlers and watch them start chatting! Optimize the use of the API supporting Player2 software, and recommend everyone to use this --- 注意事项 / Notes - 需要AI API密钥才能使用(推荐DeepSeek或SiliconFlow,性价比高) - 自动对话间隔可在设置中调节(1-30秒) - 对话历史随存档保存 - Requires an AI API key to function (DeepSeek or SiliconFlow recommended for best value) - Auto-talk interval is adjustable in settings (1-30 seconds) - Conversation history is saved with your save file 如果你觉得不错的话,可以去 爱发电 支持大叔,随缘随缘~ https://afdian.com/a/maiya0126 If you enjoy what I do, consider supporting me on Ko-fi! Every little bit means the world! https://ko-fi.com/maiya0126

380 次下载 详情 →

第 14 页,共 23 页(530 个结果)

支持模组的 Necesse 服务器

所有模组都可以直接在仪表盘中一键安装。

租用 Necesse 服务器