Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. if(p.hasPermission("kit.platinum")) {
  2.  
  3. PlatinumKitGUI pInv = new PlatinumKitGUI();
  4. pInv.PlatinumKit(p);
  5.  
  6. } else if(p.hasPermission("kit.legend")) {
  7.  
  8. LegendKitGUI lInv = new LegendKitGUI();
  9. lInv.LegendKit(p);
  10.  
  11. } else if(p.hasPermission("kit.superior")) {
  12.  
  13. SuperiorKitGUI sInv = new SuperiorKitGUI();
  14. sInv.SuperiorKit(p);
  15.  
  16. } else if(p.hasPermission("kit.overlord")) {
  17.  
  18. OverLordKitGUI oInv = new OverLordKitGUI();
  19. oInv.OverLordKit(p);
  20.  
  21. }else if(p.hasPermission("kit.immortal")) {
  22.  
  23. ImmortalKitGUI iInv = new ImmortalKitGUI();
  24. iInv.ImmortalKit(p);
  25.  
  26. } else {
  27.  
  28. DefaultKitGUI dInv = new DefaultKitGUI();
  29. dInv.DefaultKit(p);
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement