Jump to content

Model Armor HelpMe !!


cartoonfamily

Recommended Posts

You're doing something wrong.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

You're doing something wrong.

 

 

 

style as image Sorry for any incorrect on my conversation, my English is not good T_T

 

Model

Vj4lOI.jpg

1ZALyy.png

 

 

ClientProxy

 

package tutorial;

 

import net.minecraft.client.model.ModelBiped;

 

public class ClientProxy extends CommonProxy {

 

private static final tutarm tutChest = new tutarm((float) 1.0);

private static final tutarm tutLegs = new tutarm((float) 1.0);

 

@Override

public ModelBiped getArmorModel(int id){

switch (id) {

case 0:

return tutChest;

case 1:

return tutLegs;

default:

break;

}

return tutChest; //default, if whenever you should have passed on a wrong id

}

}

_____________________________________________

 

tutarm

 

 

package tutorial;

 

import net.minecraft.client.model.ModelBiped;

import net.minecraft.client.model.ModelRenderer;

import net.minecraft.entity.Entity;

import net.minecraft.util.MathHelper;

 

public class tutarm extends ModelBiped

{

//fields

  ModelRenderer Shape1;

 

public tutarm(float f)

{

super(f,0, 64,64);

  textureWidth = 64;

  textureHeight = 64;

 

    Shape1 = new ModelRenderer(this, 0, 0);

    Shape1.addBox(0F, 0F, 0F, 2, 3, 2);

    Shape1.setRotationPoint(-15, 53, -3F);

    Shape1.setTextureSize(64, 64);

    Shape1.mirror = true;

    setRotation(Shape1, 0F, 0F, 0F);

}

 

public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5)

{

  super.render(entity, f, f1, f2, f3, f4, f5);

  setRotationAngles(f, f1, f2, f3, f4, f5);

  Shape1.render(f5);

}

 

private void setRotation(ModelRenderer model, float x, float y, float z)

{

  model.rotateAngleX = x;

  model.rotateAngleY = y;

  model.rotateAngleZ = z;

}

 

public void setRotationAngles(float f, float f1, float f2, float f3, float f4, float f5)

{

  super.setRotationAngles(f, f1, f2, f3, f4, f5, null);

}

 

}

____________________________________

 

mod_ArmorTutorial

 

 

package tutorial;

 

import net.minecraft.item.EnumArmorMaterial;

import net.minecraft.item.Item;

import cpw.mods.fml.common.Mod;

import cpw.mods.fml.common.Mod.EventHandler;

import cpw.mods.fml.common.SidedProxy;

import cpw.mods.fml.common.event.FMLInitializationEvent;

import cpw.mods.fml.common.network.NetworkMod;

import cpw.mods.fml.common.registry.LanguageRegistry;

 

@Mod(modid="ArmorTutorial", name="ArmorTutorial", version="tutorial")

@NetworkMod(clientSideRequired=true, serverSideRequired=false)

public class mod_ArmorTutorial {

 

@SidedProxy(serverSide="tutorial.CommonProxy", clientSide="tutorial.ClientProxy")

public static CommonProxy proxy;

 

public static Item chest;

public static Item legs;

public static Item boots;

public static Item helmet;

 

@EventHandler

public void load(FMLInitializationEvent e)

{

helmet = new CustomArmor(8469, EnumArmorMaterial.IRON, 4, 0).setUnlocalizedName("a.iron_helmet");

chest = new CustomArmor(8470, EnumArmorMaterial.IRON, 4, 1).setUnlocalizedName("a.iron_chestplate");

legs = new CustomArmor(8471, EnumArmorMaterial.IRON, 4, 2).setUnlocalizedName("a.armor:tutorial_chest.png");

boots = new CustomArmor(8472, EnumArmorMaterial.IRON, 4, 3).setUnlocalizedName("a.armor:tutorial_chest.png");

 

LanguageRegistry.addName(helmet, "Armor:หมวก");

LanguageRegistry.addName(chest, "Armor:เสื้อ");

LanguageRegistry.addName(legs, "Armor:กางเกง");

LanguageRegistry.addName(boots, "Armor:รองเท้า");

}

 

 

}

 

_____________________________________________

Link to comment
Share on other sites

Please use a different image hosting service like http://tinypic.com/ or http://postimage.org/

Your native Thailandian one won't give me more than the top 20 pixels.

 

In any case: you have not specified a texture file.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Please use a different image hosting service like http://tinypic.com/ or http://postimage.org/

Your native Thailandian one won't give me more than the top 20 pixels.

 

