| package Channel; |
| |
| import com.google.common.base.Strings; |
| |
| import cpw.mods.fml.common.network.simpleimpl.IMessage; |
| import fr.extazilia.extaziliamod.common.Main; |
| import fr.extazilia.extaziliamod.proxy.CommonProxy; |
| import io.netty.buffer.ByteBuf; |
| import io.netty.channel.ChannelHandlerContext; |
| import net.minecraft.entity.Entity; |
| import net.minecraft.entity.SharedMonsterAttributes; |
| import net.minecraft.entity.ai.attributes.AttributeModifier; |
| import net.minecraft.entity.ai.attributes.IAttributeInstance; |
| import net.minecraft.entity.player.EntityPlayer; |
| import net.minecraft.entity.player.EntityPlayerMP; |
| import net.minecraft.nbt.NBTTagCompound; |
| import net.minecraft.potion.PotionEffect; |
| import net.minecraft.util.ChatComponentText; |
| import net.minecraft.world.World; |
| import net.minecraftforge.common.IExtendedEntityProperties; |
| |
| public class ExtendVieLv implements IExtendedEntityProperties{ |
| |
| public final static String EXT_Vie = "PropVie"; |
| private EntityPlayer player; |
| public String Lv; |
| public long LevelV; |
| public static long LLv; |
| |
| public ExtendVieLv(EntityPlayer player) { |
| this.player = player; |
| this.Lv = ""; |
| this.LevelV = 0; |
| } |
| |
| public static final void register(EntityPlayer player) { |
| player.registerExtendedProperties(ExtendVieLv.EXT_Vie,new ExtendVieLv(player));} |
| |
| public static final ExtendVieLv get(EntityPlayer player) { |
| return (ExtendVieLv) player.getExtendedProperties(EXT_Vie); |
| } |
| |
| @Override |
| public void saveNBTData(NBTTagCompound compound) { |
| NBTTagCompound properties = new NBTTagCompound(); |
| properties.setLong("NiveauxVie", this.LevelV); |
| compound.setTag(EXT_Vie, properties); |
| } |
| |
| @Override |
| public void loadNBTData(NBTTagCompound compound) { |
| NBTTagCompound properties = (NBTTagCompound) compound.getTag(EXT_Vie); |
| this.LevelV = properties.getLong("NiveauxVie"); |
| } |
| |
| public final void sync() { |
| transformation(); |
| MyMessage packetMoney = new MyMessage(this.Lv); |
| Main.network.sendToServer(packetMoney); |
| |
| if (!player.worldObj.isRemote) { |
| EntityPlayerMP player1 = (EntityPlayerMP) player; |
| Main.network.sendTo(packetMoney, player1); |
| } |
| transformation2(); |
| return; |
| } |
| private static String getSaveKey(EntityPlayer player) { |
| return player.getDisplayName() + ":" + EXT_Vie; |
| } |
| |
| public static void saveProxyData(EntityPlayer player) { |
| ExtendVieLv playerData = ExtendVieLv.get(player); |
| NBTTagCompound savedData = new NBTTagCompound(); |
| |
| playerData.saveNBTData(savedData); |
| CommonProxy.storeEntityData(getSaveKey(player), savedData); |
| } |
| |
| public static void loadProxyData(EntityPlayer player) { |
| ExtendVieLv playerData = ExtendVieLv.get(player); |
| NBTTagCompound savedData = CommonProxy.getEntityData(getSaveKey(player)); |
| |
| if (savedData != null) { |
| playerData.loadNBTData(savedData); |
| } |
| playerData.sync(); |
| } |
| |
| public String transformation(){ |
| if (this.LevelV == 0){this.Lv = "0";} |
| if (this.LevelV == 1){this.Lv = "1";} |
| if (this.LevelV == 2){this.Lv = "2";} |
| if (this.LevelV == 3){this.Lv = "3";} |
| if (this.LevelV == 4){this.Lv = "4";} |
| if (this.LevelV == 5){this.Lv = "5";} |
| if (this.LevelV == 6){this.Lv = "6";} |
| if (this.LevelV == 7){this.Lv = "7";} |
| if (this.LevelV == 8){this.Lv = "8";} |
| if (this.LevelV == 9){this.Lv = "9";} |
| if (this.LevelV == 10){this.Lv = "10";} |
| if (this.LevelV == 11){this.Lv = "11";} |
| if (this.LevelV == 12){this.Lv = "12";} |
| if (this.LevelV == 13){this.Lv = "13";} |
| if (this.LevelV == 14){this.Lv = "14";} |
| if (this.LevelV == 15){this.Lv = "15";} |
| if (this.LevelV == 16){this.Lv = "16";} |
| if (this.LevelV == 17){this.Lv = "17";} |
| if (this.LevelV == 18){this.Lv = "18";} |
| if (this.LevelV == 19){this.Lv = "19";} |
| if (this.LevelV == 20){this.Lv = "20";} |
| return Lv;} |
| |
| public Long transformation2(){ |
| if(this.Lv=="0"){this.LevelV=0;}; |
| if(this.Lv=="1"){this.LevelV=1;}; |
| if(this.Lv=="2"){this.LevelV=2;}; |
| if(this.Lv=="3"){this.LevelV=3;}; |
| if(this.Lv=="4"){this.LevelV=4;}; |
| if(this.Lv=="5"){this.LevelV=5;}; |
| if(this.Lv=="6"){this.LevelV=6;}; |
| if(this.Lv=="7"){this.LevelV=7;}; |
| if(this.Lv=="8"){this.LevelV=8;}; |
| if(this.Lv=="9"){this.LevelV=9;}; |
| if(this.Lv=="10"){this.LevelV=10;}; |
| if(this.Lv=="11"){this.LevelV=11;}; |
| if(this.Lv=="12"){this.LevelV=12;}; |
| if(this.Lv=="13"){this.LevelV=13;}; |
| if(this.Lv=="14"){this.LevelV=14;}; |
| if(this.Lv=="15"){this.LevelV=15;}; |
| if(this.Lv=="16"){this.LevelV=16;}; |
| if(this.Lv=="17"){this.LevelV=17;}; |
| if(this.Lv=="18"){this.LevelV=18;}; |
| if(this.Lv=="19"){this.LevelV=19;}; |
| if(this.Lv=="20"){this.LevelV=20;}; |
| return LevelV; |
| |
| } |
| |
| public boolean LvUp() { |
| System.out.println(player); |
| if (LevelV < 10 ){ |
| this.LevelV += 1; |
| AttributeModifier moreHealth = new AttributeModifier(player.getPersistentID(), "Test",4*LevelV, 0).setSaved(true); |
| IAttributeInstance attributeinstance = player.getEntityAttribute(SharedMonsterAttributes.maxHealth); |
| attributeinstance.removeModifier(moreHealth); |
| attributeinstance.applyModifier(moreHealth); |
| this.sync(); |
| return true;} |
| else{ |
| return false;} |
| } |
| public void Lv(){ |
| System.out.println("Ca lance"); |
| System.out.println(LevelV); |
| if (this.LevelV > 0){ |
| System.out.println("Le if passe"); |
| AttributeModifier moreHealth = new AttributeModifier(player.getPersistentID(), "Test",4*LevelV, 0).setSaved(true); |
| System.out.println("Le if passe 2"); |
| IAttributeInstance attributeinstance = player.getEntityAttribute(SharedMonsterAttributes.maxHealth); |
| System.out.println("Le if passe 3"); |
| attributeinstance.removeModifier(moreHealth); |
| attributeinstance.applyModifier(moreHealth); |
| System.out.println("Ca lance version 2"); |
| player.addPotionEffect(new PotionEffect(6,1)); |
| player.addPotionEffect(new PotionEffect(7,1)); |
| player.addPotionEffect(new PotionEffect(10,800,1)); |
| System.out.println("Effet de potion passé");}} |
| |
| public void Check(){ |
| this.transformation(); |
| System.out.println(Lv); |
| player.addChatMessage(new ChatComponentText(Lv)); |
| } |
| |
| private void Lv1() { |
| |
| |
| } |
| |
| @Override |
| public void init(Entity entity, World world) {} |
| } |