DoubleCardHandler.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:4k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3. Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
  4. Matthias Butz <matze@odinms.de>
  5. Jan Christian Meyer <vimes@odinms.de>
  6. This program is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU Affero General Public License version 3
  8. as published by the Free Software Foundation. You may not use, modify
  9. or distribute this program under any other version of the
  10. GNU Affero General Public License.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU Affero General Public License for more details.
  15. You should have received a copy of the GNU Affero General Public License
  16. along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17.  */
  18.  package net.sf.odinms.net.channel.handler;
  19.  import java.util.Calendar;
  20.  import net.sf.odinms.client.MapleCharacter;
  21.  import net.sf.odinms.client.MapleClient;
  22. /**
  23.  *
  24.  * @author iamSTEVE
  25.  */
  26.  public class DoubleCardHandler { //handling for 2x EXP and drop cards
  27.                 private MapleClient c;
  28. MapleCharacter player = c.getPlayer();
  29. Calendar cal = Calendar.getInstance();
  30. int day = cal.get(Calendar.DAY_OF_WEEK);
  31. int hour = cal.get(Calendar.HOUR_OF_DAY);
  32.         //int hour = cal.get(Calendar.HOUR_OF_DAY);
  33. private boolean weekend = false; //shorter form
  34. private boolean weekday = false;
  35. public DoubleCardHandler() {
  36. }
  37.   public int getEXPCard() {
  38. updateDay(); //all thats missing is instanced ones
  39. if (player.haveItem(5211000, 1, false, true) && hour >= 18 && hour <= 20) {
  40. return 2;
  41. } else if (player.haveItem(5211014, 1, false, true) && hour >= 7 && hour <= 11) {
  42. return 2;
  43. } else if (player.haveItem(5211015, 1, false, true) && hour >= 10 && hour <= 14) {
  44. return 2;
  45. } else if (player.haveItem(5211016, 1, false, true) && hour >= 13 && hour <= 17) {
  46. return 2;
  47. } else if (player.haveItem(5211017, 1, false, true) && hour >= 16 && hour <= 20) {
  48. return 2;
  49. } else if (player.haveItem(5211018, 1, false, true) && hour >= 15 && hour <= 23) {
  50. return 2;
  51. } else if (player.haveItem(5211039, 1, false, true) && hour >= 0 && hour <= 4) {
  52. return 2;
  53. } else if (player.haveItem(5211042, 1, false, true) && hour >= 3 && hour <= 7) {
  54. return 2;
  55. } else if (player.haveItem(5211045, 1, false, true) && hour >= 6 && hour <= 10) {
  56. return 2;
  57. } else if (player.haveItem(5211044, 1, false, true) && hour >= 6 && hour <= 12 && weekend) {
  58. return 2;
  59. } else if (player.haveItem(5211043, 1, false, true) && hour >= 6 && hour <= 12 && weekday) {
  60. return 2;
  61. } else if (player.haveItem(5211041, 1, false, true) && hour >= 3 && hour <= 9 && weekend) {
  62. return 2;
  63. } else if (player.haveItem(5211041, 1, false, true) && hour >= 3 && hour <= 9 && weekday) {
  64. return 2;
  65. } else if (player.haveItem(5211038, 1, false, true) && hour >= 0 && hour <= 4 && weekend) {
  66. return 2;
  67. } else if (player.haveItem(5211037, 1, false, true) && hour >= 0 && hour <= 4 && weekend) {
  68. return 2;
  69. }
  70. return 1;
  71. public int getDropCard() { //drop card handling
  72.         //todo: all drop cards
  73. if (player.haveItem(5360001, 1, false, true) && hour >= 7 && hour <= 11) {
  74. return 2;
  75. } else if (player.haveItem(5360002, 1, false, true) && hour >= 10 && hour <= 14) {
  76. return 2;
  77. } else if (player.haveItem(5360003, 1, false, true) && hour >= 13 && hour <= 17) {
  78. return 2;
  79. } else if (player.haveItem(5360004, 1, false, true) && hour >= 16 && hour <= 20) {
  80. return 2;
  81. } else if (player.haveItem(5360005, 1, false, true) && hour >= 19 && hour <= 23) {
  82. return 2;
  83. } else if (player.haveItem(5360006, 1, false, true) && hour >= 0 && hour <= 4) {
  84. return 2;
  85. } else if (player.haveItem(5360007, 1, false, true) && hour >= 3 && hour <= 7) {
  86. return 2;
  87. } else if (player.haveItem(5360008, 1, false, true) && hour >= 6 && hour <= 10) {
  88. return 2;
  89. }
  90. return 1;
  91. } //TODO: get it to double the mesos correctly without glitching >.<
  92.     public void updateDay () { //updates day.
  93.         switch(day){
  94.  case 1: this.weekend = true;
  95.  case 2: this.weekday = true;
  96.  case 3: this.weekday = true;
  97.  case 4: this.weekday = true;
  98.  case 5: this.weekday = true;
  99.  case 6: this.weekday = true;
  100.  case 7: this.weekend = true;
  101. }
  102.        }
  103. }