In any case: you have not specified a texture file.

 

 

Sorry!! Model  Techne !!

 

208ft7d.jpg

 

Code::

package tutorial;

 

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

import net.minecraft.client.model.ModelBiped;

import net.minecraft.client.renderer.texture.IconRegister;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.entity.Entity;

import net.minecraft.entity.EntityLivingBase;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.item.EnumArmorMaterial;

import net.minecraft.item.ItemArmor;

import net.minecraft.item.ItemStack;

import net.minecraft.util.Icon;

import net.minecraft.world.EnumSkyBlock;

import net.minecraft.world.World;

 

 

public class CustomArmor extends ItemArmor{

 

public CustomArmor(int par1, EnumArmorMaterial par2EnumArmorMaterial,

int par3, int par4) {

super(par1, par2EnumArmorMaterial, par3, par4);

// TODO Auto-generated constructor stub

}

 

@Override

@SideOnly(Side.CLIENT)

public void registerIcons(IconRegister par1IconRegister) {

String itemName = getUnlocalizedName().substring(getUnlocalizedName().lastIndexOf(".") + 1);

this.itemIcon = par1IconRegister.registerIcon(itemName);

}

 

@Override

public String getArmorTexture(ItemStack stack, Entity entity, int slot,

String type) {

if (stack.itemID == mod_ArmorTutorial.chest.itemID || stack.itemID == mod_ArmorTutorial.boots.itemID || stack.itemID == mod_ArmorTutorial.helmet.itemID) {

return "armor:tutorial_chest.png";

}

if (stack.itemID == mod_ArmorTutorial.legs.itemID) {

return "armor:tutorial_legs.png";

}

return null;

}

 

ModelBiped armorModel = new ModelBiped();

 

@Override

@SideOnly(Side.CLIENT)

public ModelBiped getArmorModel(EntityLivingBase entityLiving,

ItemStack itemStack, int armorSlot) {

 

if(itemStack != null){

if(itemStack.getItem() instanceof CustomArmor){

int type = ((ItemArmor)itemStack.getItem()).armorType;

 

                        if(type == 1 || type == 3){

                                armorModel = mod_ArmorTutorial.proxy.getArmorModel(0);

                        }else{

                                armorModel = mod_ArmorTutorial.proxy.getArmorModel(1);

                                armorModel = mod_ArmorTutorial.proxy.getArmorModel(2);

                        }

}

if(armorModel != null){

armorModel.bipedHead.showModel = armorSlot == 0;

armorModel.bipedHeadwear.showModel = armorSlot == 0;

armorModel.bipedBody.showModel = armorSlot == 1 || armorSlot == 2;

armorModel.bipedRightArm.showModel = armorSlot == 1;

armorModel.bipedLeftArm.showModel = armorSlot == 1;

armorModel.bipedRightLeg.showModel = armorSlot == 2 || armorSlot == 3;

armorModel.bipedLeftLeg.showModel = armorSlot == 2 || armorSlot == 3;

 

armorModel.isSneak = entityLiving.isSneaking();

armorModel.isRiding = entityLiving.isRiding();

armorModel.isChild = entityLiving.isChild();

armorModel.heldItemRight = entityLiving.getCurrentItemOrArmor(0) != null ? 1 :0;

if(entityLiving instanceof EntityPlayer){

armorModel.aimedBow =((EntityPlayer)entityLiving).getItemInUseDuration() > 2;

}

return armorModel;

}

}

 

return null;

}

}

 

*********************************

package tutorial;

 

import net.minecraft.client.model.ModelBiped;

import net.minecraft.item.EnumArmorMaterial;

import net.minecraft.item.Item;

import cpw.mods.fml.common.Mod;

import cpw.mods.fml.common.Mod.EventHandler;

import cpw.mods.fml.common.SidedProxy;

import cpw.mods.fml.common.event.FMLInitializationEvent;

import cpw.mods.fml.common.network.NetworkMod;

import cpw.mods.fml.common.registry.LanguageRegistry;

 

@Mod(modid="ArmorTutorial", name="ArmorTutorial", version="tutorial")

@NetworkMod(clientSideRequired=true, serverSideRequired=false)

