–Can someone help with NPC altering? I really don’t get it. And is there a way to alter/add new dialog options right from the get-go? For example, add another option to talking when you meet an NPC who is instantly hostile.
–Next question: How would you make this into a ‘mod,’ rather than directly altering the base game? From how it is currently, it seems as if you would have to download the entire game again just to get the mod to work.
–I’d like to put some random stuff together I’ve done and post it as a mod. It will mostly involve odd random stuff you can find, such as the Legendary Bacon Undies! Or perhaps the Book of Ultimate Bashing. And of course you can’t forget the Axe of Immense Weight and the Stick of Heroism. If you want an odd ‘helmet’
you can get the Afro of Encumbrance. I don’t know how to add them as drops and such so far, you can only debug them in.
-Okay, new problem I can’t figure out. I’m trying to officially make the Stick of Heroism, and include a recipe for it. I’m hoping one of you can help me figure out what’s wrong.
Code in recipe.weapon.json (for recipe):
{ “type”: “recipe”, “result”: “stick_of_heroism”, “category”: “CC_WEAPON”, “subcategory”: “CSC_WEAPON_BASHING”, “skill_used”: “fabrication”, “time”: 10000, “reversible”: false, “autolearn”: true, “components”: [ [ [ “stick”, 1 ] ] ] },
Code in melee.json (the actual weapon):
{ “type”:“GENERIC”, “id”:“stick_of_heroism”, “name”: “Stick of Heroism”, “description”: “This is a stick that can only be used in the end of times, when heros are truly needed!”, “weight”: 2000, “color”: “brown”, “symbol”: “/”, “material”: [“wood”], “techniques”: [“BRUTAL”], “flags”: “NONCONDUCTIVE”, “volume”: 10, “bashing”: 50, “price”: 1, “to-hit”: 10, },
-I looked at the id for the item heavy stick, which is simply, ‘stick’ and the Stick of Heroism was meant to be made of one heavy stick. So that’s why it’s like that.
-The DUBUG thing mentions something like load_character_tab BTW. I’m not certain how to include that and such. Even though I looked at some craftable weapons, I couldn’t manage to get it.