-
Posts
8,941 -
Credits
0 -
Joined
-
Last visited
-
Days Won
25 -
Feedback
0%
Community Answers
-
SweeTs's post in Skill Reuse After Olympiad Match End was marked as the answer
Not, rly. In this case you had to dig more :P
AbstractOlympiadGame.java
playerStatusBack(L2PcInstance player) -
SweeTs's post in Problem Olympiad was marked as the answer
Talk to the monument and take the hero status. Its not auto..
-
SweeTs's post in Hero Item Problem was marked as the answer
Bcs hero skills are available only on main class.
-
SweeTs's post in L2Jacis Npc No Spawn. (Applicant Information Is Incorrect) was marked as the answer
Ai type must be with caps, DEFAULT, ARCHER, MAGE..
-
SweeTs's post in Instance Time was marked as the answer
InstanceManager.getInstance().setInstanceTime(ptm.getAccountName(), INSTANCEID, getNextInstanceTime(ONEDAY)); -
SweeTs's post in Hero Custom Day L2Jfrozen For L2Jacis was marked as the answer
What a bad code, lol. Trash it.
http://pastebin.com/J4QpmJ3U
-
SweeTs's post in Npc Not Attackable was marked as the answer
Nop.. You simply have to add Overriden isAttackable() to L2NpcInstance :P If you want to block hitting inside town, then
@Override public boolean isAttackable() { if (isInsideZone(ZoneId.TOWN)) return false; return true; } Obviously, Ctrl + Shift + O to fix imports.
-
SweeTs's post in Dont Remove Buffs After Death [ Acis ] was marked as the answer
My bad, doDie() from L2Character.
-
SweeTs's post in Remove Massages was marked as the answer
Most likelt it's sent from core. If you have sources, search for random keyword.
-
SweeTs's post in Custom Pvp Announcement Problem was marked as the answer
As Tk said, search for Player.java (gameserver/model location). Maybe as you posted above, check onDeath method.
-
SweeTs's post in Interlude Client Modifying.. Again was marked as the answer
Try another FileEdit.
Old version - http://www.4shared.com/file/DrYoOVXMce/L2_FileEdit_Interlude.html
More recent, for few chronicles - http://www.4shared.com/rar/9M5gekbfce/L2FileEdit.html
-
SweeTs's post in Searching Icons was marked as the answer
L2UI_CH3.utx find the proper package :P
PARTYWND package @ Interlude.
-
SweeTs's post in L2Jserver Source / Compiled was marked as the answer
Here you go, darling
http://www.maxcheaters.com/topic/191149-some-readycompiled-l2j-sources/
-
SweeTs's post in Back To Dev And Need A Bit Of Help :d was marked as the answer
http://acis.i-live.eu/index.php?topic=78.msg20903#msg20903
-
SweeTs's post in Code Pvp/pk Title L2Jacis was marked as the answer
What about posting in proper section?
What about using search?
http://www.maxcheaters.com/topic/104401-advanced-pvppk-nametitle-color-system/
-
SweeTs's post in Lvl5 Augment Skill Npc was marked as the answer
Such a ugly code, lol.
super.addSkill( What? It's player, not super.. You have to initialize it, if you want to use it like that. You can simply use player.getSkill(x). Also, why you mess npc instance with this code. Creater new instance.
-
SweeTs's post in Hi Can Anybody Helps Me With This Error At Loginserver was marked as the answer
I told you, leave them default / 127.0.0.1
You only have to edit external ip if you want let other ppl connect.
-
SweeTs's post in L2.exe Stopped Working was marked as the answer
Here you go clean system http://www.4shared.com/rar/wT95ZOhWce/clean_system.html
-
SweeTs's post in Code For Kill Rb ? And Alive ? L2Jacis was marked as the answer
http://www.maxcheaters.com/topic/191414-raidboss-status-manager-acis/
-
SweeTs's post in Shift+Click To Npcs For Acis. was marked as the answer
find onShiftAction or something like that, L2Npc if I'm not wrong. There is a check if (player.isGM()) { various stats to show, via htm }. Add else { c/p from above what you want to show and change the htm directory }.
Also, you will have to add new bypass to see the drop. Look the htm command/search via Eclipse and you will find and manage it :P
-
SweeTs's post in Fist Fury Skill At Acis was marked as the answer
Really, there is no hope for you. You have a proper line, yet you are lazy, unable to use godamn search over eclipse.
http://pastebin.com/RaLxv12U
<for> <effect name="Buff" time="90" val="0" stackOrder="#stackOrder" stackType="pa_up_special"> <add order="0x40" stat="accCombat" val="#accCombat"> <using kind="BIGSWORD,BIGBLUNT"/> </add> <mul order="0x30" stat="pAtk" val="#swordblunt"> <using kind="SWORD,BLUNT"/> </mul> <mul order="0x30" stat="pAtk" val="#twohands"> <using kind="BIGSWORD,BIGBLUNT"/> </mul> <mul order="0x30" stat="pAtk" val="#other"> <using kind="DUALFIST,DUAL,FIST,ETC,POLE,BOW,DAGGER"/> </mul> <mul order="0x30" stat="pDef" val="0.8" /> <sub order="0x40" stat="rEvas" val="3" /> </effect> </for> -
SweeTs's post in Character_Variables Mysql Problem. was marked as the answer
Read the error "max key length is 1000", and your varchar is 4000... I wonder that's the point of such a huge value.. Second error "characters table is missing". I guess it's clear.