public class mod_ArmorTutorial {

 

@SidedProxy(serverSide="tutorial.CommonProxy", clientSide="tutorial.ClientProxy")

public static CommonProxy proxy;

 

public static Item chest;

public static Item legs;

public static Item boots;

public static Item helmet;

 

@EventHandler

public void load(FMLInitializationEvent e)

{

helmet = new CustomArmor(8469, EnumArmorMaterial.IRON, 4, 0).setUnlocalizedName("a.iron_helmet");

chest = new CustomArmor(8470, EnumArmorMaterial.IRON, 4, 1).setUnlocalizedName("a.iron_chestplate");

legs = new CustomArmor(8471, EnumArmorMaterial.IRON, 4, 2).setUnlocalizedName("a.armor:tutorial_chest.png");

boots = new CustomArmor(8472, EnumArmorMaterial.IRON, 4, 3).setUnlocalizedName("a.armor:tutorial_chest.png");

 

LanguageRegistry.addName(helmet, "Armor:หมวก");

LanguageRegistry.addName(chest, "Armor:เสื้อ");

LanguageRegistry.addName(legs, "Armor:กางเกง");

LanguageRegistry.addName(boots, "Armor:รองเท้า");

}

 

public static ModelBiped getArmorModel() {

// TODO Auto-generated method stub

return null;

}

 

 

}

******************************

package tutorial;

 

import net.minecraft.client.model.ModelBiped;

import net.minecraft.client.model.ModelRenderer;

import net.minecraft.entity.Entity;

import net.minecraft.util.MathHelper;

 

public class tutarm extends ModelBiped

{

  //fields

    ModelRenderer head;

    ModelRenderer body;

    ModelRenderer rightarm;

    ModelRenderer leftarm;

    ModelRenderer rightleg;

    ModelRenderer leftleg;

 

  public tutarm(float f)

  {

  super(f,0, 128,128);

    textureWidth = 128;

    textureHeight = 128;

   

      head = new ModelRenderer(this, 0, 35);

      head.addBox(-7F, -8F, -4F, 14, 13, 14);

      head.setRotationPoint(0F, 0F, -3F);

      head.setTextureSize(128, 128);

      head.mirror = true;

      setRotation(head, 0F, 0F, 0F);

      body = new ModelRenderer(this, 61, 2);

      body.addBox(-4F, 0F, -5F, 8, 12, 10);

      body.setRotationPoint(0F, 0F, 0F);

      body.setTextureSize(128, 128);

      body.mirror = true;

      setRotation(body, 0F, 0F, 0F);

      rightarm = new ModelRenderer(this, 40, 16);

      rightarm.addBox(-5F, -2F, -2F, 6, 12, 4);

      rightarm.setRotationPoint(-5F, 2F, 0F);

      rightarm.setTextureSize(128, 128);

      rightarm.mirror = true;

      setRotation(rightarm, 0F, 0F, 0F);

      leftarm = new ModelRenderer(this, 40, 16);

      leftarm.addBox(-1F, -2F, -2F, 6, 12, 4);

      leftarm.setRotationPoint(5F, 2F, 0F);

      leftarm.setTextureSize(128, 128);

      leftarm.mirror = true;

      setRotation(leftarm, 0F, 0F, 0F);

      rightleg = new ModelRenderer(this, 0, 16);

      rightleg.addBox(-2F, 0F, -2F, 4, 12, 4);

      rightleg.setRotationPoint(-2F, 12F, 0F);

      rightleg.setTextureSize(128, 128);

      rightleg.mirror = true;

      setRotation(rightleg, 0F, 0F, 0F);

      leftleg = new ModelRenderer(this, 0, 16);

      leftleg.addBox(-2F, 0F, -2F, 4, 12, 4);

      leftleg.setRotationPoint(2F, 12F, 0F);

      leftleg.setTextureSize(128, 128);

      leftleg.mirror = true;

      setRotation(leftleg, 0F, 0F, 0F);

  }

 

  public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5)

  {

    super.render(entity, f, f1, f2, f3, f4, f5);

    setRotationAngles(f, f1, f2, f3, f4, f5);

    head.render(f5);

    body.render(f5);

    rightarm.render(f5);

    leftarm.render(f5);

    rightleg.render(f5);

    leftleg.render(f5);

  }

 

  private void setRotation(ModelRenderer model, float x, float y, float z)

  {

    model.rotateAngleX = x;

    model.rotateAngleY = y;

    model.rotateAngleZ = z;

  }

 

  public void setRotationAngles(float f, float f1, float f2, float f3, float f4, float f5)

  {

    super.setRotationAngles(f, f1, f2, f3, f4, f5, null);

  }

 

}

Link to comment
Share on other sites

Please use a different image hosting service like http://tinypic.com/ or http://postimage.org/

Your native Thailandian one won't give me more than the top 20 pixels.

 

In any case: you have not specified a texture file.

 

 

