Raised This Month: $ Target: $400
 0% 

[CS:S] Block Radio [2.0.2]


Post New Thread Reply   
 
Thread Tools Display Modes
minimoney1
SourceMod Donor
Join Date: Dec 2010
Old 10-09-2012 , 00:10   Re: [CSS] Block Radio [1.9.0] [22/06/2012]
Reply With Quote #31

Quote:
Originally Posted by PresidentEvil View Post
from: http://csgoreplays.com/129-cs-go-new...-commands.html

Pressing the 'Z' key now provides:

"GO"
"Fall Back"
"Stick Together Team"
"Hold This Position"
"Follow Me"

Pressing the 'X' key now provides:

"Affirmative / Roger"
"Negative"
"Cheer!"
"Compliment"
"Thanks"

Pressing the 'C' key now provides:

"Enemy Spotted"
"Need Backup"
"You Take The Point"
"Hold This Position"
"Sector Clear"
"I'm In Position"

I just checked CSGO and these are all accurate




when you say "spam" im guessing it only blocks the "spam" of radio messages, I want them gone completely, which only this plugin does so far
The cvar I posted blocks all radio messages.
sm_radio_spam_block_all
__________________
Need help? PM me or add me on Steam.
My Steam




Quote:
Originally Posted by Rp.KryptoNite View Post
For some reason his Plugin never worked for me ,
@credits were added
im not stealing any plugins dude its my THING
minimoney1 is offline
shavit
AlliedModders Donor
Join Date: Dec 2011
Location: Israel
Old 10-09-2012 , 08:04   Re: [CSS] Block Radio [2.0.0] [09 October 2012]
Reply With Quote #32

Quote:
Originally Posted by RedSword View Post
After having read his code, sm_radio_spam_block_all should indeed block the radio commands... Where do you see in his plugin that it can be bypassed ? Plus his plugin has a time restriction, which looks like a plus.
Maybe his plugin is an anti-spam, many plugins can be bypassed. Even SMAC does.
Quote:
Originally Posted by minimoney1 View Post
So does sv_ignoregrenaderadio.


Don't think you're getting it...
Code:
sm_radio_spam_block_all
EDIT: Ninja'd
sv_ignoregrenaderadio doesn't blocks all the radios, only the grenade sounds.
Quote:
Originally Posted by PresidentEvil View Post
from: http://csgoreplays.com/129-cs-go-new...-commands.html

Pressing the 'Z' key now provides:

"GO"
"Fall Back"
"Stick Together Team"
"Hold This Position"
"Follow Me"

Pressing the 'X' key now provides:

"Affirmative / Roger"
"Negative"
"Cheer!"
"Compliment"
"Thanks"

Pressing the 'C' key now provides:

"Enemy Spotted"
"Need Backup"
"You Take The Point"
"Hold This Position"
"Sector Clear"
"I'm In Position"

I just checked CSGO and these are all accurate




when you say "spam" im guessing it only blocks the "spam" of radio messages, I want them gone completely, which only this plugin does so far
I meant the commands that are executed when you click the (eg "need backup") in the menu.
__________________
retired
shavit is offline
PresidentEvil
AlliedModders Donor
Join Date: Jun 2012
Old 10-09-2012 , 15:42   Re: [CSS] Block Radio [1.9.0] [22/06/2012]
Reply With Quote #33

Quote:
Originally Posted by minimoney1 View Post
The cvar I posted blocks all radio messages.
sm_radio_spam_block_all
pasted that in sourcemod.cfg

doesn't work and get this: Unknown command "sm_radio_spam_block_all"

Quote:
Originally Posted by shavit View Post
Maybe his plugin is an anti-spam, many plugins can be bypassed. Even SMAC does.




sv_ignoregrenaderadio doesn't blocks all the radios, only the grenade sounds.




I meant the commands that are executed when you click the (eg "need backup") in the menu.




heres the commands:

President Evil (RADIO): Go go go!
President Evil (RADIO): Team, fall back!
President Evil (RADIO): Stick together, team.
President Evil (RADIO): Hold This position.
President Evil (RADIO): Follow Me.

President Evil (RADIO): Roger that.
President Evil (RADIO): Negative.
President Evil (RADIO): Cheer!
President Evil (RADIO): Nice!
President Evil (RADIO): Thanks!

President Evil (RADIO): Enemy spotted.
President Evil (RADIO): Need backup.
President Evil (RADIO): You take the point.
President Evil (RADIO): Sector clear.
President Evil (RADIO): I'm in position.
__________________

