Search the Community

Showing results for tags 'mod'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Official Buildings
    • GM Hall
    • City Hall
    • Game News
    • Public Test Board
  • Back Streets
    • Town Square
    • Community Assistance
    • Village Recruitment Center
    • Suggestions & Ideas
    • The Creative Commons
    • Wood Scraps
  • Northern Freedom Isles
    • Harmony
    • Melody
    • Cadence
    • Northern Freedom Isles Market
  • Southern Freedom Isles
    • Celebration
    • Deliverance
    • Exodus
    • Independence
    • Pristine
    • Release
    • Xanadu
    • Southern Freedom Isles Market
  • Maintenance Buildings
    • Technical Issues
    • Server Bugs
    • Client Bugs
    • Model and Sound Bugs
    • Other Bugs and Issues
    • Wurmpedia / Wiki Maintenance
  • Wurm Unlimited
    • Unlimited Discussion
    • Unlimited Modding
    • Server Listings & Advertisement
    • Technical Issues

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Chaos


Independence


Deliverance


Exodus


Celebration


Xanadu


Release


Pristine


Epic


Cadence


Defiance


Harmony


Melody


Acc1


Acc2


Acc3

Found 76 results

  1. I am trying to make a recipe that requires multiple items in order to craft an item, in this case a Julbord. However, when I go to make the item in game it completes the whole thing without requiring the additional items. I can't seem to find why it is doing this, nor how to declare it to create an unfinished version of the item that needs the rest to be completed. (I am a complete beginner at coding and have been looking through code made by others trying to copy their method) Any tips or help is greatly appreciated! package org.dragonsgatewu.wurmunlimited.mods.julbordrecipe; import com.wurmonline.server.items.AdvancedCreationEntry; import com.wurmonline.server.items.CreationCategories; import com.wurmonline.server.items.CreationEntryCreator; import com.wurmonline.server.items.CreationRequirement; public class JulbordRecipe { public JulbordRecipe() { AdvancedCreationEntry julbord = CreationEntryCreator.createAdvancedEntry(10038, 22, 1173, 442, true, true, 0.0F, false, false, CreationCategories.COOKING_UTENSILS); julbord.addRequirement(new CreationRequirement (1, 22, 9, true)); julbord.addRequirement(new CreationRequirement (2, 1173, 5, true)); julbord.addRequirement(new CreationRequirement (3, 217, 10, true)); julbord.addRequirement(new CreationRequirement (4, 258, 5, true)); julbord.addRequirement(new CreationRequirement (5, 257, 5, true)); julbord.addRequirement(new CreationRequirement (6, 259, 5, true)); julbord.addRequirement(new CreationRequirement (7, 129, 50, true)); } } I already have 1 + 1 = finished item working perfectly but I want this to be a more advanced recipe that requires more than a plank and plate to make, but also forks, spoons, knives, etc.
  2. https://github.com/IldarW/FavorCalculator/releases/latest Requires Ago's Client Mod Launcher to run. Description: This mod will estimate the favor you would get for items if you sacrifice them. The estimate is based on a simple formula from this page Setup instructions: Install mod following instructions of Ago's Client Mod Launcher How to use: First thing you need to do is to choose a convenient key and bind the command "favor" for that key Now select any number of items in inventory, hover the mouse over the inventory and press the binded key. The mod will show you the favor you will get for that items. To use non default item constant value type the following: Notes: There is a certain constant for each item in the game that directly affects the amount of favor you will get for sacrificing it. For example the cordage rope have the constant value equal to the 1 and the door lock have the value 0.5. So door locks will give you twice less favor than cordage ropes of same quality. By default mod calculates the favor, assuming that the value constant is 1 You can use different value this way The spindles have the value equal to the 0.5, but Vynorians have double favor for wood items so you don't need to change the default value in this situation You can calculate favor not only in your inventory but in other containers too
  3. [Client] Unequipper

    https://github.com/IldarW/Unequipper/releases/latest Requires Ago's Client Mod Launcher to run. Description: This mod will add a possibility to unequip all stuff on your body in 1 click and equip it back also in 1 click. Setup instructions: Install mod following instructions of Ago's Client Mod Launcher How to use: In the game console type "unequip" to get the usage description. The good way of using the mod is to bind the unequipping command like that: and to bind the equipping command that way:
  4. After being asked to release wagons and other items to the public, I went ahead and compiled the mod that @nekoexmachina had made and posted to enable those to be crafted. Some items do not work such as the towers and tabards, but I made a tabard mod already and will make the towers as time permits. Add Kingdom Items Mod Enables the creation of PMK wagons, banners, and flags not normally able to be crafted. Prerequisites: Server mod loader 0.34.1 or greater Unzip this archive into the mods folder. No additional mods required on server or client side! See AddKingdomItemsMod.properties for vehicle configuration settings https://github.com/Jubaroo/AddKingdomItemsMod/releases/latest
  5. DrakeMountMod Allows breedable, rideable, tameable Drakes to be enabled in Wurm. Many Drake settings can be customized to fit your needs. Detailed instructions on the configuration settings can be found in the DrakeMountMod.properties file. Example properties file can be found HERE List of item ID's for Items_Butchered can be found HERE List of Creature Types can be found HERE List of Armor Types can be found HERE Unzip the archive into the mods folder. No additional mods required on server or client side! Make sure you have a current version of the mod loader. https://github.com/Jubaroo/DrakeMountMod/releases/latest
  6. Tabard Mod A mod that allows all kingdom tabards to be crafted and worn by players. https://github.com/Jubaroo/TabardMod/releases/latest Prerequisites - Server Pack mod for BOTH client and server Unzip this archive into the mods folder See TabardMod.properties for ID settings
  7. Hey This is on my server now: [13:45:25] Creatures total:17983, On surface=17973 (of which 2 are below -10 meters), in Caves=10 (of which 0 are below -10 meters), visible=17982, offline=0. And we have 20 max creature and 40% aggro But when i look in creature.db i cant see any pandas from from creaturemod and i cant see unicorns either. Why does it not spawn?
  8. https://github.com/IldarW/ChatFilter/releases/latest This is a client mod. Requires client modloader Description This mod will add the possibility to filter out any message you get in your chat tabs(even Event tab) based on a set of keywords. Setup instructions: Install mod following instructions of Ago's Client Mod Launcher How to use: In the game console type "filter" to get the usage description. Example: "filter add :Event You create" will filter out any messages in Event tab containing "You create" Note: don't forget to add a colon at the beginning of "Event" when you add new filter
  9. Basically bypasses the spyglass check and gives you a permanent rangefinder cursor at the center of your screen. Before After With Zoom Range finder be toggled with the following command in console: rangefinder Zoom can be toggled with the following command in console (recommend hotkey bind): zoom For use with Ago's Client Modloader. Download [v2] (Google Drive) Old Downloads: Download [v1] (Google Drive) <No Zoom>
  10. I am willing to pay someone to help me fix a mod that is not functioning fully. The mod works at about 50%. For more information about the mod and the price, please send me a private message and we can discuss things further. Thank you.
  11. The ability (chat command maybe) for GM's to delete all items, fences, and structures in a certain radius of tiles. For structures, have it automatically bring up the annihilate structure window if it is within the radius (as a sort of confirmation of the building being destroyed). Or just do items only and let GM's destroy building on their own.
  12. Firstly, if it's not already been done. The ability to craft a hand mirror. Secondly. an overhaul of the character! Add: Skins Animations Detailed Model (more polys) Hairstyles Clothes More Backpacks
  13. Hi All, So I've played on a few servers which have a chat channel called "Info" which contains useful information for new players to the server i.e. map url, places of interest, mods installed etc. I'd love to incorporate this into my server, does someone have a mod for this they could kindly share? Would be amazing if the message could be changed in the .properties file as well Many Thanks, Recon
  14. I was wondering if there is a mod that speeds up the growth of a horse after it is born, I've been searching everywhere (or searching in the wrong place) for a mod like this (if it even exists), I play on my own single player server and it just seems like a pain waiting for one horse to grow up to a ride-able stage. If someone could please link me to such mod I would be forever grateful.
  15. I was wondering, is it possible to replace the default horse skins with custom ones like the amazing ones Fizziepop has made? Would this require a mod (eek!) or is it a case of overwriting the default skins with new images, wherever they might be?
  16. Location Command Mod Find your coordinates on the map by typing /location. https://github.com/Jubaroo/LocationCommandMod/releases/latest Unzip this archive into the mods folder. No additional mods required on server or client side!
  17. The focus of this mod is to remove the soft cap on Characteristic skills after 31 with the new skill gain system of Wurm Unlimited. Here is essentially what it does: I will possibly expand this to give even greater control over skillgains, allowing you to implement your own soft or even hard caps on skills. For now, this is limited to characteristics. Settings: #Amount to divide characteristic skills by. Higher values will result in lower skill gain ticks. characteristicDivider = 5.0f #If true, will print debug messages and log heavily. debug=false For use with Ago's Server Modloader. Download (Google Drive)
  18. I apologize if this has already been suggested (couldn't find anything on the subject) but would it be possible to have a mod to effect light sources and make them not need fuel? Perhaps via a spell/enchant? Thanks in advance.
  19. A mod that allows the tracking of total time played for each player. Options to give a configurable amount of money every so often to players based on the time they play. So you get paid, to play Wurm. Items would also be desirable to give out at milestones for time played. Like, 1 month total you get money but also an item as a bonus.
  20. Hello comunity ! im looking for a mod that can start #alerts after server restarts . cuz its not working automaticly again and you need to type it again . its very important for my server so ppl can get the needed info about the server online map and its forums . thank you for reading and i hope someone can help me with such mod .
  21. Ages of Urath

    Ages Of Urath Closed to the public: Must apply for access. Apply on the website to get access. Live Maps: Irata Laoks (Advanced PVE) Featured on MMORPG Stat Perk System (unique) Boosted Starting skills http://forums.mmorpg.com/discussion/430193/razors-edge-online-urath-online-saga Home City No pay-to-win In game Live map HUD. Mount Ticketing system: ADDED Dungeon Exploration, Adventure Maps Huge 4096 Maps Multiple Cluster servers. Hunt of the Ancients(HotA) Reduced Priest restrictions. In PVE priests can cast any spell. 5x Exp 5x Action Timers 5x combat In game map, New ships. Running Ago modloader Support for Ago Client modloader Event Timer Mod No crop decay Horse Names, ages, breeding MOD spawned random Boss encounters, with multiple stages (event timers) New sound effects (complete overhaul) Only map displayed on PVE Main Cluster: Live Map: Long time WO players. Very newbie friendly and helpful. Search "Urath" on the server list and it'll come up every time [in response to servers disappearing randomly from list]. Vote for us at: http://wurm-unlimited.com/server/1004/ : Trade Packs: (Archeage Style) A simple explanation of the trade system breaks it down into three steps. A player first crafts a trade pack using raw materials or goods harvested from the game world, then carries that pack across the game world before depositing it for a profit at a target destination. The transportation process is not without its dangers, however, as trade packs reduce a player's movement speed and make him vulnerable to other players who may steal his goods. If a player is killed by a bandit or pirate, the trade pack is dropped and may be captured by the criminal, who may then deposit it themselves and usurp the profits. These would be interactive boards (much like the village recruitment boards) where players can choose the pact runs they wish to carry out. AI Pirate Ships: I have sloop models completed but need the AI behind it. The goal of the encounters is to create more of a PVE and PVP fear at sea. Pirates would also tap into the routes frequently used by Trade Pacts. Named captains. Bounties (see below) Bounties: ADDED As pirates sink player ships the fleets of the Captain grow. Bounty boards would also be created much like the village recruitment boards and the reward would be based on the strength of the fleet as it grows. Mount Ticketing system: ADDED Player made Harbormasters that can exchange a mount for a ticket which can be loaded into a cargo hold of a ship. The weight of the ticket would reflect the weight of the animal. Tickets can then be unloaded and activated to spawn the original animal without the use of the harbormaster. No more Lead ropes on ships! Revamp Player Economy Money system. Foreign currency for reach realm. Web based currency exchange rate. Investments in business. Stock market. Kingdom and Realm Hierarchy Titles & Nobility Voting & political system (PVE areas only) Realm vs Realm System The map is broken into 16 4096 maps with 36 fortresses. Keep defenses are rebuilt / repaired / NPC defended based on the success or failures of pact runs for each of those Realms. This encourages Realm owners to promote pact runs. Realm perks for capture of each keep. Complete MOD list Annoucer MOD Server greeting for each player which displays on the screen in and in the event log as they join the server Event MOD Custom Boss and minion generator for re spawning events. This will soon incorporate NPC movement, schedules, quest offerings in the future. Bagofholding MOD A spell a priest can cast to increase the storage capacity on a container. Betterdig MOD Changes dirt from digging/flattening/leveling to drop on the ground instead of going to the inventory of the player. Allows dirt from digging/flattening/leveling/dredging to go into a vehicle being dragged or ridden. If there are crates in it's cargo - it can automatically go into those. Uses dirt from the ground, a vehicle and even crates inside the vehicle when leveling. Allows overriding which actions can be performed from a mount or vehicle. Allows overriding amount of clay dug per action. Almost everything is configurable. Biggerhouses MOD Allows larger floor plans by increasing carpenter skill when laying out a floor plan for a building beyond the limit of 99 skill level. (only temporary math calculation change to skill level) Chestclaim MOD Allows players to "claim" random treasure chests, unlocking the chest and rewarding the players with some karma CreatureAge MOD Slows down the aging process of bred animals. Creature MOD New types of creatures and various new types and looks to some creatures in the game. Crop MOD Prevents crops from turning to weeds. FixGuards MOD Fixes villages spawning infinite number of templars due to a database error HarvestHelper MOD The command /season tells you what is in season and time to other seasons in real days. Hitching Post MOD Allows you to hitch mounts to a post to prevent them from roaming off. InBreedWarning MOD Meditation MOD Enables guaranteed skill success (no more "You fail to relax" or not getting a path question you qualify for) No delay between first 5 skill gains of the day No difference in delay requirements after the first 5 meditations (if the above setting is on, there's no delay requirements for meditation skill gain at all, if it's off, always 30 minutes between meditation skill gains, never 3 hours) Disable distance requirements for meditation skill gains (No more need to move 11 tiles for skillgain) A configurable multiplier for path question cooldowns. This can be set to half to cut these delays in half, set to 0 to disable them entirely, the choice is yours. Specify custom action duration for meditation (NEW) Configure the delay before joining a new path after leaving an old one (NEW) Now imposes a configurable maximum level a player may reach in any path Movement MOD Allows server admins to tweak many things related to movement of players, mounts and vehicles Speeds Weight limits for players Min/Max heights, depths and slopes Wind impact for boats Loading ranges Required skills Prospct MOD Prospecting cave floors provides the same information as prospecting a rock tile on the surface above (i.e. detect nearby ore veins) QualityDamageToolTip MOD Gives you a hover ability to see Ql and damage, from a distance, to any object in the game without doing an inspect command Sacrifice MOD Adds a configurable chance for a rare item to award a bone of the same rarity, instead of the usual benefits Salve MOD Adds "power - " to the beginning of newly made healing cover names, so you no longer have to figure it out in your head. Spell MOD SpellMod: a mod that makes all spells available and removes many priest restrictions to make playing a priest with only one character more enjoyable. Allows all spells to be cast by any priest on PVE cluster only. increase spell timers, removes penalties for offending actions by your deity. Settings: removePriestRestrictions=true allowAllSpells=true unlimitedPrayers=true noPrayerDelay=true favorLimit=99 StableMaster MOD Any animal that can be led can be exchanged into a ticket to load into a cargo ship or cart for easier travel, especially to other cluster maps within the world of Urath. See patch notes and video tutorial on using this NPC. TimerFix MOD fixes action timers in the game for various functions. LiveMap MOD An in game mini map that shows objects, terrain, around you as you move about the map. Menu / Live map toggles this feature on an off. Better Sound FX MOD Over 100 new types of the sound FX have been done by me to give you a better submersion experience in the game. More updates to the sound file as i get time. ClusterTalk MOD Better communication between cluster servers and login server. RMITool MOD Custom tool for Server wrapper to check server health, and reboot the server during maintenance windows. Ago Server Modlauncher v.20 This allows the mods to work and communicate with each other. Bulk Items Separated MOD Mod that allows you to use one BSB for any quality material. It separates items stored based on items QL, so you would have e.g. 10 stacks of iron lumps in ranges 0-10, 10-20, 20-30, etc up to 90QL. After 90QL each QL unit gets its own stack. There is an option to revert the mod functionality, by simply blessing BSB. Don't forget to rename your blessed BSB, however, since blessing is not visible on "Examine"! Bounty MOD You recieve bounties for killed creatures, when you bury them. Harder the creature, better the bounty! Decay tick MOD This is one of several bandaids mods that we run. Wood scraps, rock shards, dirts and logs left on ground off-deed would be rmoved on first damage increase. Tweaks MOD Sets number of sleeping powders on every trader to 9. Domestics replacement MOD This is one of several bandaids mods that we run. Most of domestic spawns are replaced by hostile creatures, so it is harder to find a horse or a ram, but easier to find an adventure. Kingdom stuff MOD Mod that adds every single kingdom item available to list of craftable items. Tabards and towers are not craftable yet! Event & Loot MOD Adds various non-craftable loot items to creatures killed. During events,adds higher chance of dropping specific items from specific kills. Nofogspiders MOD This is one of several bandaids mods that we run. Removes fog spider event from game, because said event drastically affects server performance. Dead Shoulders MOD Adds rift shoulderpads to riftcreatures loot table. You can even get rare,supreme or fantastic shoulderpad if you're lucky! Dead critters MOD Adds progressively increasing chance for every creature to die, starting from "Old" age. Cared, bred, unique and champion creatures are not affected.
  22. Hello! On one server I saw mod, who pay players bounty for mining, paving and other. On forum I can find only mod who pay bounty only for killing mobs. Can anyone help to find subj?
  23. What does it do? This mod will change the way you perform actions as a Game Master. Normally when you mine you will instantly complete the action as a GM using a pickaxe. This modification changes this to only be instant when you have the Ebony Wand activated. This mod also adds a 'Bury' action to the Ebony Wand. Why did you create this? I wanted to play the game as a GM and still have to work for normal activities and also keep ore veins from disappearing for others. It obviously requires some self-control but this gives you the option to play as a normal user while still maintaining the elevated privileges. Planned features:- None at the moment Requirements:Ago's mod loader version 0.8.2 or newer Download: Direct Download: https://github.com/ONWRD/EbonyWandMod/releases/download/v2.0/EbonyWandMod-2.0.zip Releases: https://github.com/ONWRD/EbonyWandMod/releases Source: https://github.com/ONWRD/EbonyWandMod Installation: Extract the contents of the download below into the Wurm Unlimited server directory. Directory structure should match: - .\Wurm Unlimited server directory\mods\ebonywandmod.properties - .\Wurm Unlimited server directory\mods\ebonywandmod\ebonywandmod.jar
  24. I would appreciate if anyone could send me a client side mod that outlines agressives in a red colour and non-aggresive in stantard blue color with a toggle command. Thank you
  25. The purpose of this mod is to correct the player count displayed on the Server List to accurately match the /who command in-game. The reason I'm releasing this mod is because of a recent attack on myself and Zenath's server that you can see my response to here. I'd rather server owners simply use this mod themselves rather than fight against the servers that use it. I'm no stranger to being lynched for sharing "controversial" mods, and I expect this to be no different. If you want to attack me for making this public, go for it. I kind of hate myself, honestly, a little bit for doing this. But at the end of the day, it's probably for the best of the server landscape. Server Player Counter (Google Drive) I just really hope people don't push this over the edge to the point where it's unreasonable. I know that myself and Zenath currently aren't, despite already using this method.