Jump to content

Zake

Global Moderator
  • Posts

    5,304
  • Credits

  • Joined

  • Last visited

  • Days Won

    13
  • Feedback

    100%

Everything posted by Zake

  1. You can just use normal npc table, there is no difference
  2. At first make sure that you have imported this as a java project and not as a general project. Then go to eclipse and 1) Window -> preferences -> Java -> Installed JREs -> Add -> select path -> Apply and Close 2) Right click on your project -> Java build path -> Libraries -> double click on JRE System library -> alternate JRE -> select your desired java version (which will be 11 on your case). 3) Right click on your project again -> properties ->Java compiler -> Tick "Enable project specific settings if it's not -> then select your desired "Comiler compliance level" (11 on your case too). 4) Single left click on your project -> Source (top left of eclipse window) -> Clean up -> next -> next bla bla -> finish 5) Right click on build.xml -> Run as -> External Tools Configurations -> JRE -> Separate JRE -> JDK 11 -> apply -> run After all this procedure a single step would be fine in order to compile your project which will be "right click on build.xml -> run as -> 1 ant build
  3. Μπορείς να γίνεις λίγο πιο συγκεκριμένος;
  4. This doesn't make any sense, you have probably forgot to move some file(s).
  5. Try to give more width to your table data..
  6. Maybe he did a mass replace for a text and messed up things
  7. I may have misunderstood his problem, but i think he is trying to say that it doesn't display any dye slot. As far as i remember on interlude client dyes were displayed dynamically until you reach 3rd class (limited to 3). Here is a code fragment from public acis https://prnt.sc/Cf40rxRa4ew7
  8. Either compile your project using an older java version or install jdk 18
  9. Well, let's just ignore almost everything and stick to your only change. You don't have to loop through all the weapons in order to get the item name. You also don't have to change your weapons map from temporary variable to a constant (public static). Since your only concern is the item name you can just make it like final Item itemTemplate = ItemData.getInstance().getTemplate(id here); final String itemName = itemTemplate.getName();
  10. You have 24 hours of random time for each raid boss, it would be almost impossible to have the same respawn time for all bosses.
  11. Well, when it comes to decision making it's all about your goals.
×
×
  • Create New...