Tutorial Send Player 'Totem of Undying' effect with Protocol Packets.

Discussion in 'Resources' started by Proxygames14, Jan 28, 2018.

Thread Status:
Not open for further replies.
  1. I did some research to make it easier for people to find their result if they are looking for this.
    My example shows you how to spawn a totem of undying effect.
    I hope this will be usefull for you :)

    Code:
    Player player = //(Player Variable Here)//
    
    EntityPlayer ep = ((CraftPlayer)player).getHandle();
    
    PacketPlayOutEntityStatus status = new PacketPlayOutEntityStatus(ep, (byte) 35);
    ep.playerConnection.sendPacket(status);
     
    Smegel and Horsey like this.
  2. Offline

    Smegel

    image if we could change the texture :]]
     
Thread Status:
Not open for further replies.

Share This Page