remigas Posted September 4, 2018 Posted September 4, 2018 Hi guys how to make global chat true all MAP? thanks.
0 Reborn12 Posted September 4, 2018 Posted September 4, 2018 4 hours ago, remigas said: Hi guys how to make global chat true all MAP? thanks. Remove region check just
0 remigas Posted September 5, 2018 Author Posted September 5, 2018 in which file can you tell me please? :)
0 Reborn12 Posted September 5, 2018 Posted September 5, 2018 4 hours ago, remigas said: in which file can you tell me please? :) https://pastebin.com/2vCC5Dri
0 Xenokage Posted September 6, 2018 Posted September 6, 2018 (edited) On 9/5/2018 at 11:30 AM, Reborn12 said: https://pastebin.com/2vCC5Dri REMOVE THIS final CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), text); final int region = MapRegionTable.getMapRegion(activeChar.getX(), activeChar.getY()); for (L2PcInstance player : L2World.getInstance().getPlayers()) { if (!BlockList.isBlocked(player, activeChar) && region == MapRegionTable.getMapRegion(player.getX(), player.getY())) player.sendPacket(cs); } } AND USE THIS final CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), text); for (L2PcInstance player : L2World.getInstance().getPlayers()) { if (!BlockList.isBlocked(player, activeChar)) player.sendPacket(cs); } } do that for ChatTrade & ChatShout in chathandlers Edited September 6, 2018 by Xenokage 1
Question
remigas
Hi guys how to make global chat true all MAP? thanks.
5 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