Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. diff --git a/src/main/java/org/character/data/TXTCharacter.java b/src/main/java/org/character/data/TXTCharacter.java
  2. index df86a66..964b164 100644
  3. --- a/src/main/java/org/character/data/TXTCharacter.java
  4. +++ b/src/main/java/org/character/data/TXTCharacter.java
  5. @@ -6,6 +6,7 @@ import java.io.FileReader;
  6.  import java.io.IOException;
  7.  
  8.  import org.character.data.config.CharConfig;
  9. +import org.javathena.core.data.Clazz007382383094620344;
  10.  import org.javathena.core.data.Friend;
  11.  import org.javathena.core.data.Hotkey;
  12.  import org.javathena.core.data.IndexedFastMap;
  13. @@ -14,7 +15,6 @@ import org.javathena.core.data.PersistenteData;
  14.  import org.javathena.core.data.Point;
  15.  import org.javathena.core.data.ROCharacter;
  16.  import org.javathena.core.data.Skill;
  17. -import org.javathena.core.data.ROCharacter.JOB;
  18.  import org.javathena.core.utiles.Functions;
  19.  
  20.  public class TXTCharacter implements PersistenteData<IndexedFastMap<Integer, ROCharacter>>
  21. @@ -139,7 +139,7 @@ public class TXTCharacter implements PersistenteData<IndexedFastMap<Integer, ROC
  22.             currChar.setName(mainCharSL[2]);
  23.  
  24.             tmpSplit = mainCharSL[3].split(",");
  25. -           currChar.setClass_(JOB.parseFromValue(Short.parseShort(tmpSplit[0])));
  26. +           currChar.setClass_(Clazz007382383094620344.parseFromValue(Short.parseShort(tmpSplit[0])));
  27.             currChar.setBase_level(Integer.parseInt(tmpSplit[0]));
  28.             currChar.setJob_level(Integer.parseInt(tmpSplit[0]));
  29.  
  30. diff --git a/src/main/java/org/javathena/core/data/Clazz007382383094620344.java b/src/main/java/org/javathena/core/data/Clazz007382383094620344.java
  31. new file mode 100644
  32. index 0000000..8002f87
  33. --- /dev/null
  34. +++ b/src/main/java/org/javathena/core/data/Clazz007382383094620344.java
  35. @@ -0,0 +1,245 @@
  36. +package org.javathena.core.data;
  37. +
  38. +import org.javathena.core.data.ROCharacter.JOB;
  39. +
  40. +import javolution.util.FastMap;
  41. +import javolution.util.FastTable;
  42. +
  43. +public class Clazz007382383094620344 {
  44. +   public int char_id;
  45. +   public int account_id;
  46. +   public int partner_id;
  47. +   public int father;
  48. +   public int mother;
  49. +   public int child;
  50. +   public int base_exp;
  51. +   public int job_exp;
  52. +   public int zeny;
  53. +   public JOB class_;
  54. +   public int status_point;
  55. +   public int skill_point;
  56. +   public int hp;
  57. +   public int max_hp;
  58. +   public int sp;
  59. +   public int max_sp;
  60. +   public int option;
  61. +   public short manner;
  62. +   public int karma;
  63. +   public short hair;
  64. +   public short hair_color;
  65. +   public short clothes_color;
  66. +   public int party_id;
  67. +   public int guild_id;
  68. +   public int pet_id;
  69. +   public int hom_id;
  70. +   public int mer_id;
  71. +   public int fame;
  72. +   public int arch_faith;
  73. +   public int arch_calls;
  74. +   public int spear_faith;
  75. +   public int spear_calls;
  76. +   public int sword_faith;
  77. +   public int sword_calls;
  78. +   public short weapon;
  79. +   public short shield;
  80. +   public short head_top;
  81. +   public short head_mid;
  82. +   public short head_bottom;
  83. +   public String name;
  84. +   public int base_level;
  85. +   public int job_level;
  86. +   public short str;
  87. +   public short agi;
  88. +   public short vit;
  89. +   public short intel;
  90. +   public short dex;
  91. +   public short luk;
  92. +   public int slot;
  93. +   public int sex;
  94. +   public int mapip;
  95. +   public int mapport;
  96. +   public Point last_point;
  97. +   public Point save_point;
  98. +   public boolean show_equip;
  99. +   public short rename;
  100. +   public FastTable<Point> memoPoint;
  101. +   public FastTable<Item> inventory;
  102. +   public FastTable<Item> cart;
  103. +   public FastTable<Item> storage;
  104. +   public FastTable<Skill> skills;
  105. +   public Friend[] friends;
  106. +   public Hotkey[] hotkeys;
  107. +   public FastMap<String, String> globalReg;
  108. +
  109. +   public Clazz007382383094620344() {
  110. +   }
  111. +
  112. +   public static JOB parseFromValue(int val)
  113. +   {
  114. +       switch (val)
  115. +       {
  116. +       case 0:
  117. +           return JOB.NOVICE;
  118. +       case 1:
  119. +           return JOB.SWORDMAN;
  120. +       case 2:
  121. +           return JOB.MAGE;
  122. +       case 3:
  123. +           return JOB.ARCHER;
  124. +       case 4:
  125. +           return JOB.ACOLYTE;
  126. +       case 5:
  127. +           return JOB.MERCHANT;
  128. +       case 6:
  129. +           return JOB.THIEF;
  130. +       case 7:
  131. +           return JOB.KNIGHT;
  132. +       case 8:
  133. +           return JOB.PRIEST;
  134. +       case 9:
  135. +           return JOB.WIZARD;
  136. +       case 10:
  137. +           return JOB.BLACKSMITH;
  138. +       case 11:
  139. +           return JOB.HUNTER;
  140. +       case 12:
  141. +           return JOB.ASSASSIN;
  142. +       case 13:
  143. +           return JOB.KNIGHT2;
  144. +       case 14:
  145. +           return JOB.CRUSADER;
  146. +       case 15:
  147. +           return JOB.MONK;
  148. +       case 16:
  149. +           return JOB.SAGE;
  150. +       case 17:
  151. +           return JOB.ROGUE;
  152. +       case 18:
  153. +           return JOB.ALCHEMIST;
  154. +       case 19:
  155. +           return JOB.BARD;
  156. +       case 20:
  157. +           return JOB.DANCER;
  158. +       case 21:
  159. +           return JOB.CRUSADER2;
  160. +       case 22:
  161. +           return JOB.WEDDING;
  162. +       case 23:
  163. +           return JOB.SUPER_NOVICE;
  164. +       case 24:
  165. +           return JOB.GUNSLINGER;
  166. +       case 25:
  167. +           return JOB.NINJA;
  168. +       case 26:
  169. +           return JOB.XMAS;
  170. +       case 27:
  171. +           return JOB.SUMMER;
  172. +       case 28:
  173. +           return JOB.MAX_BASIC;
  174. +       case 4001:
  175. +           return JOB.NOVICE_HIGH;
  176. +       case 4002:
  177. +           return JOB.SWORDMAN_HIGH;
  178. +       case 4003:
  179. +           return JOB.MAGE_HIGH;
  180. +       case 4004:
  181. +           return JOB.ARCHER_HIGH;
  182. +       case 4005:
  183. +           return JOB.ACOLYTE_HIGH;
  184. +       case 4006:
  185. +           return JOB.MERCHANT_HIGH;
  186. +       case 4007:
  187. +           return JOB.THIEF_HIGH;
  188. +       case 4008:
  189. +           return JOB.LORD_KNIGHT;
  190. +  
  191. +       case 4009:
  192. +           return JOB.HIGH_PRIEST;
  193. +       case 4010:
  194. +           return JOB.HIGH_WIZARD;
  195. +       case 4011:
  196. +           return JOB.WHITESMITH;
  197. +       case 4012:
  198. +           return JOB.SNIPER;
  199. +       case 4013:
  200. +           return JOB.ASSASSIN_CROSS;
  201. +       case 4014:
  202. +           return JOB.LORD_KNIGHT2;
  203. +       case 4015:
  204. +           return JOB.PALADIN;
  205. +       case 4016:
  206. +           return JOB.CHAMPION;
  207. +       case 4017:
  208. +           return JOB.PROFESSOR;
  209. +       case 4018:
  210. +           return JOB.STALKER;
  211. +       case 4019:
  212. +           return JOB.CREATOR;
  213. +       case 4020:
  214. +           return JOB.CLOWN;
  215. +       case 4021:
  216. +           return JOB.GYPSY;
  217. +       case 4022:
  218. +           return JOB.PALADIN2;
  219. +       case 4023:
  220. +           return JOB.BABY;
  221. +       case 4024:
  222. +           return JOB.BABY_SWORDMAN;
  223. +       case 4025:
  224. +           return JOB.BABY_MAGE;
  225. +       case 4026:
  226. +           return JOB.BABY_ARCHER;
  227. +       case 4027:
  228. +           return JOB.BABY_ACOLYTE;
  229. +       case 4028:
  230. +           return JOB.BABY_MERCHANT;
  231. +       case 4029:
  232. +           return JOB.BABY_THIEF;
  233. +       case 4030:
  234. +           return JOB.BABY_KNIGHT;
  235. +       case 4031:
  236. +           return JOB.BABY_PRIEST;
  237. +       case 4032:
  238. +           return JOB.BABY_WIZARD;
  239. +       case 4033:
  240. +           return JOB.BABY_BLACKSMITH;
  241. +       case 4034:
  242. +           return JOB.BABY_HUNTER;
  243. +       case 4035:
  244. +           return JOB.BABY_ASSASSIN;
  245. +       case 4036:
  246. +           return JOB.BABY_KNIGHT2;
  247. +       case 4037:
  248. +           return JOB.BABY_CRUSADER;
  249. +       case 4038:
  250. +           return JOB.BABY_MONK;
  251. +       case 4039:
  252. +           return JOB.BABY_SAGE;
  253. +       case 4040:
  254. +           return JOB.BABY_ROGUE;
  255. +       case 4041:
  256. +           return JOB.BABY_ALCHEMIST;
  257. +       case 4042:
  258. +           return JOB.BABY_BARD;
  259. +       case 4043:
  260. +           return JOB.BABY_DANCER;
  261. +       case 4044:
  262. +           return JOB.BABY_CRUSADER2;
  263. +       case 4045:
  264. +           return JOB.SUPER_BABY;
  265. +       case 4046:
  266. +           return JOB.TAEKWON;
  267. +       case 4047:
  268. +           return JOB.STAR_GLADIATOR;
  269. +       case 4048:
  270. +           return JOB.STAR_GLADIATOR2;
  271. +       case 4049:
  272. +           return JOB.SOUL_LINKER;
  273. +       case 4050:
  274. +           return JOB.MAX;
  275. +       default:
  276. +           return null;
  277. +       }
  278. +  
  279. +   }
  280. +}
  281. \ No newline at end of file
  282. diff --git a/src/main/java/org/javathena/core/data/ROCharacter.java b/src/main/java/org/javathena/core/data/ROCharacter.java
  283. index 501eabb..4c1e60a 100644
  284. --- a/src/main/java/org/javathena/core/data/ROCharacter.java
  285. +++ b/src/main/java/org/javathena/core/data/ROCharacter.java
  286. @@ -26,175 +26,6 @@ public class ROCharacter
  287.         return this.value;
  288.     }
  289.  
  290. -   public static JOB parseFromValue(int val)
  291. -   {
  292. -       switch (val)
  293. -       {
  294. -       case 0:
  295. -           return NOVICE;
  296. -       case 1:
  297. -           return SWORDMAN;
  298. -       case 2:
  299. -           return MAGE;
  300. -       case 3:
  301. -           return ARCHER;
  302. -       case 4:
  303. -           return ACOLYTE;
  304. -       case 5:
  305. -           return MERCHANT;
  306. -       case 6:
  307. -           return THIEF;
  308. -       case 7:
  309. -           return KNIGHT;
  310. -       case 8:
  311. -           return PRIEST;
  312. -       case 9:
  313. -           return WIZARD;
  314. -       case 10:
  315. -           return BLACKSMITH;
  316. -       case 11:
  317. -           return HUNTER;
  318. -       case 12:
  319. -           return ASSASSIN;
  320. -       case 13:
  321. -           return KNIGHT2;
  322. -       case 14:
  323. -           return CRUSADER;
  324. -       case 15:
  325. -           return MONK;
  326. -       case 16:
  327. -           return SAGE;
  328. -       case 17:
  329. -           return ROGUE;
  330. -       case 18:
  331. -           return ALCHEMIST;
  332. -       case 19:
  333. -           return BARD;
  334. -       case 20:
  335. -           return DANCER;
  336. -       case 21:
  337. -           return CRUSADER2;
  338. -       case 22:
  339. -           return WEDDING;
  340. -       case 23:
  341. -           return SUPER_NOVICE;
  342. -       case 24:
  343. -           return GUNSLINGER;
  344. -       case 25:
  345. -           return NINJA;
  346. -       case 26:
  347. -           return XMAS;
  348. -       case 27:
  349. -           return SUMMER;
  350. -       case 28:
  351. -           return MAX_BASIC;
  352. -       case 4001:
  353. -           return NOVICE_HIGH;
  354. -       case 4002:
  355. -           return SWORDMAN_HIGH;
  356. -       case 4003:
  357. -           return MAGE_HIGH;
  358. -       case 4004:
  359. -           return ARCHER_HIGH;
  360. -       case 4005:
  361. -           return ACOLYTE_HIGH;
  362. -       case 4006:
  363. -           return MERCHANT_HIGH;
  364. -       case 4007:
  365. -           return THIEF_HIGH;
  366. -       case 4008:
  367. -           return LORD_KNIGHT;
  368. -
  369. -       case 4009:
  370. -           return HIGH_PRIEST;
  371. -       case 4010:
  372. -           return HIGH_WIZARD;
  373. -       case 4011:
  374. -           return WHITESMITH;
  375. -       case 4012:
  376. -           return SNIPER;
  377. -       case 4013:
  378. -           return ASSASSIN_CROSS;
  379. -       case 4014:
  380. -           return LORD_KNIGHT2;
  381. -       case 4015:
  382. -           return PALADIN;
  383. -       case 4016:
  384. -           return CHAMPION;
  385. -       case 4017:
  386. -           return PROFESSOR;
  387. -       case 4018:
  388. -           return STALKER;
  389. -       case 4019:
  390. -           return CREATOR;
  391. -       case 4020:
  392. -           return CLOWN;
  393. -       case 4021:
  394. -           return GYPSY;
  395. -       case 4022:
  396. -           return PALADIN2;
  397. -       case 4023:
  398. -           return BABY;
  399. -       case 4024:
  400. -           return BABY_SWORDMAN;
  401. -       case 4025:
  402. -           return BABY_MAGE;
  403. -       case 4026:
  404. -           return BABY_ARCHER;
  405. -       case 4027:
  406. -           return BABY_ACOLYTE;
  407. -       case 4028:
  408. -           return BABY_MERCHANT;
  409. -       case 4029:
  410. -           return BABY_THIEF;
  411. -       case 4030:
  412. -           return BABY_KNIGHT;
  413. -       case 4031:
  414. -           return BABY_PRIEST;
  415. -       case 4032:
  416. -           return BABY_WIZARD;
  417. -       case 4033:
  418. -           return BABY_BLACKSMITH;
  419. -       case 4034:
  420. -           return BABY_HUNTER;
  421. -       case 4035:
  422. -           return BABY_ASSASSIN;
  423. -       case 4036:
  424. -           return BABY_KNIGHT2;
  425. -       case 4037:
  426. -           return BABY_CRUSADER;
  427. -       case 4038:
  428. -           return BABY_MONK;
  429. -       case 4039:
  430. -           return BABY_SAGE;
  431. -       case 4040:
  432. -           return BABY_ROGUE;
  433. -       case 4041:
  434. -           return BABY_ALCHEMIST;
  435. -       case 4042:
  436. -           return BABY_BARD;
  437. -       case 4043:
  438. -           return BABY_DANCER;
  439. -       case 4044:
  440. -           return BABY_CRUSADER2;
  441. -       case 4045:
  442. -           return SUPER_BABY;
  443. -       case 4046:
  444. -           return TAEKWON;
  445. -       case 4047:
  446. -           return STAR_GLADIATOR;
  447. -       case 4048:
  448. -           return STAR_GLADIATOR2;
  449. -       case 4049:
  450. -           return SOUL_LINKER;
  451. -       case 4050:
  452. -           return MAX;
  453. -       default:
  454. -           return null;
  455. -       }
  456. -
  457. -   }
  458. -
  459.     private int value;
  460.      };
  461.  
  462. @@ -202,779 +33,697 @@ public class ROCharacter
  463.  
  464.      public static final int MAX_HOTKEY = 38;
  465.  
  466. -    private int char_id;
  467. -    private int account_id;
  468. -    private int partner_id;
  469. -    private int father;
  470. -    private int mother;
  471. -    private int child;
  472. -
  473. -    private int base_exp, job_exp;
  474. -    private int zeny;
  475. -
  476. -    private JOB class_;
  477. -
  478. -    private int status_point;
  479. -    private int skill_point;
  480. -
  481. -    private int hp;
  482. -    private int max_hp;
  483. -
  484. -    private int sp;
  485. -    private int max_sp;
  486. -
  487. -    private int option;
  488. -    private short manner;
  489. -    private int karma;
  490. -
  491. -    private short hair;
  492. -    private short hair_color;
  493. -    private short clothes_color;
  494. -
  495. -    private int party_id;
  496. -    private int guild_id;
  497. -    private int pet_id;
  498. -    private int hom_id;
  499. -    private int mer_id;
  500. -    private int fame;
  501. -
  502. -    // Mercenary Guilds Rank
  503. -    private int arch_faith;
  504. -    private int arch_calls;
  505. -    private int spear_faith;
  506. -    private int spear_calls;
  507. -    private int sword_faith;
  508. -    private int sword_calls;
  509. -
  510. -    private short weapon; // enum weapon_type
  511. -    private short shield; // view-id
  512. -    private short head_top;
  513. -    private short head_mid;
  514. -    private short head_bottom;
  515. -
  516. -    private String name;
  517. -    private int base_level;
  518. -    private int job_level;
  519. -    private short str;
  520. -    private short agi;
  521. -    private short vit;
  522. -    private short intel;
  523. -    private short dex;
  524. -    private short luk;
  525. -    private int slot;
  526. -    private int sex;
  527. -    private int mapip;
  528. -    private int mapport;
  529. -
  530. -    private Point last_point;
  531. -    private Point save_point;
  532. -
  533. -    private boolean show_equip;
  534. -    private short rename;
  535. -
  536. -    private FastTable<Point> memoPoint;
  537. -    private FastTable<Item> inventory;
  538. -    private FastTable<Item> cart;
  539. -    private FastTable<Item> storage;
  540. -    // struct storage_data storage;
  541. -    private FastTable<Skill> skills;
  542. -
  543. -    private Friend friends[]; // New friend system [Skotlex]
  544. -
  545. -    private Hotkey hotkeys[];
  546. -
  547. -    // @XStreamOmitField
  548. -    private FastMap<String, String> globalReg;
  549. -
  550. -    public ROCharacter()
  551. -    {
  552. -   memoPoint = new FastTable<Point>();
  553. -   inventory = new FastTable<Item>();
  554. -   cart = new FastTable<Item>();
  555. -   storage = new FastTable<Item>();
  556. -   skills = new FastTable<Skill>();
  557. -   globalReg = new FastMap<String, String>();
  558. -   friends = new Friend[MAX_FRIENDS];
  559. +    private Clazz007382383094620344 Clazz007382383094620344 = new Clazz007382383094620344();
  560. +
  561. +   public ROCharacter()
  562. +    {
  563. +   Clazz007382383094620344.memoPoint = new FastTable<Point>();
  564. +   Clazz007382383094620344.inventory = new FastTable<Item>();
  565. +   Clazz007382383094620344.cart = new FastTable<Item>();
  566. +   Clazz007382383094620344.storage = new FastTable<Item>();
  567. +   Clazz007382383094620344.skills = new FastTable<Skill>();
  568. +   Clazz007382383094620344.globalReg = new FastMap<String, String>();
  569. +   Clazz007382383094620344.friends = new Friend[MAX_FRIENDS];
  570.      }
  571.  
  572.      public void addGlobalReg(String key, String value)
  573.      {
  574. -   globalReg.put(key, value);
  575. +   Clazz007382383094620344.globalReg.put(key, value);
  576.      }
  577.  
  578.      public short getIntel()
  579.      {
  580. -   return intel;
  581. +   return Clazz007382383094620344.intel;
  582.      }
  583.  
  584.      public void setIntel(short intel)
  585.      {
  586. -   this.intel = intel;
  587. +   this.Clazz007382383094620344.intel = intel;
  588.      }
  589.  
  590.      public FastTable<Item> getInventory()
  591.      {
  592. -   return inventory;
  593. +   return Clazz007382383094620344.inventory;
  594.      }
  595.  
  596.      public void setInventory(FastTable<Item> inventory)
  597.      {
  598. -   this.inventory = inventory;
  599. +   this.Clazz007382383094620344.inventory = inventory;
  600.      }
  601.  
  602.      public FastTable<Item> getCart()
  603.      {
  604. -   return cart;
  605. +   return Clazz007382383094620344.cart;
  606.      }
  607.  
  608.      public void setCart(FastTable<Item> cart)
  609.      {
  610. -   this.cart = cart;
  611. +   this.Clazz007382383094620344.cart = cart;
  612.      }
  613.  
  614.      public int getChar_id()
  615.      {
  616. -   return char_id;
  617. +   return Clazz007382383094620344.char_id;
  618.      }
  619.  
  620.      public void setChar_id(int char_id)
  621.      {
  622. -   this.char_id = char_id;
  623. +   this.Clazz007382383094620344.char_id = char_id;
  624.      }
  625.  
  626.      public int getAccount_id()
  627.      {
  628. -   return account_id;
  629. +   return Clazz007382383094620344.account_id;
  630.      }
  631.  
  632.      public void setAccount_id(int account_id)
  633.      {
  634. -   this.account_id = account_id;
  635. +   this.Clazz007382383094620344.account_id = account_id;
  636.      }
  637.  
  638.      public int getPartner_id()
  639.      {
  640. -   return partner_id;
  641. +   return Clazz007382383094620344.partner_id;
  642.      }
  643.  
  644.      public void setPartner_id(int partner_id)
  645.      {
  646. -   this.partner_id = partner_id;
  647. +   this.Clazz007382383094620344.partner_id = partner_id;
  648.      }
  649.  
  650.      public int getFather()
  651.      {
  652. -   return father;
  653. +   return Clazz007382383094620344.father;
  654.      }
  655.  
  656.      public void setFather(int father)
  657.      {
  658. -   this.father = father;
  659. +   this.Clazz007382383094620344.father = father;
  660.      }
  661.  
  662.      public int getMother()
  663.      {
  664. -   return mother;
  665. +   return Clazz007382383094620344.mother;
  666.      }
  667.  
  668.      public void setMother(int mother)
  669.      {
  670. -   this.mother = mother;
  671. +   this.Clazz007382383094620344.mother = mother;
  672.      }
  673.  
  674.      public int getChild()
  675.      {
  676. -   return child;
  677. +   return Clazz007382383094620344.child;
  678.      }
  679.  
  680.      public void setChild(int child)
  681.      {
  682. -   this.child = child;
  683. +   this.Clazz007382383094620344.child = child;
  684.      }
  685.  
  686.      public int getBase_exp()
  687.      {
  688. -   return base_exp;
  689. +   return Clazz007382383094620344.base_exp;
  690.      }
  691.  
  692.      public void setBase_exp(int base_exp)
  693.      {
  694. -   this.base_exp = base_exp;
  695. +   this.Clazz007382383094620344.base_exp = base_exp;
  696.      }
  697.  
  698.      public int getJob_exp()
  699.      {
  700. -   return job_exp;
  701. +   return Clazz007382383094620344.job_exp;
  702.      }
  703.  
  704.      public void setJob_exp(int job_exp)
  705.      {
  706. -   this.job_exp = job_exp;
  707. +   this.Clazz007382383094620344.job_exp = job_exp;
  708.      }
  709.  
  710.      public int getZeny()
  711.      {
  712. -   return zeny;
  713. +   return Clazz007382383094620344.zeny;
  714.      }
  715.  
  716.      public void setZeny(int zeny)
  717.      {
  718. -   this.zeny = zeny;
  719. +   this.Clazz007382383094620344.zeny = zeny;
  720.      }
  721.  
  722.      public JOB getClass_()
  723.      {
  724. -   return class_;
  725. +   return Clazz007382383094620344.class_;
  726.      }
  727.  
  728.      public void setClass_(JOB class_)
  729.      {
  730. -   this.class_ = class_;
  731. +   this.Clazz007382383094620344.class_ = class_;
  732.      }
  733.  
  734.      public int getStatus_point()
  735.      {
  736. -   return status_point;
  737. +   return Clazz007382383094620344.status_point;
  738.      }
  739.  
  740.      public void setStatus_point(int status_point)
  741.      {
  742. -   this.status_point = status_point;
  743. +   this.Clazz007382383094620344.status_point = status_point;
  744.      }
  745.  
  746.      public int getSkill_point()
  747.      {
  748. -   return skill_point;
  749. +   return Clazz007382383094620344.skill_point;
  750.      }
  751.  
  752.      public void setSkill_point(int skill_point)
  753.      {
  754. -   this.skill_point = skill_point;
  755. +   this.Clazz007382383094620344.skill_point = skill_point;
  756.      }
  757.  
  758.      public int getHp()
  759.      {
  760. -   return hp;
  761. +   return Clazz007382383094620344.hp;
  762.      }
  763.  
  764.      public void setHp(int hp)
  765.      {
  766. -   this.hp = hp;
  767. +   this.Clazz007382383094620344.hp = hp;
  768.      }
  769.  
  770.      public int getMax_hp()
  771.      {
  772. -   return max_hp;
  773. +   return Clazz007382383094620344.max_hp;
  774.      }
  775.  
  776.      public void setMax_hp(int max_hp)
  777.      {
  778. -   this.max_hp = max_hp;
  779. +   this.Clazz007382383094620344.max_hp = max_hp;
  780.      }
  781.  
  782.      public int getSp()
  783.      {
  784. -   return sp;
  785. +   return Clazz007382383094620344.sp;
  786.      }
  787.  
  788.      public void setSp(int sp)
  789.      {
  790. -   this.sp = sp;
  791. +   this.Clazz007382383094620344.sp = sp;
  792.      }
  793.  
  794.      public int getMax_sp()
  795.      {
  796. -   return max_sp;
  797. +   return Clazz007382383094620344.max_sp;
  798.      }
  799.  
  800.      public void setMax_sp(int max_sp)
  801.      {
  802. -   this.max_sp = max_sp;
  803. +   this.Clazz007382383094620344.max_sp = max_sp;
  804.      }
  805.  
  806.      public int getOption()
  807.      {
  808. -   return option;
  809. +   return Clazz007382383094620344.option;
  810.      }
  811.  
  812.      public void setOption(int option)
  813.      {
  814. -   this.option = option;
  815. +   this.Clazz007382383094620344.option = option;
  816.      }
  817.  
  818.      public short getManner()
  819.      {
  820. -   return manner;
  821. +   return Clazz007382383094620344.manner;
  822.      }
  823.  
  824.      public void setManner(short manner)
  825.      {
  826. -   this.manner = manner;
  827. +   this.Clazz007382383094620344.manner = manner;
  828.      }
  829.  
  830.      public int getKarma()
  831.      {
  832. -   return karma;
  833. +   return Clazz007382383094620344.karma;
  834.      }
  835.  
  836.      public void setKarma(int karma)
  837.      {
  838. -   this.karma = karma;
  839. +   this.Clazz007382383094620344.karma = karma;
  840.      }
  841.  
  842.      public short getHair()
  843.      {
  844. -   return hair;
  845. +   return Clazz007382383094620344.hair;
  846.      }
  847.  
  848.      public void setHair(short hair)
  849.      {
  850. -   this.hair = hair;
  851. +   this.Clazz007382383094620344.hair = hair;
  852.      }
  853.  
  854.      public short getHair_color()
  855.      {
  856. -   return hair_color;
  857. +   return Clazz007382383094620344.hair_color;
  858.      }
  859.  
  860.      public void setHair_color(short hair_color)
  861.      {
  862. -   this.hair_color = hair_color;
  863. +   this.Clazz007382383094620344.hair_color = hair_color;
  864.      }
  865.  
  866.      public short getClothes_color()
  867.      {
  868. -   return clothes_color;
  869. +   return Clazz007382383094620344.clothes_color;
  870.      }
  871.  
  872.      public void setClothes_color(short clothes_color)
  873.      {
  874. -   this.clothes_color = clothes_color;
  875. +   this.Clazz007382383094620344.clothes_color = clothes_color;
  876.      }
  877.  
  878.      public int getParty_id()
  879.      {
  880. -   return party_id;
  881. +   return Clazz007382383094620344.party_id;
  882.      }
  883.  
  884.      public void setParty_id(int party_id)
  885.      {
  886. -   this.party_id = party_id;
  887. +   this.Clazz007382383094620344.party_id = party_id;
  888.      }
  889.  
  890.      public int getGuild_id()
  891.      {
  892. -   return guild_id;
  893. +   return Clazz007382383094620344.guild_id;
  894.      }
  895.  
  896.      public void setGuild_id(int guild_id)
  897.      {
  898. -   this.guild_id = guild_id;
  899. +   this.Clazz007382383094620344.guild_id = guild_id;
  900.      }
  901.  
  902.      public int getPet_id()
  903.      {
  904. -   return pet_id;
  905. +   return Clazz007382383094620344.pet_id;
  906.      }
  907.  
  908.      public void setPet_id(int pet_id)
  909.      {
  910. -   this.pet_id = pet_id;
  911. +   this.Clazz007382383094620344.pet_id = pet_id;
  912.      }
  913.  
  914.      public int getHom_id()
  915.      {
  916. -   return hom_id;
  917. +   return Clazz007382383094620344.hom_id;
  918.      }
  919.  
  920.      public void setHom_id(int hom_id)
  921.      {
  922. -   this.hom_id = hom_id;
  923. +   this.Clazz007382383094620344.hom_id = hom_id;
  924.      }
  925.  
  926.      public int getMer_id()
  927.      {
  928. -   return mer_id;
  929. +   return Clazz007382383094620344.mer_id;
  930.      }
  931.  
  932.      public void setMer_id(int mer_id)
  933.      {
  934. -   this.mer_id = mer_id;
  935. +   this.Clazz007382383094620344.mer_id = mer_id;
  936.      }
  937.  
  938.      public int getFame()
  939.      {
  940. -   return fame;
  941. +   return Clazz007382383094620344.fame;
  942.      }
  943.  
  944.      public void setFame(int fame)
  945.      {
  946. -   this.fame = fame;
  947. +   this.Clazz007382383094620344.fame = fame;
  948.      }
  949.  
  950.      public int getArch_faith()
  951.      {
  952. -   return arch_faith;
  953. +   return Clazz007382383094620344.arch_faith;
  954.      }
  955.  
  956.      public void setArch_faith(int arch_faith)
  957.      {
  958. -   this.arch_faith = arch_faith;
  959. +   this.Clazz007382383094620344.arch_faith = arch_faith;
  960.      }
  961.  
  962.      public int getArch_calls()
  963.      {
  964. -   return arch_calls;
  965. +   return Clazz007382383094620344.arch_calls;
  966.      }
  967.  
  968.      public void setArch_calls(int arch_calls)
  969.      {
  970. -   this.arch_calls = arch_calls;
  971. +   this.Clazz007382383094620344.arch_calls = arch_calls;
  972.      }
  973.  
  974.      public int getSpear_faith()
  975.      {
  976. -   return spear_faith;
  977. +   return Clazz007382383094620344.spear_faith;
  978.      }
  979.  
  980.      public void setSpear_faith(int spear_faith)
  981.      {
  982. -   this.spear_faith = spear_faith;
  983. +   this.Clazz007382383094620344.spear_faith = spear_faith;
  984.      }
  985.  
  986.      public int getSpear_calls()
  987.      {
  988. -   return spear_calls;
  989. +   return Clazz007382383094620344.spear_calls;
  990.      }
  991.  
  992.      public void setSpear_calls(int spear_calls)
  993.      {
  994. -   this.spear_calls = spear_calls;
  995. +   this.Clazz007382383094620344.spear_calls = spear_calls;
  996.      }
  997.  
  998.      public int getSword_faith()
  999.      {
  1000. -   return sword_faith;
  1001. +   return Clazz007382383094620344.sword_faith;
  1002.      }
  1003.  
  1004.      public void setSword_faith(int sword_faith)
  1005.      {
  1006. -   this.sword_faith = sword_faith;
  1007. +   this.Clazz007382383094620344.sword_faith = sword_faith;
  1008.      }
  1009.  
  1010.      public int getSword_calls()
  1011.      {
  1012. -   return sword_calls;
  1013. +   return Clazz007382383094620344.sword_calls;
  1014.      }
  1015.  
  1016.      public void setSword_calls(int sword_calls)
  1017.      {
  1018. -   this.sword_calls = sword_calls;
  1019. +   this.Clazz007382383094620344.sword_calls = sword_calls;
  1020.      }
  1021.  
  1022.      public short getWeapon()
  1023.      {
  1024. -   return weapon;
  1025. +   return Clazz007382383094620344.weapon;
  1026.      }
  1027.  
  1028.      public void setWeapon(short weapon)
  1029.      {
  1030. -   this.weapon = weapon;
  1031. +   this.Clazz007382383094620344.weapon = weapon;
  1032.      }
  1033.  
  1034.      public short getShield()
  1035.      {
  1036. -   return shield;
  1037. +   return Clazz007382383094620344.shield;
  1038.      }
  1039.  
  1040.      public void setShield(short shield)
  1041.      {
  1042. -   this.shield = shield;
  1043. +   this.Clazz007382383094620344.shield = shield;
  1044.      }
  1045.  
  1046.      public short getHead_top()
  1047.      {
  1048. -   return head_top;
  1049. +   return Clazz007382383094620344.head_top;
  1050.      }
  1051.  
  1052.      public void setHead_top(short head_top)
  1053.      {
  1054. -   this.head_top = head_top;
  1055. +   this.Clazz007382383094620344.head_top = head_top;
  1056.      }
  1057.  
  1058.      public short getHead_mid()
  1059.      {
  1060. -   return head_mid;
  1061. +   return Clazz007382383094620344.head_mid;
  1062.      }
  1063.  
  1064.      public void setHead_mid(short head_mid)
  1065.      {
  1066. -   this.head_mid = head_mid;
  1067. +   this.Clazz007382383094620344.head_mid = head_mid;
  1068.      }
  1069.  
  1070.      public short getHead_bottom()
  1071.      {
  1072. -   return head_bottom;
  1073. +   return Clazz007382383094620344.head_bottom;
  1074.      }
  1075.  
  1076.      public void setHead_bottom(short head_bottom)
  1077.      {
  1078. -   this.head_bottom = head_bottom;
  1079. +   this.Clazz007382383094620344.head_bottom = head_bottom;
  1080.      }
  1081.  
  1082.      public String getName()
  1083.      {
  1084. -   return name;
  1085. +   return Clazz007382383094620344.name;
  1086.      }
  1087.  
  1088.      public void setName(String name)
  1089.      {
  1090. -   this.name = name;
  1091. +   this.Clazz007382383094620344.name = name;
  1092.      }
  1093.  
  1094.      public int getBase_level()
  1095.      {
  1096. -   return base_level;
  1097. +   return Clazz007382383094620344.base_level;
  1098.      }
  1099.  
  1100.      public void setBase_level(int base_level)
  1101.      {
  1102. -   this.base_level = base_level;
  1103. +   this.Clazz007382383094620344.base_level = base_level;
  1104.      }
  1105.  
  1106.      public int getJob_level()
  1107.      {
  1108. -   return job_level;
  1109. +   return Clazz007382383094620344.job_level;
  1110.      }
  1111.  
  1112.      public void setJob_level(int job_level)
  1113.      {
  1114. -   this.job_level = job_level;
  1115. +   this.Clazz007382383094620344.job_level = job_level;
  1116.      }
  1117.  
  1118.      public short getStr()
  1119.      {
  1120. -   return str;
  1121. +   return Clazz007382383094620344.str;
  1122.      }
  1123.  
  1124.      public void setStr(short str)
  1125.      {
  1126. -   this.str = str;
  1127. +   this.Clazz007382383094620344.str = str;
  1128.      }
  1129.  
  1130.      public short getAgi()
  1131.      {
  1132. -   return agi;
  1133. +   return Clazz007382383094620344.agi;
  1134.      }
  1135.  
  1136.      public void setAgi(short agi)
  1137.      {
  1138. -   this.agi = agi;
  1139. +   this.Clazz007382383094620344.agi = agi;
  1140.      }
  1141.  
  1142.      public short getVit()
  1143.      {
  1144. -   return vit;
  1145. +   return Clazz007382383094620344.vit;
  1146.      }
  1147.  
  1148.      public void setVit(short vit)
  1149.      {
  1150. -   this.vit = vit;
  1151. +   this.Clazz007382383094620344.vit = vit;
  1152.      }
  1153.  
  1154.      public short getInt()
  1155.      {
  1156. -   return intel;
  1157. +   return Clazz007382383094620344.intel;
  1158.      }
  1159.  
  1160.      public void setInt(short int_)
  1161.      {
  1162. -   this.intel = int_;
  1163. +   this.Clazz007382383094620344.intel = int_;
  1164.      }
  1165.  
  1166.      public short getDex()
  1167.      {
  1168. -   return dex;
  1169. +   return Clazz007382383094620344.dex;
  1170.      }
  1171.  
  1172.      public void setDex(short dex)
  1173.      {
  1174. -   this.dex = dex;
  1175. +   this.Clazz007382383094620344.dex = dex;
  1176.      }
  1177.  
  1178.      public short getLuk()
  1179.      {
  1180. -   return luk;
  1181. +   return Clazz007382383094620344.luk;
  1182.      }
  1183.  
  1184.      public void setLuk(short luk)
  1185.      {
  1186. -   this.luk = luk;
  1187. +   this.Clazz007382383094620344.luk = luk;
  1188.      }
  1189.  
  1190.      public int getSlot()
  1191.      {
  1192. -   return slot;
  1193. +   return Clazz007382383094620344.slot;
  1194.      }
  1195.  
  1196.      public void setSlot(int slot)
  1197.      {
  1198. -   this.slot = slot;
  1199. +   this.Clazz007382383094620344.slot = slot;
  1200.      }
  1201.  
  1202.      public int getSex()
  1203.      {
  1204. -   return sex;
  1205. +   return Clazz007382383094620344.sex;
  1206.      }
  1207.  
  1208.      public void setSex(char sex)
  1209.      {
  1210. -   this.sex = sex;
  1211. +   this.Clazz007382383094620344.sex = sex;
  1212.      }
  1213.  
  1214.      public int getMapip()
  1215.      {
  1216. -   return mapip;
  1217. +   return Clazz007382383094620344.mapip;
  1218.      }
  1219.  
  1220.      public void setMapip(int mapip)
  1221.      {
  1222. -   this.mapip = mapip;
  1223. +   this.Clazz007382383094620344.mapip = mapip;
  1224.      }
  1225.  
  1226.      public int getMapport()
  1227.      {
  1228. -   return mapport;
  1229. +   return Clazz007382383094620344.mapport;
  1230.      }
  1231.  
  1232.      public void setMapport(int mapport)
  1233.      {
  1234. -   this.mapport = mapport;
  1235. +   this.Clazz007382383094620344.mapport = mapport;
  1236.      }
  1237.  
  1238.      public Point getLast_point()
  1239.      {
  1240. -   return last_point;
  1241. +   return Clazz007382383094620344.last_point;
  1242.      }
  1243.  
  1244.      public void setLast_point(Point last_point)
  1245.      {
  1246. -   this.last_point = last_point;
  1247. +   this.Clazz007382383094620344.last_point = last_point;
  1248.      }
  1249.  
  1250.      public Point getSave_point()
  1251.      {
  1252. -   return save_point;
  1253. +   return Clazz007382383094620344.save_point;
  1254.      }
  1255.  
  1256.      public void setSave_point(Point save_point)
  1257.      {
  1258. -   this.save_point = save_point;
  1259. +   this.Clazz007382383094620344.save_point = save_point;
  1260.      }
  1261.  
  1262.      public void addPoint(Point nPoint)
  1263.      {
  1264. -   memoPoint.add(nPoint);
  1265. +   Clazz007382383094620344.memoPoint.add(nPoint);
  1266.      }
  1267.  
  1268.      public Point getPoint(int index)
  1269.      {
  1270. -   return memoPoint.get(index);
  1271. +   return Clazz007382383094620344.memoPoint.get(index);
  1272.      }
  1273.  
  1274.      public FastTable<Point> getMemoPoints()
  1275.      {
  1276. -   return memoPoint;
  1277. +   return Clazz007382383094620344.memoPoint;
  1278.      }
  1279.  
  1280.      public void setMemoPoints(FastTable<Point> memo_point)
  1281.      {
  1282. -   this.memoPoint = memo_point;
  1283. +   this.Clazz007382383094620344.memoPoint = memo_point;
  1284.      }
  1285.  
  1286.      public boolean isShow_equip()
  1287.      {
  1288. -   return show_equip;
  1289. +   return Clazz007382383094620344.show_equip;
  1290.      }
  1291.  
  1292.      public void setShow_equip(boolean show_equip)
  1293.      {
  1294. -   this.show_equip = show_equip;
  1295. +   this.Clazz007382383094620344.show_equip = show_equip;
  1296.      }
  1297.  
  1298.      public short getRename()
  1299.      {
  1300. -   return rename;
  1301. +   return Clazz007382383094620344.rename;
  1302.      }
  1303.  
  1304.      public void setRename(short rename)
  1305.      {
  1306. -   this.rename = rename;
  1307. +   this.Clazz007382383094620344.rename = rename;
  1308.      }
  1309.  
  1310.      public FastTable<Item> getStorage()
  1311.      {
  1312. -   return storage;
  1313. +   return Clazz007382383094620344.storage;
  1314.      }
  1315.  
  1316.      public void setStorage(FastTable<Item> storage)
  1317.      {
  1318. -   this.storage = storage;
  1319. +   this.Clazz007382383094620344.storage = storage;
  1320.      }
  1321.  
  1322.      public void addSkill(Skill nSkill)
  1323.      {
  1324. -   this.skills.add(nSkill);
  1325. +   this.Clazz007382383094620344.skills.add(nSkill);
  1326.      }
  1327.  
  1328.      public FastTable<Skill> getSkill()
  1329.      {
  1330. -   return skills;
  1331. +   return Clazz007382383094620344.skills;
  1332.      }
  1333.  
  1334.      public void setSkill(FastTable<Skill> skills)
  1335.      {
  1336. -   this.skills = skills;
  1337. +   this.Clazz007382383094620344.skills = skills;
  1338.      }
  1339.  
  1340.      public Friend[] getFriends()
  1341.      {
  1342. -   return friends;
  1343. +   return Clazz007382383094620344.friends;
  1344.      }
  1345.  
  1346.      public void setFriends(Friend[] friends)
  1347.      {
  1348. -   this.friends = friends;
  1349. +   this.Clazz007382383094620344.friends = friends;
  1350.      }
  1351.  
  1352.      public Hotkey[] getHotkeys()
  1353.      {
  1354. -   return hotkeys;
  1355. +   return Clazz007382383094620344.hotkeys;
  1356.      }
  1357.  
  1358.      public void setHotkeys(Hotkey[] hotkeys)
  1359.      {
  1360. -   this.hotkeys = hotkeys;
  1361. +   this.Clazz007382383094620344.hotkeys = hotkeys;
  1362.      }
  1363.  
  1364.      public void addInventoryItem(Item nItem)
  1365.      {
  1366. -   inventory.add(nItem);
  1367. +   Clazz007382383094620344.inventory.add(nItem);
  1368.      }
  1369.  
  1370.      public Item getInventoryItem(int ind)
  1371.      {
  1372. -   return inventory.get(ind);
  1373. +   return Clazz007382383094620344.inventory.get(ind);
  1374.      }
  1375.  
  1376.      public void addCartItem(Item nItem)
  1377.      {
  1378. -   cart.add(nItem);
  1379. +   Clazz007382383094620344.cart.add(nItem);
  1380.      }
  1381.  
  1382.      public Item getCartItem(int ind)
  1383.      {
  1384. -   return cart.get(ind);
  1385. +   return Clazz007382383094620344.cart.get(ind);
  1386.      }
  1387.  
  1388.      public static void setPersistenceMethod(PersistenteData<IndexedFastMap<Integer, ROCharacter>> aPersistenceMethod)
  1389. @@ -989,13 +738,13 @@ public class ROCharacter
  1390.  
  1391.      public void addFriend(Friend friend, int index)
  1392.      {
  1393. -   this.friends[index] = friend;
  1394. +   this.Clazz007382383094620344.friends[index] = friend;
  1395.  
  1396.      }
  1397.  
  1398.      public void addHotkey(Hotkey hotkey, int index)
  1399.      {
  1400. -   this.hotkeys[index] = hotkey;
  1401. +   this.Clazz007382383094620344.hotkeys[index] = hotkey;
  1402.  
  1403.      }