Posted April 5, 20187 yr comment_18603 Hi, how can I delete the message "Hey, everyone, I just tried to do something very silly", when typing ::bank ? I tried to look up for the packet that sends it but I can't literally find any String or variable that could send it from server or client. I also noticed it uses a different outstream packet than normal commands use. I'm using #88 client. If anyone has this fixed, how can I do it myself? Edited April 5, 20187 yr by Master534
April 17, 20187 yr comment_18793 I'm not sure which source this is but since it's just a command with an if statement and a sendstring, it's probably in your PlayerCommand class. Do you have playercommand.java or something similar to that you could paste?
April 17, 20187 yr comment_18794 Just search for that message in eclipse, you'll find the sendmessage string somewhere, just delete it, and fix the command to work for your player right lvl.
July 10, 20187 yr comment_20469 If you want to remove this message you have to edit a cs2 script and compile it. It's not that easy. You could also hardcode it
July 11, 20187 yr Author comment_20473 On 10.7.2018 at 10:30 PM, xfukecx said: If you want to remove this message you have to edit a cs2 script and compile it. It's not that easy. You could also hardcode it Thanks, I hardcoded it into my chat message packet, here is an example for anyone who is curious: if (text.equals("Hey, everyone, I just tried to do something very silly!")) { Bank.open(player); return; } Edited July 11, 20187 yr by Master534
July 14, 20187 yr comment_20504 A horrible way to fix it lmao it's should be in your commands class, under the ::bank command lmao.
August 28, 20186 yr comment_21920 Usually it's in your command class, if the player executing the command's rights are lower than the required rights it will force that chat. It's a pretty stupid "feature" especially if it's been put into a random file. The hard code as seen above is a horrible way of doing things because then you're allowing anyone to bank regardless of their rights and it's just going to clunk up your chat packet class.
Create an account or sign in to comment