Topic: Help please mod not visible in-game  (Read 5743 times)


Vitowns

« on: November 03, 2021, 03:21:43 PM »
I need help please if somebody can explain what im doing wrong or help me fix my mod ;( im trying to make it so after digging a hole near a lake or river (And not rapids) you can shovel a worm out... I want the worm to be a bait is it even possible i link my mod here please help cheers! When i press shift+m in-game i dont see baitseeking at all my menu

Privateer

« Reply #1 on: November 03, 2021, 05:15:03 PM »
 I didn't check the mod for function, However I can help with why it's not showing.

You need to define your submenu since you're making a new 'tag'
[SUBMENU_START:Baitseeking]
Blah Blah
[SUBMENU_END:Baitseeking]

Either open menudef_additional.txt and add a new line:
Code: [Select]
.Baitseeking. -1- *MAKE*
Or Make a new menudef_name.txt file and add the line above.

Or change the tag to an already embedded tag making your mod show in that menu;
Code: [Select]

[SUBMENU_START:fishing]
blah blah
[SUBMENU_END:fishing]
To help is it's own reward.
Mods:
https://www.unrealworld.fi/forums/index.php?action=profile;area=showposts;sa=attach;u=10 Player Quests, Arrow quiver, Bee hives honey & mead, Massive menus, Fish Farmer, Combat trainer, Player made markers, Weaving, Wood stacks, Chicken coop Fish cuts, string&bone.

Vitowns

« Reply #2 on: November 03, 2021, 08:21:00 PM »
Thanks sir ill try again

Vitowns

« Reply #3 on: November 03, 2021, 08:50:58 PM »
It worked thanks :) i got a worm but i can't use it as bait so i guess it half-works lol progress

Privateer

« Reply #4 on: November 03, 2021, 11:17:09 PM »
It worked thanks :) i got a worm but i can't use it as bait so i guess it half-works lol progress

Changed the raw fish for a [TYPE:] parameter. also added a touch of weight.
I think with the food type it should let you fish it.

Code: [Select]
.Dig worm. "Hunting Horn" [effort:4] [phys:arms,hands,stance] *COMMON* /1h/ [noquality] [patch]
{[TERRAIN:lake river]} 'Lake or river (not rapids)'
{[TILE:Hole in the ground]} 'Pit for digging worm'
{Shovel}<Shovel>
[NAME:worm]
[TYPE:food]
[WEIGHT:0.1]
[PRICE:0]
[TILEGFX:fd-worm]

To help is it's own reward.
Mods:
https://www.unrealworld.fi/forums/index.php?action=profile;area=showposts;sa=attach;u=10 Player Quests, Arrow quiver, Bee hives honey & mead, Massive menus, Fish Farmer, Combat trainer, Player made markers, Weaving, Wood stacks, Chicken coop Fish cuts, string&bone.

Vitowns

« Reply #5 on: November 04, 2021, 12:56:58 AM »
It worked thanks :) i got a worm but i can't use it as bait so i guess it half-works lol progress

Changed the raw fish for a [TYPE:] parameter. also added a touch of weight.
I think with the food type it should let you fish it.

Code: [Select]
.Dig worm. "Hunting Horn" [effort:4] [phys:arms,hands,stance] *COMMON* /1h/ [noquality] [patch]
{[TERRAIN:lake river]} 'Lake or river (not rapids)'
{[TILE:Hole in the ground]} 'Pit for digging worm'
{Shovel}<Shovel>
[NAME:worm]
[TYPE:food]
[WEIGHT:0.1]
[PRICE:0]
[TILEGFX:fd-worm]

Owe you thanks also had to change hole in the ground for pit and it works cheers :)