Brain.exe

Newbie Spellweaver
Joined
Nov 25, 2018
Messages
21
Reaction score
2

Missing name of the item+icon
Stupid question, How to fix this lol? My brain dead:grr: i have searched in this forums

First time I'm facing this issue.



Warmest regards
 
Last edited:
*lol* nice title... change it to you question ;)

What is the main problem? you will add a new shield right?

1. missing name of itemn ?
2 missing icon of item ?

post you error logs (server & client) ;)
post your added parts from the mdldyna & propItem
thats the best part to help you
 
Hello [Ratpack], I have added the shield "properly though" Both are missing, name and icon of the item - i have no error logs

I will post the added parts. Thanks for assistance :)

#Edit

ArmShiHylian" II_ARM_SHI_HYLIAN MODELTYPE_MESH "" 0 MD_NEAR 0 1.0f 0 1 ATEX_NONE 1

Test Shield IDS_PROPITEM_TXT_012040
Test items IDS_PROPITEM_TXT_012041 "description"



6 II_ARM_SHI_HYLIAN IDS_PROPITEM_TXT_012040 1 1 IK1_ARMOR IK2_ARMOR IK3_SHIELD JOB_VAGRANT TRUE = = 130 6570000 100 180 HD_ONE = PARTS_SHIELD = 0 = = 3 3 1 1 = = = 18 20 _NONE 0 0 0 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 0 0 0 0 0 0 = = = = = = = = = = = = 3 = = = """Item_ArmShiHylian.dds""" 0 """""" IDS_PROPITEM_TXT_012041
 
Last edited:
try this:

Code:
  "ArmShiHylian" II_ARM_SHI_HYLIAN MODELTYPE_MESH "" 0 MD_NEAR 0 1.0f 0 1 ATEX_NONE 1

ArmShiHylian is the name of your o3d without "Item_" and ".o3d" like: Item_ArmShiHylian.o3d => "ArmShiHylian"

IDS_PROPITEM_TXT_012040 TEST Shield
IDS_PROPITEM_TXT_012041 TEST Shield Description

The Icon must placed in Icon folder (Resource & Client): Item_ArmShiHylian.dds

Merge Resource, copy files, start server :)
 
Thanks for your respond but i don't have the icon file in the WinRAR I guess because of that :huh: I will try to fix it later.

Regards



i recognized an issue in propitem
This code:
IDS_PROPITEM_TXT_012040 The items name changes place to here "Test Shield"
Test items IDS_PROPITEM_TXT_012041

This should be like this


IDS_PROPITEM_TXT_012040 Test shield
IDS_PROPITEM_TXT_012041 Test items

(ones i am saving it, It change back to other sided name)

So basically it shows only the description in game :huh:





#CloseRequest

Solved thanks, i accidentally edited with normal edit and not (Notepad++)

Regards :laugh:
 
Last edited:
notepad++ is great you must check what encoding you have for your text file ;)
the source is not reading all encodings ;)

and this can't work:
Test items IDS_PROPITEM_TXT_012041

because the source is reading first
IDS_PROPITEM_TXT_012041
and after the id comes the text
TEST Shield Description
 
Good morning :laugh: , thanks for letting me know slowly I'm getting it. :)
 
Back