Forum Replies Created
-
AuthorPosts
-
Vaughn “Drathy” RoykoKeymaster
Hey there,
1. This is intended (wiki is outdated). You can use the documentation to get up-to-date information: http://www.unlok.ca/wayward/documentation.html
2. Fixed in upcoming 2.0.
3. Intended as well.Vaughn “Drathy” RoykoKeymaster@waywardplayer Wayward 2.0 will be soon™.
To download a mod, you can try to right click and save as so it doesn’t open in a new window. Alternatively, you can simply right click on the open code page, and save from there as well.
Vaughn “Drathy” RoykoKeymaster@yairm210 Yep, you sure can! All items are now broken up into individual graphics as well so you can edit individual ones, or add your own!
Vaughn “Drathy” RoykoKeymaster@GlaucomysDragon Yep, you can get a high-res, transparent .png version of it here: http://www.unlok.ca/about-wayward/ or http://www.unlok.ca/assets/wayward_logo.png
Vaughn “Drathy” RoykoKeymasterJust to confirm, you have the following in your inventory, correct?
- Sharpened (Group) x1
- Rock-like (Group) x7 (Consumed)
- A Log x1 (Consumed)
Vaughn “Drathy” RoykoKeymaster@FlowCoef We don’t speak of him 🙂
Vaughn “Drathy” RoykoKeymasterAnd the turkey appears to be wearing a stovepipe hat?
Vaughn “Drathy” RoykoKeymasterReally cool work here. I hate to say it, but your hard work here won’t be transferable over to 2.0. The good news though, is that what you want to do should be available without all the hardship.
Spacetech, one of our programmers has spent a couple days working directly with modding and has implemented an API for Wayward mods with all the hooks you would need to customize most portions of the game. It won’t be 100%, but we hope to continually work on getting everything easy to mod. Here’s an example of a new item mod:
class ArgusMod extends Mods.BaseMod implements Mods.IMod { public getName(): string { return "Argus"; } public getVersion(): string { return "1.0.0"; } public getCompatibleMinorVersions(): number[] { return [0]; } public getReleaseDate(): string { return "4/11/2015"; } public getAuthor(): string { return "Spacetech"; } public getDescription(): string { return "Adds a new item called Argus into the game"; } public getHooks(): Mods.Hook[] { return null; } public onLoad(): void { this.addItem({ tX: 33, tY: 1, description: "The all seeing eye.", name: "Argus", weight: 2, attack: 1, damageType: DamageType.Blunt, equip: EquipType.Held, onEquip: this.onEquip, onUnequip: this.onUnequip, recipe: { requires: [ [ObjectType.SharpenedItem, 1, 0], [ObjectType.Lens, 2, 2, 2], [ObjectType.Log, 1, 1, 1], [ObjectType.String, 1, 1, 1] ], skill: SkillType.Tinkering, level: RecipeLevel.Advanced }, disassemble: true, durability: 500 }); } public onUnload(): void { } public onEquip(invId: number, item: IItem) { game.fov.disabled = true; game.fov.compute(); game.updateGame(); } public onUnequip(invId: number, item: IItem) { game.fov.disabled = false; game.fov.compute(); game.updateGame(); } }
Vaughn “Drathy” RoykoKeymasterLooks like you want to do some hardcode modding. I would recommend downloading the download version, then opening the .exe with an archive program to get access to all the files. I believe 7zip extractor will work, somebody else was using it.
Vaughn “Drathy” RoykoKeymasterThanks, this has been fixed in 2.0.
Vaughn “Drathy” RoykoKeymasterHello Yairm,
Modding is definitely not finalized and as it stands there is no API or consistency with any of that (as of 1.9.2), although, in 2.0 we are looking at addressing these issues by integrating fully into the Steam Workshop. This will allow modders to share/install/uninstall mods in a more permanent fashion by loading brand new files, or overwriting files completely with custom content/features (on/during game load, not after). Of course there will be plenty of compatibility issues to solve there, but at least modders and mod users will have the option.
Vaughn “Drathy” RoykoKeymasterCool! Easy enough, will add to Wayward 2.0 for sure. Thanks!
Vaughn “Drathy” RoykoKeymaster@FlowCoef That’s because that’s a new female character 🙂
Vaughn “Drathy” RoykoKeymasterPlayer looks more androgynous now.
Vaughn “Drathy” RoykoKeymasterYep, all the new graphics will be coming up in 2.0. Other items you may notice are just updated item graphics, which are still “work in progress”.
- This reply was modified 9 years, 8 months ago by Vaughn "Drathy" Royko.
-
AuthorPosts