Sorry!! Model  Techne !!

 

208ft7d.jpg

 

Code::

package tutorial;

 

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

import net.minecraft.client.model.ModelBiped;

import net.minecraft.client.renderer.texture.IconRegister;

import net.minecraft.creativetab.CreativeTabs;

import net.minecraft.entity.Entity;

import net.minecraft.entity.EntityLivingBase;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.item.EnumArmorMaterial;

import net.minecraft.item.ItemArmor;

import net.minecraft.item.ItemStack;

import net.minecraft.util.Icon;

import net.minecraft.world.EnumSkyBlock;

import net.minecraft.world.World;

 

 

public class CustomArmor extends ItemArmor{

 

public CustomArmor(int par1, EnumArmorMaterial par2EnumArmorMaterial,

int par3, int par4) {

super(par1, par2EnumArmorMaterial, par3, par4);

// TODO Auto-generated constructor stub

}

 

@Override

@SideOnly(Side.CLIENT)

public void registerIcons(IconRegister par1IconRegister) {

String itemName = getUnlocalizedName().substring(getUnlocalizedName().lastIndexOf(".") + 1);

this.itemIcon = par1IconRegister.registerIcon(itemName);

}

 

@Override

public String getArmorTexture(ItemStack stack, Entity entity, int slot,

String type) {

if (stack.itemID == mod_ArmorTutorial.chest.itemID || stack.itemID == mod_ArmorTutorial.boots.itemID || stack.itemID == mod_ArmorTutorial.helmet.itemID) {

return "armor:tutorial_chest.png";

}

if (stack.itemID == mod_ArmorTutorial.legs.itemID) {

return "armor:tutorial_legs.png";

}

return null;

}

 

ModelBiped armorModel = new ModelBiped();

 

@Override

@SideOnly(Side.CLIENT)

public ModelBiped getArmorModel(EntityLivingBase entityLiving,

ItemStack itemStack, int armorSlot) {

 

if(itemStack != null){

if(itemStack.getItem() instanceof CustomArmor){

int type = ((ItemArmor)itemStack.getItem()).armorType;

 

                        if(type == 1 || type == 3){

                                armorModel = mod_ArmorTutorial.proxy.getArmorModel(0);

                        }else{

                                armorModel = mod_ArmorTutorial.proxy.getArmorModel(1);

                                armorModel = mod_ArmorTutorial.proxy.getArmorModel(2);

                        }

}

if(armorModel != null){

armorModel.bipedHead.showModel = armorSlot == 0;

armorModel.bipedHeadwear.showModel = armorSlot == 0;

armorModel.bipedBody.showModel = armorSlot == 1 || armorSlot == 2;

armorModel.bipedRightArm.showModel = armorSlot == 1;

armorModel.bipedLeftArm.showModel = armorSlot == 1;

armorModel.bipedRightLeg.showModel = armorSlot == 2 || armorSlot == 3;

armorModel.bipedLeftLeg.showModel = armorSlot == 2 || armorSlot == 3;

 

armorModel.isSneak = entityLiving.isSneaking();

armorModel.isRiding = entityLiving.isRiding();

armorModel.isChild = entityLiving.isChild();

armorModel.heldItemRight = entityLiving.getCurrentItemOrArmor(0) != null ? 1 :0;

if(entityLiving instanceof EntityPlayer){

armorModel.aimedBow =((EntityPlayer)entityLiving).getItemInUseDuration() > 2;

}

return armorModel;

}

}

 

return null;

}

}

 

*********************************

package tutorial;

 

import net.minecraft.client.model.ModelBiped;

import net.minecraft.item.EnumArmorMaterial;

import net.minecraft.item.Item;

import cpw.mods.fml.common.Mod;

import cpw.mods.fml.common.Mod.EventHandler;

import cpw.mods.fml.common.SidedProxy;

import cpw.mods.fml.common.event.FMLInitializationEvent;

import cpw.mods.fml.common.network.NetworkMod;

import cpw.mods.fml.common.registry.LanguageRegistry;

 

@Mod(modid="ArmorTutorial", name="ArmorTutorial", version="tutorial")

@NetworkMod(clientSideRequired=true, serverSideRequired=false)

