Jump to content

Intrepid

Legendary Member
  • Posts

    5,521
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Intrepid

  1. startGameServer.bat open it and increase the xmx variable size
  2. you have the jdk as a system variable?if no add it if you have it try to increase the java heap size
  3. as i see thats for the older compile not for the new one with tools
  4. totally wrong section locked w8 for move
  5. what you mean by that if its a normal stat you can do in the xml files of the armors/weapons, if its an SA you can do it 2 way if its in the skills you need to edit the SA skill or the same way like that stats(because a few SA is implemented as a stat not as a skill)
  6. wtf is this pack pfff for me the code i pasted above working fine
  7. depends on what you need tell a few of them
  8. it can be a pack related bug try to update if you still have this problem report it on l2jofficial forum
  9. its Intrepid thanks. so should i lock the topic?
  10. l2j?i use l2j too and no prob hmm l2j what?preconf shit?chronicle?
  11. lol!That was a good strategy to open a request help topic before share it :D Gratz :D
  12. heres the profile http://www.maxcheaters.com/forum/index.php?action=profile;u=51592 http://www.maxcheaters.com/forum/index.php?action=profile;u=26778
  13. well there are an npc crafter shared on the old l2j forum try to find it its for lineage2 but i guess its not so hard to recode it for interlude but you need to know java to do it.
  14. rofl hes banned how you want him to tell you what he did. use search function before bump 10month old topics there are alredy a guide for that. locked.
  15. dont double post. 1st warning. NPE error in floodprotector i dont know archid source go and ask in the archid forum.
  16. pack?mobs dont have reflect effect so thats a pack related bug
  17. and now whats the problem
  18. your text is just to small :P ontopic: 2/10 the text sucks
  19. what a sucky english...also put as much info as possible.
  20. ohh cmon as you said you are free to express your opinion like he is free to do it so.
  21. http://www.maxcheaters.com/forum/index.php?topic=100337.0 http://www.maxcheaters.com/forum/index.php?topic=100503.0 http://www.maxcheaters.com/forum/index.php?topic=100326.0 move to request dev help [EN]
  22. 1st use code tags plz 2nd wrong section locked until moved
  23. package com.l2jfree.gameserver.handler.itemhandlers; import com.l2jfree.Config; import com.l2jfree.gameserver.handler.IItemHandler; import com.l2jfree.gameserver.GameServer; import com.l2jfree.gameserver.cache.HtmCache; import com.l2jfree.gameserver.model.actor.instance.L2PcInstance; import com.l2jfree.gameserver.network.serverpackets.NpcHtmlMessage; import com.l2jfree.gameserver.handler.IItemHandler; import com.l2jfree.gameserver.model.L2ItemInstance; import com.l2jfree.gameserver.model.actor.instance.L2PcInstance; import com.l2jfree.gameserver.model.actor.instance.L2PlayableInstance; /** * @author Cobra * */ public class Balloni implements IItemHandler { private static final int[] ITEM_IDS = { 10639 }; public void useItem(L2PlayableInstance playable, L2ItemInstance item) { if (!(playable instanceof L2PcInstance)) return; L2PcInstance activeChar = (L2PcInstance)playable; int itemId = item.getItemId(); if (itemId == 10639) { String htmFile = "data/html/Teleport/Balloni.htm"; String htmContent = HtmCache.getInstance().getHtm(htmFile); if (htmContent != null) { NpcHtmlMessage infoHtml = new NpcHtmlMessage(1); infoHtml.setHtml(htmContent); activeChar.sendPacket(infoHtml); } else activeChar.sendMessage("omg lame error! where is " + htmFile + " ! blame the Server Admin"); } } public int[] getItemIds() { return ITEM_IDS; } } it was easy thats why i like these forks it brings more and more 0 knowledge ppl great
×
×
  • Create New...