remigas Posted September 4, 2018 Posted September 4, 2018 Hi guys how to make global chat true all MAP? thanks. Quote
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 Quote
0 remigas Posted September 5, 2018 Author Posted September 5, 2018 in which file can you tell me please? :) Quote
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 Quote
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 Quote
Question
remigas
Hi guys how to make global chat true all MAP? thanks.
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.