Last edited by PresidentEvil; 10-09-2012 at 15:48.
PresidentEvil is offline
sLog
Junior Member
Join Date: Apr 2012
Old 10-09-2012 , 17:30   Re: [CSS] Block Radio [2.0.0] [09 October 2012]
Reply With Quote #34

L 10/10/2012 - 01:288: [SM] Plugin encountered error 15: Array index is out of bounds
L 10/10/2012 - 01:288: [SM] Displaying call stack trace for plugin "blockradio.smx":
L 10/10/2012 - 01:288: [SM] [0] Line 66, G:\sourcemod\pstudio-0.8.3\blockradio.sp::OnPluginStart()
sLog is offline
RedSword
SourceMod Plugin Approver
Join Date: Mar 2006
Location: Quebec, Canada
Old 10-09-2012 , 19:15   Re: [CSS] Block Radio [2.0.0] [09 October 2012]
Reply With Quote #35

Quote:
Originally Posted by sLog View Post
L 10/10/2012 - 01:288: [SM] Plugin encountered error 15: Array index is out of bounds
L 10/10/2012 - 01:288: [SM] Displaying call stack trace for plugin "blockradio.smx":
L 10/10/2012 - 01:288: [SM] [0] Line 66, G:\sourcemod\pstudio-0.8.3\blockradio.sp::OnPluginStart()
Change line 64 :

Code:
for(new i; i <= sizeof(RadioCMDS); i++)
into

Code:
for(new i; i < sizeof(RadioCMDS); i++)
__________________
My plugins :
Red Maze
Afk Bomb
RAWR (per player/rounds Awp Restrict.)
Kill Assist
Be Medic

You can also Donate if you appreciate my work
RedSword is offline
shavit
AlliedModders Donor
Join Date: Dec 2011
Location: Israel
Old 10-09-2012 , 20:28   Re: [CSS] Block Radio [2.0.0] [09 October 2012]
Reply With Quote #36

Quote:
Originally Posted by RedSword View Post
Change line 64 :

Code:
for(new i; i <= sizeof(RadioCMDS); i++)
into

Code:
for(new i; i < sizeof(RadioCMDS); i++)
LOL I'm a failure.

Fixed
__________________
retired
shavit is offline
shavit
AlliedModders Donor
Join Date: Dec 2011
Location: Israel
Old 10-09-2012 , 20:34   Re: [CSS] Block Radio [2.0.1] [10 October 2012]
Reply With Quote #37

2.0.1 -

Fixed an "out of bounds" error.
__________________
retired
shavit is offline
PresidentEvil
AlliedModders Donor
Join Date: Jun 2012
Old 10-13-2012 , 01:10   Re: [CSS] Block Radio [2.0.1] [10 October 2012]
Reply With Quote #38

so is it fixed for csgo?
__________________
PresidentEvil is offline
RedSword
SourceMod Plugin Approver
Join Date: Mar 2006
Location: Quebec, Canada
Old 01-08-2013 , 17:18   Re: [CSS] Block Radio [2.0.1] [10 October 2012]
Reply With Quote #39

Hi there,

Plugin is ok --> approved.

If you were to update this plugin, few things you may want to change :
  • Remove FCVAR_REPLICATED as this can produce a client console error.
  • Use directly the translation with the client language (just replaced lines L121 to L123 into
    Code:
    PrintToChat(client, "\x04[SM]\x01 %t", "Blocked");
    Way cleaner IMO; and that way people get their message in a way they can understand it, if they don't speak the server's language.

Red
__________________
My plugins :
Red Maze
Afk Bomb
RAWR (per player/rounds Awp Restrict.)
Kill Assist
Be Medic

You can also Donate if you appreciate my work
RedSword is offline
shavit
AlliedModders Donor
Join Date: Dec 2011
Location: Israel
Old 01-09-2013 , 05:40   Re: [CSS] Block Radio [2.0.1] [10 October 2012]
Reply With Quote #40

Quote:
Originally Posted by RedSword View Post
Hi there,

Plugin is ok --> approved.

If you were to update this plugin, few things you may want to change :
  • Remove FCVAR_REPLICATED as this can produce a client console error.
  • Use directly the translation with the client language (just replaced lines L121 to L123 into
    Code:
    PrintToChat(client, "\x04[SM]\x01 %t", "Blocked");
    Way cleaner IMO; and that way people get their message in a way they can understand it, if they don't speak the server's language.

Red
Quote:
2.0.2 -
Fixed a possible client error.
Changed description to "Blocks all of the radio commucations".
Compability to download the .smx from the forum's thread.
Cleaner method to print the chat message.
__________________
retired
shavit is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 16:50.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode