0 xAddytzu Posted May 4, 2010 Posted May 4, 2010 public final static int ALL = 0; public final static int SHOUT = 1; //! public final static int TELL = 2; public final static int PARTY = 3; //# public final static int CLAN = 4; //@ public final static int GM = 5; public final static int PETITION_PLAYER = 6; // used for petition public final static int PETITION_GM = 7; //* used for petition public final static int TRADE = 8; //+ public final static int ALLIANCE = 9; //$ public final static int ANNOUNCEMENT = 10; public final static int PARTYROOM_ALL = 16; //(Red) public final static int PARTYROOM_COMMANDER = 15; //(Yellow) public final static int HERO_VOICE = 17; Announcements.java public void announceToAll(String text) { CreatureSay cs = new CreatureSay(0, Say2.ANNOUNCEMENT, "", text); for (L2PcInstance player : L2World.getInstance().getAllPlayers()) { player.sendPacket(cs); } } Replace 'ANNOUNCEMENT" with one from above list :)
0 forsas Posted May 4, 2010 Author Posted May 4, 2010 Thx bro very nice :P But this only announcement txt file.... how change color when write in game?
0 xAddytzu Posted May 4, 2010 Posted May 4, 2010 Thx bro very nice :P But this only announcement txt file.... how change color when write in game? Lots of laugh, read the code juice :D public void announceToAll(String text) { CreatureSay cs = new CreatureSay(0, Say2.PARTYROOM_COMMANDER, "Announce", text); for (L2PcInstance player : L2World.getInstance().getAllPlayers()) { player.sendPacket(cs); } }
Question
forsas
Someone knows how change announcement write color? :P
3 answers to this question
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now