Guest User

Untitled

a guest
Dec 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public void Summon(int frame, int item, int slot, int amount){
  2.  
  3. if(c.getOutStream() != null && c != null) {
  4. c.outStream.createFrameVarSizeWord(34);
  5. c.outStream.writeWord(frame);
  6. c.outStream.writeByte(c.summoningslot);
  7. c.outStream.writeWord(item+1);
  8. c.outStream.writeByte(255);
  9. c.outStream.writeDWord(amount);
  10. c.outStream.endFrameVarSizeWord();
  11. }
  12.  
  13. }
Add Comment
Please, Sign In to add comment