-
Posts
8,941 -
Credits
0 -
Joined
-
Last visited
-
Days Won
25 -
Feedback
0%
Community Answers
-
SweeTs's post in L2 Day Scrolls was marked as the answer
Simply change the stackType, they have to differ. Call it anyhow you like.
-
SweeTs's post in Acis questions was marked as the answer
Frozen as any pack has issues. It's kinda messy, but still works.
Disadvantage, it's not developed since years, but it's perfect for newbies as it has all customs.
-
SweeTs's post in Price edit was marked as the answer
Blind?
public static void augments(L2PcInstance activeChar, int ammount, int attributes, int idaugment, int levelaugment)
public static void clanReward(L2PcInstance activeChar, int ammount)
"ammount", it's hard-coded on the method call > clanReward(activeChar, 20)
-
SweeTs's post in fucking search on eclipse was marked as the answer
Make sure case sensitive is not selected. Otherwsie, letters must match - lower case, upper case, must be exactly 100%.
-
SweeTs's post in Server build was marked as the answer
So, how can you have an error while you didn't build it yet?
Pretty much the same if you have svn, except java version, I believe.
https://youtu.be/Vz7oAcpBOd4
-
SweeTs's post in Change fighter to mage was marked as the answer
ClassID.java change the ClassType.FIGHTER to MYSTIC.
-
SweeTs's post in Olympiad teleport was marked as the answer
Wrong file, still. Read again what I said above. But ok, this time I will use bold' font with color.
I said first and you opened file .. no8. Well, not bad. Here is a picture with order.
Now, you know where to dig. All you have to do is to READ methods names and replace it with old code - from free svn. Profit.
-
SweeTs's post in Custom Enchant System. was marked as the answer
item.setEnchantLevel(item.getEnchantLevel())
or simply do nothing inside brackets, no code, no actions.
-
SweeTs's post in I have problem here was marked as the answer
Compare with L2jserver code and edit if necessary.
-
SweeTs's post in GameServer error was marked as the answer
Error is clear and you could Google it. Number format exception, your config is "10." while it's supposed to be an int and not a double. So, remove the dot, it must be "10".
-
SweeTs's post in announcement problem was marked as the answer
It could be edited client message or message from EnterWorld.java
-
SweeTs's post in Itens ++ Shoping L2jacis was marked as the answer
You didn't get the point. Like set.getInteger("enchantmentLevel", 0); Second parameter is the default value. So, you add the enchantmentLevel value where you need.
-
SweeTs's post in Little Problem On Compilation Vipitem was marked as the answer
Read, error look code.. You miss one }
-
SweeTs's post in Show Npc Crest - Acys 368 was marked as the answer
Npcs are registered under castle.xml or so, if that npc is not registered as giran castle, then.. Shit happens.
And ffs, it's acis.
-
SweeTs's post in Automatic Potions When Activechar.isstunned was marked as the answer
if (activeChar.isStunned() || activeChar.isConfused() || activeChar.isAway() || activeChar.isParalyzed() || activeChar.isSleeping() || activeChar.isDead()) { activeChar.sendMessage("You Cannot Use Items Right Now."); activeChar.sendPacket(new ExAutoSoulShot(id, 0)); activeChar.setAutoPot(id, null, false); return; } The check already exists, simply remove two/three lines (return is a must) and voila.
AutoPot runnable method.