public class mod_ArmorTutorial {

 

@SidedProxy(serverSide="tutorial.CommonProxy", clientSide="tutorial.ClientProxy")

public static CommonProxy proxy;

 

public static Item chest;

public static Item legs;

public static Item boots;

public static Item helmet;

 

@EventHandler

public void load(FMLInitializationEvent e)

{

helmet = new CustomArmor(8469, EnumArmorMaterial.IRON, 4, 0).setUnlocalizedName("a.iron_helmet");

chest = new CustomArmor(8470, EnumArmorMaterial.IRON, 4, 1).setUnlocalizedName("a.iron_chestplate");

legs = new CustomArmor(8471, EnumArmorMaterial.IRON, 4, 2).setUnlocalizedName("a.armor:tutorial_chest.png");

boots = new CustomArmor(8472, EnumArmorMaterial.IRON, 4, 3).setUnlocalizedName("a.armor:tutorial_chest.png");

 

LanguageRegistry.addName(helmet, "Armor:หมวก");

LanguageRegistry.addName(chest, "Armor:เสื้อ");

LanguageRegistry.addName(legs, "Armor:กางเกง");

LanguageRegistry.addName(boots, "Armor:รองเท้า");

}

 

public static ModelBiped getArmorModel() {

// TODO Auto-generated method stub

return null;

}

 

 

}

******************************

package tutorial;

 

import net.minecraft.client.model.ModelBiped;

import net.minecraft.client.model.ModelRenderer;

import net.minecraft.entity.Entity;

import net.minecraft.util.MathHelper;

 

public class tutarm extends ModelBiped

{

  //fields

    ModelRenderer head;

    ModelRenderer body;

    ModelRenderer rightarm;

    ModelRenderer leftarm;

    ModelRenderer rightleg;

    ModelRenderer leftleg;

 

  public tutarm(float f)

  {

  super(f,0, 128,128);

    textureWidth = 128;

    textureHeight = 128;

   

      head = new ModelRenderer(this, 0, 35);

      head.addBox(-7F, -8F, -4F, 14, 13, 14);

      head.setRotationPoint(0F, 0F, -3F);

      head.setTextureSize(128, 128);

      head.mirror = true;

      setRotation(head, 0F, 0F, 0F);

      body = new ModelRenderer(this, 61, 2);

      body.addBox(-4F, 0F, -5F, 8, 12, 10);

      body.setRotationPoint(0F, 0F, 0F);

      body.setTextureSize(128, 128);

      body.mirror = true;

      setRotation(body, 0F, 0F, 0F);

      rightarm = new ModelRenderer(this, 40, 16);

      rightarm.addBox(-5F, -2F, -2F, 6, 12, 4);

      rightarm.setRotationPoint(-5F, 2F, 0F);

      rightarm.setTextureSize(128, 128);

      rightarm.mirror = true;

      setRotation(rightarm, 0F, 0F, 0F);

      leftarm = new ModelRenderer(this, 40, 16);

      leftarm.addBox(-1F, -2F, -2F, 6, 12, 4);

      leftarm.setRotationPoint(5F, 2F, 0F);

      leftarm.setTextureSize(128, 128);

      leftarm.mirror = true;

      setRotation(leftarm, 0F, 0F, 0F);

      rightleg = new ModelRenderer(this, 0, 16);

      rightleg.addBox(-2F, 0F, -2F, 4, 12, 4);

      rightleg.setRotationPoint(-2F, 12F, 0F);

      rightleg.setTextureSize(128, 128);

      rightleg.mirror = true;

      setRotation(rightleg, 0F, 0F, 0F);

      leftleg = new ModelRenderer(this, 0, 16);

      leftleg.addBox(-2F, 0F, -2F, 4, 12, 4);

      leftleg.setRotationPoint(2F, 12F, 0F);

      leftleg.setTextureSize(128, 128);

      leftleg.mirror = true;

      setRotation(leftleg, 0F, 0F, 0F);

  }

 

  public void render(Entity entity, float f, float f1, float f2, float f3, float f4, float f5)

  {

    super.render(entity, f, f1, f2, f3, f4, f5);

    setRotationAngles(f, f1, f2, f3, f4, f5);

    head.render(f5);

    body.render(f5);

    rightarm.render(f5);

    leftarm.render(f5);

    rightleg.render(f5);

    leftleg.render(f5);

  }

 

  private void setRotation(ModelRenderer model, float x, float y, float z)

  {

    model.rotateAngleX = x;

    model.rotateAngleY = y;

    model.rotateAngleZ = z;

  }

 

  public void setRotationAngles(float f, float f1, float f2, float f3, float f4, float f5)

  {

    super.setRotationAngles(f, f1, f2, f3, f4, f5, null);

  }

 

}

 

 

Help Me !!!!

Link to comment
Share on other sites

I honestly do not know what the problem is.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Tx ^_^

 

thanks.png

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.