-
Posts
8,941 -
Credits
0 -
Joined
-
Last visited
-
Days Won
25 -
Feedback
0%
Community Answers
-
SweeTs's post in Acis Skill Enchanta was marked as the answer
Add classes id to XML, teachTo line from npc.
-
SweeTs's post in Gap Level L2Jfrozen was marked as the answer
Configs. You have there 3 options, at least on aCis. I bet frozen also have it, even 10 :troll:
-
SweeTs's post in Eclipse Help was marked as the answer
In order to do any java related changes, you need sources. Everything you can find in this topic. There is also answer for your 2nd question.
http://acis.i-live.eu/index.php?topic=78.0
-
SweeTs's post in How To Add Passive Skill In Armor was marked as the answer
It's not solved, lol. Don't give him stupid, not valid answers.
If you want passive ARMOR SET skill, then find armorsets.xml and fill the info, example.
<armorset chest="9309" legs="9310" head="9300" gloves="9311" feet="9312" skillId="502" shield="0" shieldSkillId="0" enchant6Skill="3625" /> If you are using frozen, it's inside database. Just find it.
Now, it's solved and can be locked.
-
SweeTs's post in While Compiling... was marked as the answer
Yup, sadly. It's Eclipse Mars issue. If you read error you will see that it's adding %20 to the program files path. Dunno why/when it occur.
You can try setup eclipse again/download other version, or simple create Program%20Files folder with Java folders/path and paste there tools.jar - sort of walk around.
-
SweeTs's post in Some Questions was marked as the answer
1. Java version depends of the pack/source you are using. Active projects use Java 8 now.
2. Bug fixes/improvements obviously. Read MySql changeset if you really want to know exactly. I recommend 5.5 or 5.6. Newer versions consume way more RAM.
3. engine.dll if I remember well and/or one more file. You can easily find a working system for W10.
-
SweeTs's post in Sb.append Get Objectid(29004) was marked as the answer
Looks like you don't even know what getObjectId() is, lol.
You need a new method/bypass to do it. Check ANY, basically, bypass how it works. For example gm commands/bypasses, buffer bypass or any other.
-
SweeTs's post in New Armor_Type For Enchant was marked as the answer
If you don't know to do it, then create new scroll as grade NONE. Set your armor enchant type @ xml for your armor as NONE. Don't forgot to change the Crystal scroll grade to NONE as well. Profit.
ONE line code. You only have to register new grade and obviously change the xml/sql grade.
-
SweeTs's post in How To Edit Core was marked as the answer
Only important stuff, 2-3min rather useless 10-15 :troll:
http://acis.i-live.eu/index.php?topic=78.msg20903#msg20903
-
SweeTs's post in Aggro Problem was marked as the answer
It's because clan range. Set the range to 0 or remove mobs from clan.
-
SweeTs's post in I Need Help For Droplist On Rb was marked as the answer
Bcs you added drop under the same category. If items are inside the same category, only one random item will be dropped and the sum of all those items must not exceed 100%, aka 1 000 000.
-
SweeTs's post in On 2Nd Class Change Auto-Equip Custom Reward Item was marked as the answer
You said that you know how to code, so.. So should be smart enough to check at least L2ClassMasterInstance to find the correct method.
Find the place, and do as you said, make a check regarding the class.
player.getClassId().getId()
That's what you need.
-
SweeTs's post in Multifunctionzone L2Jacis was marked as the answer
You should import the sources as a project, if you are using shared sources, so you can see the errors/issues.
I invite you to use the free SVN, up to date. As I see you are using some old revision, since it's ItemInstance now (L2 has been dropped). Otherwise you have sooo damn messy sources.
-
SweeTs's post in I'm Looking For This Armor was marked as the answer
Dark Knight.
http://www.maxcheaters.com/topic/123258-share-dark-knight-armor-interlude/
-
SweeTs's post in How I Can Stop The Auto Updates was marked as the answer
Search over the source (Eclips, search) for this message and remove or comment (/** ... **/) part of the code responsible for this crap.
-
SweeTs's post in Provlima Me Donate Manager was marked as the answer
Learn finally to post in godamn proper section.
-
SweeTs's post in How To Add Passive/active Skill To Class was marked as the answer
Add skill to their skill_tree.
-
SweeTs's post in [Help] Console Error (Event) was marked as the answer
Check your events.xml (config folder) the dm id should be 1.
0 stands for global settings.
If you miss the file, add it.
-
SweeTs's post in Remove Pack Name When Entering was marked as the answer
http://subversion.assembla.com/svn/L2jFrozenInterlude/trunk/gameserver/head-src/com/l2jfrozen/gameserver/network/clientpackets/
// Credits to L2jfrozen activeChar.sendMessage("This server uses L2JFrozen, a project founded by L2Chef and"); activeChar.sendMessage("developed by the L2JFrozen Dev Team at l2jfrozen.com"); -
SweeTs's post in Hero Voice Problem was marked as the answer
In game on the chat Window there is a hammer,click on it and enable Hero chat ~.^
-
SweeTs's post in Can't Start My Server was marked as the answer
The connection should be "localhost", inside you must create database l2jws (default name) or whatever name and the same name inside properties. You dont have database installed, so Hey..
Read a guide.
-
SweeTs's post in Dragon Claw Weapons Cannot Be Equipped was marked as the answer
Add missing lines, body part, weapon type and such. Basically copy/paste.
-
SweeTs's post in Boxes/chests Or W/e was marked as the answer
It's easy. Check the Reagent Pouch xml structure and do the same ;)
Item xml
<set name="handler" val="ItemSkills" /> <set name="item_skill" val="2174-1" /> ==>
skill xml
<skill id="2174" levels="3" name="Ingredient Bag"> <table name="#extractableItems"> 6019,2,30;6013,2,30;6014,1,20;6016,1,20 <--- here, it's level 1 skill 6017,2,10;6020,2,20;6014,1,35;6016,1,35 6012,1,20;6018,2,20;6019,2,20;6013,1,40 </table> <set name="capsuled_items_skill" val="#extractableItems" /> <set name="operateType" val="OP_ACTIVE" /> <set name="skillType" val="EXTRACTABLE" /> <set name="target" val="TARGET_SELF" /> </skill>