Jump to content

Recommended Posts

Posted (edited)

Hello I want to share this code ( Nothing Special )


Maybe many ppl like to use..Anyway..


 


With this Code Gm's Can see Dyes from players...


 


image.png


 


Let's Start :


 


Create a GMViewHennaInfo.java and inside this :



### Eclipse Workspace Patch 1.0
#P L2jFrozen_GameServer
Index: head-src/com/l2jfrozen/gameserver/network/serverpackets/GMViewHennaInfo.java
===================================================================
--- head-src/com/l2jfrozen/gameserver/network/serverpackets/GMViewHennaInfo.java (revision 0)
+++ head-src/com/l2jfrozen/gameserver/network/serverpackets/GMViewHennaInfo.java (revision 0)
@@ -0,0 +1,51 @@
+package com.l2jfrozen.gameserver.network.serverpackets;
+
+import com.l2jfrozen.gameserver.model.actor.instance.L2HennaInstance;
+import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
+
+public class GMViewHennaInfo extends L2GameServerPacket
+{
+ private final L2PcInstance _activeChar;
+ private final L2HennaInstance[] _hennas = new L2HennaInstance[3];
+ private int _count;
+
+ public GMViewHennaInfo(L2PcInstance activeChar)
+ {
+ this._activeChar = activeChar;
+
+ int j = 0;
+ for (int i = 0; i < 3; i++)
+ {
+ L2HennaInstance h = this._activeChar.getHennas(i + 1);
+ if (h != null)
+ this._hennas[(j++)] = h;
+ }
+ this._count = j;
+ }
+
+@Override
+ protected void writeImpl()
+ {
+ writeC(234);
+
+ writeC(this._activeChar.getHennaStatINT());
+ writeC(this._activeChar.getHennaStatSTR());
+ writeC(this._activeChar.getHennaStatCON());
+ writeC(this._activeChar.getHennaStatMEN());
+ writeC(this._activeChar.getHennaStatDEX());
+ writeC(this._activeChar.getHennaStatWIT());
+
+ writeD(3);
+
+ writeD(this._count);
+ for (int i = 0; i < this._count; i++)
+ {
+ writeD(this._hennas[i].getSymbolId());
+ writeD(1);
+ }
+ }
+
+@Override
+ public String getType()
+ {
+ return "[S] 0xea GMHennaInfo";
+ }
+}
\ No newline at end of file


Now go found RequestGMCommand.java and edit :



### Eclipse Workspace Patch 1.0
#P L2jFrozen_GameServer
Index: head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestGMCommand.java
===================================================================
--- head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestGMCommand.java (revision 1113)
+++ head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestGMCommand.java (working copy)
@@ -24,6 +24,7 @@
import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
import com.l2jfrozen.gameserver.network.serverpackets.GMViewCharacterInfo;
import com.l2jfrozen.gameserver.network.serverpackets.GMViewItemList;
+import com.l2jfrozen.gameserver.network.serverpackets.GMViewHennaInfo;
import com.l2jfrozen.gameserver.network.serverpackets.GMViewPledgeInfo;
import com.l2jfrozen.gameserver.network.serverpackets.GMViewQuestList;
import com.l2jfrozen.gameserver.network.serverpackets.GMViewSkillInfo;
@@ -82,6 +83,7 @@
case 5: // player inventory
{
sendPacket(new GMViewItemList(player));
+ sendPacket (new GMViewHennaInfo (player));
break;
}
case 6: // player warehouse


Many people Found This Code Useful... ;)


 


 


 


 


Edited by Monkey D. Luffy
Posted

I think this writeC(234) should be writeC(0xea).. it's strange that l2jfrozen don't have the GMHennaInfo packet. ^^

Posted (edited)

I think this writeC(234) should be writeC(0xea).. it's strange that l2jfrozen don't have the GMHennaInfo packet. ^^

 You Create this Java file "GMHennaInfo.java" 

 

Right Click On com.l2jfrozen.gameserver.network.serverpackets 

 

New-->Class--> and on name inside GMViewHennaInfo -->Finish 

 

And inside the code ^^

Edited by Monkey D. Luffy
Posted

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.

Posted

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.

 

I Test with "writeC(234)" and work..Anyway ^-

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock