Results 1 to 8 of 8
  1. #1
    DBFunx's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    166
    Reputation
    10
    Thanks
    37

    Custom Skin wont show up in the dresser[FSoD]

    So I wanted to add a new skin to my private server here is what I have so far and it doesn't show up in the dresser if anyone else has encountered this before please leave a hint or a solution Thanks!
     
    <Object type="0x0413" id="Thessal Skin">
    <Class>Equipment</Class>
    <Item/>
    <AnimatedTexture>
    <File>playerskins</File>
    <Index>91</Index>
    </AnimatedTexture>
    <SlotType>10</SlotType>
    <Description>Unlocked during Fall 2016 Thanks to Ark</Description>
    <Activate skinType="29819">UnlockSkin</Activate>
    <Consumable/>
    <BagType>1</BagType>
    <DisplayId>Thessal Skin</DisplayId>
    </Object>
    <Object type="0x0414" id="Thessal">
    <Skin/>
    <Class>Skin</Class>
    <AnimatedTexture>
    <File>playerskins</File>
    <Index>91</Index>
    </AnimatedTexture>
    <PlayerClassType>0x0322</PlayerClassType>
    <UnlockSpecial>Unlocked during Fall 2016 Thanks to Ark</UnlockSpecial>
    <DisplayId>Thessal</DisplayId>
    </Object>
    [img]https://**********.com/addskype/dbfunx.png[/img]
    Want my skype? HERE IT IS!!! ^^^^

    I own a private server named Omni Realms


    My Vouch Thread
    https://www.mpgh.net/forum/showthread...6#post11843926

  2. #2
    HGAEHaeheadhetdhtertherh's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    281
    Reputation
    10
    Thanks
    199
    Code:
    <Object type="0x0413" id="Thessal Skin">
    <Class>Equipment</Class>
    <Item/>
    <AnimatedTexture>
    <File>playerskins</File>
    <Index>91</Index>
    </AnimatedTexture>
    <SlotType>10</SlotType>
    <Description>Unlocked during Fall 2016 Thanks to Ark</Description>
    <Activate skinType="29819">UnlockSkin</Activate>
    <Consumable/>
    <BagType>1</BagType>
    <DisplayId>Thessal Skin</DisplayId>
    </Object>
    <Object type="0x0414" id="Thessal">
    <Skin/>
    <Class>Skin</Class>
    <AnimatedTexture>
    <File>playerskins</File>
    <Index>91</Index>
    </AnimatedTexture>
    <PlayerClassType>0x0322</PlayerClassType>
    <UnlockSpecial>Unlocked during Fall 2016 Thanks to Ark</UnlockSpecial>
    <DisplayId>Thessal</DisplayId>
    </Object>
    0x0414 -> 0x414
    0x414 = 1044

    Item Skin Unlock ID = 29819
    Skin ID = 1044

    unlock id should be 1044

  3. #3
    DBFunx's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    166
    Reputation
    10
    Thanks
    37
    Teach me next time shenpai ghost

    - - - Updated - - -

    Doesn't work
    [img]https://**********.com/addskype/dbfunx.png[/img]
    Want my skype? HERE IT IS!!! ^^^^

    I own a private server named Omni Realms


    My Vouch Thread
    https://www.mpgh.net/forum/showthread...6#post11843926

  4. #4
    DreadTitan's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    9
    My Mood
    Relaxed
    My tutorial on MrchickenWingz's help thread named "Skin doesn't show in Wardrobe" should fix your problem.

  5. #5
    DBFunx's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    166
    Reputation
    10
    Thanks
    37
    Sorry im not doing a setskin just a normal skin
    Last edited by DBFunx; 08-27-2016 at 03:46 PM.
    [img]https://**********.com/addskype/dbfunx.png[/img]
    Want my skype? HERE IT IS!!! ^^^^

    I own a private server named Omni Realms


    My Vouch Thread
    https://www.mpgh.net/forum/showthread...6#post11843926

  6. #6
    DreadTitan's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    9
    My Mood
    Relaxed
    Since I am unable to post links I will copy my tutorial from the thread which I was referring to (not the set skin thread).

    So the code which you will need to put into the dat1 file in your solution and the binaryData file named "EmbeddedData_GhostShipCXML" which is the first binaryData file should look similar to the one below.

    Code:
       <Object type="0x2202" id="Example Huntress Skin">
          <Class>Equipment</Class>
          <Item/>
          <AnimatedTexture>
             <File>playerskins</File>
             <Index>92</Index>
          </AnimatedTexture>
          <SlotType>10</SlotType>
          <Description>Example.</Description>
          <Activate skinType="8705">UnlockSkin</Activate>
          <Consumable/>
          <BagType>1</BagType>
          <DisplayId>Example Skin</DisplayId>
       </Object>
    For now you can put any string of digits into the "skinType" section (This will be revisited later). Once you have added that to your dat1 file in your solution and the 1st binaryData file then you need to add another XML which should similar to the one below. You will need to add this XML into the dat1 file in your solution, the 1st binaryData file and the binaryData file named "EmbeddedData_SkinsCXML" which is the 42nd binaryData file.

    Code:
       <Object type="0x2201" id="Example Huntress">
          <Skin/>
          <Class>Skin</Class>
          <AnimatedTexture>
             <File>playerskins</File>
             <Index>92</Index>
          </AnimatedTexture>
          <PlayerClassType>0x0322</PlayerClassType>
          <UnlockSpecial>Example.</UnlockSpecial>
          <DisplayId>Example Huntress</DisplayId>
       </Object>
    Make sure your PlayerClassType matches to the class you want the skin to be for. Once you have added both XMLs into each file specified then you will need to save the binaryData files and replace them in JPEXS as well as rebuild your solution. Once you have rebuilt your solution you will need to open XAMPP and start MySQL. Next, open up HeidiSQL and navigate to any character's skin cell then enter in the Object type for the 2nd XML (0x2201) you have added, into any of the skin cells; this will convert your Object type into the string of digits you need to put into the "skinType" section of the first XML. Go back into your dat1 file in your solution and replace the skinType with what HeidiSQL showed you, do this for the 1st binaryData file as well. Save your client and rebuild your solution and your skin should now appear and work.

    You can check out T's tutorial on client modification if you need to for further info on the client stuff.

  7. The Following User Says Thank You to DreadTitan For This Useful Post:

    KennyHacks (09-15-2016)

  8. #7
    DBFunx's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    166
    Reputation
    10
    Thanks
    37
    //solved @Luis @Joe
    [img]https://**********.com/addskype/dbfunx.png[/img]
    Want my skype? HERE IT IS!!! ^^^^

    I own a private server named Omni Realms


    My Vouch Thread
    https://www.mpgh.net/forum/showthread...6#post11843926

  9. #8
    Danny's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    9,617
    Reputation
    2835
    Thanks
    3,002
    My Mood
    Aggressive
    /closed solved

    I am not a middleman nor do I buy/sell anything. If you are being contacted by someone off-site from MPGH then it's not me! Please report these to me via PM. Don't be stupid, think first.

Similar Threads

  1. The Dragon Knight Sejuani Custom Skin
    By Flashlinkk in forum League of Legends Discussions
    Replies: 0
    Last Post: 08-06-2013, 11:54 AM
  2. [Discussion] LOL the custom skins of program
    By kmanev073 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 2
    Last Post: 08-13-2011, 11:50 AM
  3. Model skin not showing up?
    By Wuzupmyhomiz in forum Combat Arms Mod Discussion
    Replies: 3
    Last Post: 01-23-2010, 04:34 PM
  4. Custom PC wont appear on screen
    By urukillora in forum General
    Replies: 15
    Last Post: 09-02-2009, 10:28 PM
  5. MY SIG WONT SHOW UP ON IMAGE SHACK
    By bzo778 in forum Suggestions, Requests & General Help
    Replies: 3
    Last Post: 08-22-2009, 09:18 PM