Some Items Won't Show Up in Multiplayer. How to Fix?

正在查看此主题的用户

Watchful

Recruit
All the other items I've added so far into the multiplayer section of module_script have worked, and shown up on the equipment selection multiplayer menu. NPC's can wear it fine, just not the player. How can I fix this so players can also use it?

Thanks in advance.

EDIT: Also seems that the military hammer won't show up either. Makes me think there's a flag I might be able to check/uncheck, or maybe it's missing a picture, making it unable to show up or be selected?

EDIT 2: Does it have to do with these items being not normally found in vanilla multiplayer I wonder?
 
I was able to figure it out. So for future reference...

Near the top of the module_script, is some lines where you need to add in items not already in multiplayer, for them to show up. Looks like this:

      #arrows
      (item_set_slot, "itm_arrows", slot_item_multiplayer_item_class, multi_item_class_type_arrow),     
      (item_set_slot, "itm_barbed_arrows", slot_item_multiplayer_item_class, multi_item_class_type_arrow),     
      (item_set_slot, "itm_bodkin_arrows", slot_item_multiplayer_item_class, multi_item_class_type_arrow),
      (item_set_slot, "itm_khergit_arrows", slot_item_multiplayer_item_class, multi_item_class_type_arrow),

And you can add your item line at the bottom of those or anywhere along that area. I made mine in a group with #custom at the bottom of the "item_set_slot" lines, so they'll be easy to find.
 
后退
顶部 底部