Ok im trying to add this model: [Only registered and activated users can see links. ]
But it just shows up as a empty thingy (not even a null head or seomthing)
yes i did the addmodel thing (using this tut to add it to the client: [Only registered and activated users can see links. ])
(Using Galkons refactured client)
So what am i doing wrong?
My itemdef.java Code:
Code:
if(i == 8001)
{
itemDef.actions = new String[5]; // action
itemDef.actions[1] = "Wield"; // action - text
itemDef.modelID = 13701; // ground model
itemDef.modelZoom = 1560; // zoom model
itemDef.modelRotation1 = 344; // rotations
itemDef.modelRotation2 = 1104;
itemDef.anInt204 = 0;
itemDef.modelOffset1 = -6;
itemDef.modelOffset2 = -14;
itemDef.maleEquip1 = 13700; // male wearing torso
itemDef.femaleEquip1 = 13700; // female wearing torso
itemDef.maleEquip2 = -1; // male wearing arms
itemDef.femaleEquip2 = -1; // female wearing arms
itemDef.anInt175 = -1;
itemDef.anInt197 = -1;
itemDef.stackable = false; // stackable
itemDef.certID = 8001;
itemDef.name = "Dragon Wingshield"; // name of item
itemDef.description = "A rare shield made of a dragon wing.".getBytes();
}