1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.
  2. If you are going to register on XLNation, please make sure you do not use a proxy server.
    If you use a proxy server your registration will most likely get blocked due to spammers and hackers using proxy servers to hide their real IP address.

    If your using your home or work IP address and have not received your registration email, check your spam folder.
    PLEASE DO NOT ASK TO HAVE YOUR ACCOUNT DELETED IF YOU HAVE POSTED IN THE FORUM! If so we do not delete accounts due to the mess it can make on the forum.
    Dismiss Notice

why do i can not find the building mod in the game that i creat?

Discussion in 'Modding Help Quarter' started by daochunhan, Aug 17, 2019.

  1. daochunhan

    daochunhan Governor

    Joined:
    Apr 8, 2018
    Messages:
    134
    Likes Received:
    615
    crss.jpg sorry everyone i dont want to disturb you,but i really have a strange problem,this is my new mod,but when i park it to a patch file mod,and add it to the game,i can not find the interface icno(thunbnail).i try to find the problem but anyway i can not help.i thought it is the tag location and change it but not matter how it still missing the interface icno.so i upload three file(two .rar and one patch file)there are my basic files with the 3dmax original files and the texture map,also with the data file which include class file,layout and else.the patch file you can copy it to the game and if it show up,i will confused.
    thanks a lot if you can take some special time to deal the issue.
     

    Attached Files:

    OmniBLACK likes this.
  2. Mr.X²

    Mr.X² Moderator
    Staff Member

    Joined:
    Aug 23, 2014
    Messages:
    1,338
    Likes Received:
    1,714
    Not sure, but it could be due to the whitespace in
    Code:
    b_ind_porlwswgrst six_t4
    . Try renaming all files and links to
    Code:
    b_ind_porlwswgrst_six_t4
    You are using en or tw version of cxl? Just asking because missing localization files are a common issue.
     
    OmniBLACK and daochunhan like this.
  3. daochunhan

    daochunhan Governor

    Joined:
    Apr 8, 2018
    Messages:
    134
    Likes Received:
    615
    sorry mr.x2,i add the localization files and still can not find it,can you park it or change the class files and see what happen in the game?
     
  4. Lokentaz

    Lokentaz Governor

    Joined:
    Feb 9, 2015
    Messages:
    404
    Likes Received:
    625
    I add a look to the class file. There is no thumb tags in the display section.

    You should add this minimalist code:
    Code:
    <Thumb>""</Thumb>
    If it doesn't work. Try a more complete code:
    Code:
    <Thumb>Data/interface/ddstexture/buildings/b_ind_porlwswgrst six_t4.dds</Thumb>
    or this one if you applied Mr.X2 advice:
    Code:
    <Thumb>Data/interface/ddstexture/buildings/b_ind_porlwswgrst_six_t4.dds</Thumb>
    I hope it will work.
     
    daochunhan likes this.
  5. daochunhan

    daochunhan Governor

    Joined:
    Apr 8, 2018
    Messages:
    134
    Likes Received:
    615
    thank you,i will try!
     
  6. Lokentaz

    Lokentaz Governor

    Joined:
    Feb 9, 2015
    Messages:
    404
    Likes Received:
    625
    Not sure the view section is good:
    Code:
      
    <View>
            <NameKey>&b_ind_porlwswgrst six_t4</NameKey>
            <NameKeySim>&b_ind_porlwswgrst six_t4_SIM</NameKeySim>
            <Panel>BuildingSelection</Panel>
            <DescriptionKey>&b_ind_porlwswgrst six_t4_DES</DescriptionKey>
            <Param1Key>&b_ind_porlwswgrst six_t4_PARAM1</Param1Key>
            <Value1Key>&b_ind_porlwswgrst six_t4_VALUE1</Value1Key>
            <Param2Key>&b_ind_porlwswgrst six_t4_PARAM2</Param2Key>
            <Value2Key>&b_ind_porlwswgrst six_t4_VALUE2</Value2Key>
            <Param3Key>&b_ind_porlwswgrst six_t4_PARAM3</Param3Key>
            <Value3Key>&b_ind_porlwswgrst six_t4_VALUE3</Value3Key>
    </View>
    
    I don't know if it's important to respect an order in this section but I always arrange it with the Panel tags in first position:
    Code:
     
    <View>
            <Panel>BuildingSelection</Panel>      
            <NameKey>&b_ind_porlwswgrst six_t4</NameKey>
            <NameKeySim>&b_ind_porlwswgrst six_t4_SIM</NameKeySim>
            <DescriptionKey>&b_ind_porlwswgrst six_t4_DES</DescriptionKey>
            <Param1Key>&b_ind_porlwswgrst six_t4_PARAM1</Param1Key>
            <Value1Key>&b_ind_porlwswgrst six_t4_VALUE1</Value1Key>
            <Param2Key>&b_ind_porlwswgrst six_t4_PARAM2</Param2Key>
            <Value2Key>&b_ind_porlwswgrst six_t4_VALUE2</Value2Key>
            <Param3Key>&b_ind_porlwswgrst six_t4_PARAM3</Param3Key>
            <Value3Key>&b_ind_porlwswgrst six_t4_VALUE3</Value3Key>
    </View>
    
     
  7. Lokentaz

    Lokentaz Governor

    Joined:
    Feb 9, 2015
    Messages:
    404
    Likes Received:
    625
    Also, I'm not sure about the localization files because there are two descriptions. Only one is needed.

    #FILE_VERSION 3

    #FIELD_ID b_ind_porlwswgrst six_t4_SIM
    PHI-Style-Century Building

    #FIELD_ID b_ind_porlwswgrst six_t4
    PHI-Style-Century Building

    #FIELD_ID b_ind_porlwswgrst six_t4_DES
    2Century Building W2W-Executive office

    #FIELD_ID b_ind_porlwswgrst six_t4_DES
    Century Building W2W-Executive office
     
  8. Lokentaz

    Lokentaz Governor

    Joined:
    Feb 9, 2015
    Messages:
    404
    Likes Received:
    625
    Good news @daochunhan! The mod works if you apply all previous advices ;).

    gamescreen0004.jpg

    As you can see below, MrX2 is right. The white space is problematic.

    issue.PNG
     
    Mr.X² likes this.
  9. daochunhan

    daochunhan Governor

    Joined:
    Apr 8, 2018
    Messages:
    134
    Likes Received:
    615
    ok,thank you!it is a great work.can you upload it?
     
  10. Lokentaz

    Lokentaz Governor

    Joined:
    Feb 9, 2015
    Messages:
    404
    Likes Received:
    625
  11. daochunhan

    daochunhan Governor

    Joined:
    Apr 8, 2018
    Messages:
    134
    Likes Received:
    615
  12. Drey 2

    Drey 2 Elite

    Joined:
    Dec 4, 2017
    Messages:
    23
    Likes Received:
    243
    when will this mod be posted? .as your mods i would like to see the shinjuku tokyo buildings made by you one day. we can't complain about your mods giving cities xxl another life
     
  13. daochunhan

    daochunhan Governor

    Joined:
    Apr 8, 2018
    Messages:
    134
    Likes Received:
    615
    sorry,i cannot posted it,because i still can not find it in my game,
    Lokentaz find it,i appreciate him and happy that he find it,but i can not find it,i afraid others can not find it too.if you want to use it,you can download it from lokentaz"s download link.
     
  14. Drey 2

    Drey 2 Elite

    Joined:
    Dec 4, 2017
    Messages:
    23
    Likes Received:
    243
    thanks I'll try
     
  15. Drey 2

    Drey 2 Elite

    Joined:
    Dec 4, 2017
    Messages:
    23
    Likes Received:
    243
     
  16. Lokentaz

    Lokentaz Governor

    Joined:
    Feb 9, 2015
    Messages:
    404
    Likes Received:
    625
    I confirm. This building is in the T4 offices. I haven't modified the location tags.

    tags.PNG


    I understand your prudence. Have you looked in the offices menu ? I ask this because your zip file is named "porland warsaw residence building".
    Did you want to create a residence ? Personally, I don't think so because all the files name begin with "b_ind_" (as requested for industry and offices) but I prefer to ask in case of misunderstanding. ;)
     
  17. daochunhan

    daochunhan Governor

    Joined:
    Apr 8, 2018
    Messages:
    134
    Likes Received:
    615
    oh,i change it to h_eli and delate the "six" word,and at first,i cannot find it ,truth it is,but strange is,i find it again,when i add the new mod,it just shows up with no reason!
     
    Lokentaz likes this.
  18. Lokentaz

    Lokentaz Governor

    Joined:
    Feb 9, 2015
    Messages:
    404
    Likes Received:
    625
    It looks like you're on the right track, my friend. Good luck!
    Don't dither if you need help again.
     
  19. daochunhan

    daochunhan Governor

    Joined:
    Apr 8, 2018
    Messages:
    134
    Likes Received:
    615
    ok,thank you!
     

Share This Page