-
Posts
1,472 -
Credits
0 -
Joined
-
Last visited
-
Days Won
4 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Tessa
-
Looks pretty well! ^_^
- 300 replies
-
I think this guy deserves at least double reward from the advertising event!
-
How you get it? Share it if you don't know what to do! :lol:
-
Help Cant Target Or Write Anything In L2J Freya Rev 7665 Server
Tessa replied to calmn's question in Request Server Development Help [L2J]
Check for errors in the console during the start...- 4 replies
-
- cant target
- cant write
-
(and 1 more)
Tagged with:
-
Help Auto Attack Stop And Custom Item Skill
Tessa replied to HammerV2's question in Request Server Development Help [L2J]
The first seems to be ai problem.. do you have any changes that you have done or it comes with the release? -
No, they just love your avatar.. and your hacking skills too! :lol:
-
Lol, I don't have a server.. ^_^ It's not only this... maybe he don't even play on this server, but still spam like someone cares about the fake online. :lol:
-
Sure 1k+ online, these "most online ever" stats in their forum proves that... ^_^
-
Discussion I Need An Investor For A Unique New Project
Tessa replied to Icarus Dev's topic in General Discussion [English]
We waiting to see what is this mystic idea, that costs 3k euro to someone! ^_^ -
Discussion Opinion About Interlude Pvp Server Enchant System
Tessa replied to Lioy's topic in General Discussion [English]
Safe enchant 5, max 20 and normal enchant system. Max 20 because of the red glow, and normal enchant system because of the idea to reach the max with chance to fail. ^^ Many servers uses safe enchant system because of votes and donations.. -
Code Gm View Dyes Info [ L2Jfrozen Rev.1113 ]
Tessa replied to Monkey D. Luffy's topic in Server Shares & Files [L2J]
I think you get me wrong. ^^ I was wondered why l2jfrozen don't have this packet.. :P The name of the file doesn't matter (it's for the developer), since the client reads the first writeC packet. -
Code Visible Castle Door Hp For L2Jfrozen
Tessa replied to Tessa's topic in Server Shares & Files [L2J]
Thanks! :) I don't use l2jfrozen's pack, but seems there are many people using it. Here is what this patch does: http://prntscr.com/5godye http://prntscr.com/5goe6w http://prntscr.com/5goeh7 -
Help Npc Always Turn Face, While Talking
Tessa replied to II337's question in Request Server Development Help [L2J]
Just remove the SocialAction packet that they sends, and they won't turn anymore! ^_^ -
Help Clan And Ally Crest In Npc Html
Tessa replied to dymek1984's question in Request Server Development Help [L2J]
Is this the big magic you trying to reveal? http://prntscr.com/5gqny7 Just create a replacer that gets the crest id, then the server id and concatenate them like this <img height=12 width=16 src="Crest.crest_%serverId%_%crest%"> EDIT: I think I should give an example :lol: Index: java/net/sf/l2j/gameserver/handler/admincommandhandlers/AdminEditChar.java =================================================================== --- java/net/sf/l2j/gameserver/handler/admincommandhandlers/AdminEditChar.java (revision 5) +++ java/net/sf/l2j/gameserver/handler/admincommandhandlers/AdminEditChar.java (working copy) @@ -458,6 +458,8 @@ NpcHtmlMessage adminReply = new NpcHtmlMessage(5); adminReply.setFile("data/html/admin/"+filename); adminReply.replace("%name%", player.getName()); + adminReply.replace("%crest%", String.valueOf(player.getClan().getCrestId())); + adminReply.replace("%serverId%", String.valueOf(Config.SERVER_ID)); adminReply.replace("%level%", String.valueOf(player.getLevel())); adminReply.replace("%clan%", String.valueOf(ClanTable.getInstance().getClan(player.getClanId()))); adminReply.replace("%xp%", String.valueOf(player.getExp())); Enjoy! :P -
Hello devs! I want to share small code that shows castle door's/wall's hp. Seems l2jfrozen don't have this feature, so I've decided to extend its current code. Index: head-src/com/l2jfrozen/gameserver/model/actor/knownlist/PcKnownList.java =================================================================== --- head-src/com/l2jfrozen/gameserver/model/actor/knownlist/PcKnownList.java (revision 1113) +++ head-src/com/l2jfrozen/gameserver/model/actor/knownlist/PcKnownList.java (working copy) @@ -126,7 +126,14 @@ } else if (object instanceof L2DoorInstance) { - active_char.sendPacket(new DoorInfo((L2DoorInstance) object, false)); + if (((L2DoorInstance) object).getCastle() != null) + { + getActiveChar().sendPacket(new DoorInfo((L2DoorInstance) object, true)); + } + else + { + getActiveChar().sendPacket(new DoorInfo((L2DoorInstance) object, false)); + } active_char.sendPacket(new DoorStatusUpdate((L2DoorInstance) object)); } else if (object instanceof L2BoatInstance) Index: head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestRecordInfo.java =================================================================== --- head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestRecordInfo.java (revision 1113) +++ head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestRecordInfo.java (working copy) @@ -90,7 +90,14 @@ } else if (object instanceof L2DoorInstance) { - _activeChar.sendPacket(new DoorInfo((L2DoorInstance) object, false)); + if (((L2DoorInstance) object).getCastle() != null) + { + _activeChar.sendPacket(new DoorInfo((L2DoorInstance) object, true)); + } + else + { + _activeChar.sendPacket(new DoorInfo((L2DoorInstance) object, false)); + } _activeChar.sendPacket(new DoorStatusUpdate((L2DoorInstance) object)); } else if (object instanceof L2BoatInstance) Index: head-src/com/l2jfrozen/gameserver/network/serverpackets/DoorInfo.java =================================================================== --- head-src/com/l2jfrozen/gameserver/network/serverpackets/DoorInfo.java (revision 1113) +++ head-src/com/l2jfrozen/gameserver/network/serverpackets/DoorInfo.java (working copy) @@ -28,10 +28,12 @@ { private static final String _S__60_DOORINFO = "[S] 4c DoorInfo"; private final L2DoorInstance _door; + private final boolean _showHp; public DoorInfo(final L2DoorInstance door, final boolean showHp) { _door = door; + _showHp = showHp; } @Override @@ -40,6 +42,7 @@ writeC(0x4c); writeD(_door.getObjectId()); writeD(_door.getDoorId()); + writeD(_showHp ? 1 : 0); } /* I've tested that on l2jserver's rev 1433, but there shouldn't be a difference.
-
Help Please Check Here!
Tessa replied to StinkyMadness's question in Request Server Development Help [L2J]
Quick and dirty loop break: http://prntscr.com/5gmlpj It breaks when reach the maximum items (5 items in this example).. :lol: -
Help Please Check Here!
Tessa replied to StinkyMadness's question in Request Server Development Help [L2J]
1) Yes, there is a getters that returns the drop size. 2) You can set simple count to break the loop when it reach the html allowed size, pagination needs bigger patch. 3) You can, but this needs bigger patch too. -
Code Gm View Dyes Info [ L2Jfrozen Rev.1113 ]
Tessa replied to Monkey D. Luffy's topic in Server Shares & Files [L2J]
I think this writeC(234) should be writeC(0xea).. it's strange that l2jfrozen don't have the GMHennaInfo packet. ^^ -
Help Please Check Here!
Tessa replied to StinkyMadness's question in Request Server Development Help [L2J]
Just get the five parts in one file and execute it via Navicat. -
If it was it's first opening, these 1500 people may be real... but since it failed 3 days after it's first opening, I highly doubt. :lol:
-
Help Please Check Here!
Tessa replied to StinkyMadness's question in Request Server Development Help [L2J]
If you have applied the patch use only the html part from this http://pastebin.com/5jJWDU5r This one includes the cosmetic changes... :lol: -
Help Please Check Here!
Tessa replied to StinkyMadness's question in Request Server Development Help [L2J]
Have you tried the patch? -
Help Please Check Here!
Tessa replied to StinkyMadness's question in Request Server Development Help [L2J]
Lol, I can't... ^_^ Like this? http://prntscr.com/5ghfw5 -
Help Aguments On Weapons...
Tessa replied to nikimad's question in Request Server Development Help [L2J]
You should try! :lol: augmentId * 65536 + statId This formula was shared by janiii from L2JServer http://www.l2jserver.com/forum/viewtopic.php?f=80&t=11122&p=48959#p48959 You can check the stats in the system folder of the game, the file name is optiondata_client-e.dat. :P -
Help Aguments On Weapons...
Tessa replied to nikimad's question in Request Server Development Help [L2J]
No, I mean + P.Atk, + Accuracy, + Critical... something like that. ^_^