/src/SignCasino.java

https://github.com/darkdiplomat/SignCasino · Java · 74 lines · 46 code · 8 blank · 20 comment · 6 complexity · 2ba5044f3a178b62b07e0bc065a1ba95 MD5 · raw file

  1. import java.util.logging.Logger;
  2. /**
  3. * SignCasino v1.x
  4. * Copyright (C) 2012 Visual Illusions Entertainment
  5. * @author darkdiplomat <darkdiplomat@visualillusionsent.net>
  6. *
  7. * This file is part of SignCasino
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation, either version 3 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program. If not, see http://www.gnu.org/copyleft/gpl.html.
  21. */
  22. public class SignCasino extends Plugin{
  23. Logger log = Logger.getLogger("Minecraft");
  24. String name = "SignCasino";
  25. String version = "1.0.2";
  26. String author = "darkdiplomat";
  27. SCData SCD;
  28. SCCraps SCC;
  29. SCSlotMachine SCSM;
  30. SCBlackJack SCBJ;
  31. SCBaccarat SCB;
  32. SCListener SCL;
  33. public void enable(){
  34. this.
  35. log.info("[SignCasino] Version "+version+" by darkdiplomat enabled!");
  36. }
  37. public void disable(){
  38. if(SCD.dCo){
  39. etc.getInstance().removeCommand("/scshare");
  40. }
  41. else if(SCD.item){
  42. etc.getInstance().removeCommand("/scchest");
  43. }
  44. log.info("[SignCasino] Version "+version+" disabled!");
  45. }
  46. public void initialize(){
  47. SCD = new SCData(this);
  48. SCSM = new SCSlotMachine(this);
  49. SCC = new SCCraps(this);
  50. SCBJ = new SCBlackJack(this);
  51. SCB = new SCBaccarat(this);
  52. SCL = new SCListener(this);
  53. if(SCD.dCo){
  54. etc.getInstance().addCommand("/scshare", " <jointaccountname> - then left click sign to set shared account");
  55. }
  56. else if(SCD.item){
  57. etc.getInstance().addCommand("/scchest", " left click sign then left click a chest set a chest for the sign");
  58. }
  59. etc.getLoader().addListener(PluginLoader.Hook.COMMAND, SCL, this, PluginListener.Priority.MEDIUM);
  60. etc.getLoader().addListener(PluginLoader.Hook.BLOCK_RIGHTCLICKED, SCL, this, PluginListener.Priority.MEDIUM);
  61. etc.getLoader().addListener(PluginLoader.Hook.SIGN_CHANGE, SCL, this, PluginListener.Priority.MEDIUM);
  62. etc.getLoader().addListener(PluginLoader.Hook.BLOCK_DESTROYED, SCL, this, PluginListener.Priority.MEDIUM);
  63. etc.getLoader().addListener(PluginLoader.Hook.BLOCK_BROKEN, SCL, this, PluginListener.Priority.MEDIUM);
  64. etc.getLoader().addListener(PluginLoader.Hook.PLAYER_MOVE, SCL, this, PluginListener.Priority.MEDIUM);
  65. }
  66. }