Jump to content

SweeTs

Legendary Member
  • Posts

    8,941
  • Credits

  • Joined

  • Last visited

  • Days Won

    25
  • Feedback

    0%

Everything posted by SweeTs

  1. Depends. You would stop average player who use clickers and such, you can get the HWID and limit client boxes.
  2. Locked. Topic exist in proper section. If you want I can move this one and lock/junk another one.
  3. Are you sure? Since Logout packet is fired while exit.
  4. " Well, basically Z value depends of the territory shape, if it's plat or bumpy, are there mountains or not. If it's plat, more or less, you should be fine with +-100 from the basic value generated from /loc. You can add bigger to be 100% sure that when someone ride the strider, fly with wyvern, will not leave your zone. " Take a look on the middle position. If you set the min/max too low, when you do a step you will leave the zone (for example, mount the wivern or ride the strider - the Z is higher, boom you are not inside the zone anymore).
  5. Client section. You posted in wrong section before :)
  6. NO SQL ~.~ Take any line from existing armor and change ID / name. Locked.
  7. Could be something inside Logout.java
  8. All you have to change is this.. Like this, I have created a config for myself. /* * Returns true if this PlayerClass is allowed for master */ public final boolean checkVillageMaster(PlayerClass pclass) { if (Config.ALT_GAME_SUBCLASS_EVERYWHERE) return true; return checkVillageMasterRace(pclass) && checkVillageMasterTeachType(pclass); }
  9. I have similar pov, except customs. Ppl think that they will be with op stats.. But they are wrong :P
  10. Moved to client. I doubt you will find it :P
  11. You know that its your like 5th the same topic?
  12. Yes and no. If Erlandys don't mind then you are free to do w/e you wish. If otherwise, then you know.. It's like, I'd pay once, for example, 10e for "something" and then I'd massively resell it. I paid 10e and I earned x10 the price while I did nothing. Legit.
  13. If you would use google.. First result or 2nd if you put "l2j" instead of "mxc".. http://bit.ly/1CGl8Mr
  14. Huehue.. is the method like this? + public void rewardAioSkills() + { + L2Skill skill; + for (Integer skillid : Config.AIO_SKILLS.keySet()) + { + int skilllvl = Config.AIO_SKILLS.get(skillid); + skill = SkillTable.getInstance().getInfo(skillid,skilllvl); + + if(skill != null) + addSkill(skill, true); + } + } You miss the null check, else you added to the properties a skill id or lvl that desn't exist. You should check my latest cleanup, I dropped some crappy, useless code.. :P
  15. Use search, some links must still be up. Else try to find them on your own, those are mobs weapons.. :P Moved.
  16. if (addPvp((L2Playable)target) I doubt you need that (L2Playable), drop it. Add word final to the boolean.
  17. Looks like you don't know what you are talking about. You have to enable the configs to make geo work.. No matter the geodata if the geoengine (pack) is crappy.
  18. "Debug mode" is not "debug = true" from config :happyforever: Debug mode from eclipse allows you to run the server from the workspace, real time changes. You have to recompile the core and switch the l2jserver.jar /lib folder.
  19. I/we don't care about the code. If you want help provide necessary info and create a request help topic @ proper section.
  20. What exactly says the error? You should not have it. html.replace("%objectId%", String.valueOf(getObjectId()));
  21. Open any L2XXInstance.java from gameserver/model/actor/instance and check onBypassFeedback method, for example if (currentCommand.equalsIgnoreCase("level")) { player.setLevel(78); //fake method } Then you put the "level" into the html and voila. <a action="bypass -h npc_%objectId%_level">Increase level</a>
  22. .d is just a format ... For gods sake :okey:
×
×
  • Create New...