Convoy Trucking

Server related => Suggestions => Locked & Closed Suggestions => Topic started by: Random_Hero on April 17, 2012, 06:55

Title: /block [player name] cmd
Post by: Random_Hero on April 17, 2012, 06:55
Just as the topic suggests, this command will allow you to block what someone says so you can't see it.

Maybe this can work for the mods/admins too where a mod and block the chat from 2 certain players to they can't see what each other are saying. Then a mod would have to unblock them.

This would be best to prevent fights, and keep you from seeing noobs advertise if a mod isn't on. Hopefully it would stop the 20 fights a day that CVT tends to have lately...

Let me know what you think.
Title: Re: /block [player name] cmd
Post by: Deff on April 17, 2012, 07:21
-1

And press F7 instead or just pretend to ignore.
Title: Re: /block [player name] cmd
Post by: R16RACA on April 17, 2012, 07:39
i believe this was already suggested and rejected
Title: Re: /block [player name] cmd
Post by: Anaya on April 17, 2012, 07:55
Quote from: Deff on April 17, 2012, 07:21
-1

And press F7 instead or just pretend to ignore.

Hides all the chat, this is not the solution.
+1 For the suggestion.
Title: Re: /block [player name] cmd
Post by: Nitrochegs on April 17, 2012, 10:32
Already suggested. This about the 4th or 3rd time as a matter of fact. Oh yeah, and it was rejected.
Title: Re: /block [player name] cmd
Post by: Twizeler on April 17, 2012, 10:53
 /mute ?
Title: Re: /block [player name] cmd
Post by: Rivieri on April 19, 2012, 02:57
+1 great idea
Title: Re: /block [player name] cmd
Post by: Random_Hero on April 19, 2012, 03:52
No, not /mute. Why should one be punished by responding to what someone has said to them? Sure it's immature, but most people do it. I think blocking chat between certain people is a little better, cause then they can't fight. When someone is muted, the argument normally continues in some way or another. If both people in the fight can't see what each other say, it's a little bit better to solve.

Plus many times when people are fighting or arguing, only one person gets muted. This is unfair because sometimes the other player will end up picking on the one that's muted. If you have a chat blocked from someone, it should end because they have nothing to fight about then.

I find it's just a better way to seperate than to /mute. I know many may disagree, but there are advantages and disadvantages to the command.

I feel it's best use would be when you just don't like someone, you can just block them.
Title: Re: /block [player name] cmd
Post by: Hobo on April 19, 2012, 04:00
You could F7. This would /block everyone. Or you could go to a cb and ignore the main chat. Then you could pm your friends and if they wanted to talk to you they could go to your cb or pm you.

Or you could use your ignoring skills and ignore the annoying player all together.
Title: Re: /block [player name] cmd
Post by: RaceRX on April 19, 2012, 08:39
sounds like it would lag.. if possible. Because everytime someone chats, it would have to check each player... im not a coder but thats all the makes sense to me.
Title: Re: /block [player name] cmd
Post by: Storm94 on April 22, 2012, 20:05
Quote from: RaceRX on April 19, 2012, 08:39
sounds like it would lag.. if possible. Because everytime someone chats, it would have to check each player... im not a coder but thats all the makes sense to me.
OnPlayerText(playerid, text[])
{
foreach(Player, i)
{
if(!IgnorePlayer[playerid][.i])
{
new string[128];
format(string, sizeof(string), "%s{ffffff}: %s", GetPlayerName(playerid), text);
SendClientMessage(i, COLOR_YELLOW, string);
return 0;
}
return 0;
}
return 0;
}

Or something like that.