Raised This Month: $51 Target: $400
 12% 

Disable ping send


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Mofforg
Senior Member
Join Date: Aug 2010
Location: Moscow, Russia
Old 12-07-2012 , 21:29   Disable ping send
Reply With Quote #1

Hello.


Need to fully disable ping function. I mean - do not send ping info when player press TAB.

Is that possible?


Thanks in advance.
Mofforg is offline
Send a message via ICQ to Mofforg Send a message via Skype™ to Mofforg
ANTICHRISTUS
kingdom of weird stuff
Join Date: Jun 2010
Location: My kingdom is not in thi
Old 12-08-2012 , 04:24   Re: Disable ping send
Reply With Quote #2

I don't know if ping faker can do it.

btx. wrong sub_forum.
__________________

Last edited by ANTICHRISTUS; 12-09-2012 at 15:34.
ANTICHRISTUS is offline
Mofforg
Senior Member
Join Date: Aug 2010
Location: Moscow, Russia
Old 12-08-2012 , 20:59   Re: Disable ping send
Reply With Quote #3

ping_faker increase load to the traffic and cause overflows to player's.

Forum was CORRECT. I seach for a MODULE, NOT a PLUGIN.

Topic can be removed.
Mofforg is offline
Send a message via ICQ to Mofforg Send a message via Skype™ to Mofforg
YamiKaitou
Has a lovely bunch of coconuts
Join Date: Apr 2006
Location: Texas
Old 12-08-2012 , 21:09   Re: Disable ping send
Reply With Quote #4

Quote:
Originally Posted by Mofforg View Post
Forum was CORRECT. I seach for a MODULE, NOT a PLUGIN.
It was still the incorrect section, moved it to the correct one based on the information provided in your new (now trashed) thread.
__________________
ProjectYami Laboratories

I do not browse the forums regularly anymore. If you need me for anything (asking questions or anything else), then PM me (be descriptive in your PM, message containing only a link to a thread will be ignored).

Last edited by YamiKaitou; 12-08-2012 at 21:09.
YamiKaitou is offline
ANTICHRISTUS
kingdom of weird stuff
Join Date: Jun 2010
Location: My kingdom is not in thi
Old 12-09-2012 , 03:38   Re: Disable ping send
Reply With Quote #5

pod-bot have this ability, and it's a metamod plugin. wait for someone to make it for you, from the source code.
__________________
ANTICHRISTUS is offline
jim_yang
Veteran Member
Join Date: Aug 2006
Old 12-09-2012 , 04:31   Re: Disable ping send
Reply With Quote #6

try blocking this sub "SV_EmitPings" in engine.
__________________
Project : CSDM all in one - 99%
<team balancer#no round end#entity remover#quake sounds#fake full#maps management menu#players punishment menu#no team flash#colored flashbang#grenade trails#HE effect#spawn protection#weapon arena#weapon upgrade#auto join#no weapon drop#one name>
jim_yang is offline
yokomo
Surprise Ascot!
Join Date: May 2010
Location: Malaysia
Old 12-09-2012 , 12:14   Re: Disable ping send
Reply With Quote #7

Sorry, but yea i need this too, this is good to hide local user ping if we host local hlds, instead of using Ping Faker that loop task all the way, so it's better if we block sv ping.

Quote:
Originally Posted by jim_yang View Post
try blocking this sub "SV_EmitPings" in engine.
How can we do this? Orpheu can?
__________________
Team-MMG CS1.6 Servers:
✅ MultiMod -- 103.179.44.152:27016
✅ Zombie Plague -- 103.179.44.152:27015
✅ Zombie Escape -- 103.179.44.152:27017
✅ Klassik Kombat -- 103.179.44.152:27018
✅ Boss-Battle -- 103.179.44.152:27019
yokomo is offline
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 12-09-2012 , 12:43   Re: Disable ping send
Reply With Quote #8

/orpheu/functions/SV_EmitPings :
Code:
{
    "name"      : "SV_EmitPings",
    "library"   : "engine",
    "arguments" : 
    [
        {
            "type" : "pointer"
        },
        {
            "type" : "pointer"
        }
    ],
    "identifiers" :
    [
        {
            "os"    : "windows",
            "value" : [0x55,0x8B,"*",0x51,0x53,0x8B,"*","*",0x56,0x57,0x6A,"*",0x53]
        },
        {
            "os"    : "linux",
            "value" : "SV_EmitPings"
        }
    ]
}

Code:
#include <amxmodx> #include <orpheu> public plugin_init() {     OrpheuRegisterHook( OrpheuGetFunction( "SV_EmitPings" ), "OnSV_EmitPings" ); } public OrpheuHookReturn:OnSV_EmitPings() {     return OrpheuSupercede; }
__________________

Last edited by Arkshine; 12-09-2012 at 12:58.
Arkshine is offline
.Dare Devil.
Veteran Member
Join Date: Sep 2010
Old 12-09-2012 , 15:59   Re: Disable ping send
Reply With Quote #9

Quote:
Originally Posted by Arkshine View Post
/orpheu/functions/SV_EmitPings :
Code:
{
    "name"      : "SV_EmitPings",
    "library"   : "engine",
    "arguments" : 
    [
        {
            "type" : "pointer"
        },
        {
            "type" : "pointer"
        }
    ],
    "identifiers" :
    [
        {
            "os"    : "windows",
            "value" : [0x55,0x8B,"*",0x51,0x53,0x8B,"*","*",0x56,0x57,0x6A,"*",0x53]
        },
        {
            "os"    : "linux",
            "value" : "SV_EmitPings"
        }
    ]
}

Code:
#include <amxmodx> #include <orpheu> public plugin_init() {     OrpheuRegisterHook( OrpheuGetFunction( "SV_EmitPings" ), "OnSV_EmitPings" ); } public OrpheuHookReturn:OnSV_EmitPings() {     return OrpheuSupercede; }
those "*" are like %d, right?

Last edited by .Dare Devil.; 12-09-2012 at 15:59.
.Dare Devil. is offline
YamiKaitou
Has a lovely bunch of coconuts
Join Date: Apr 2006
Location: Texas
Old 12-09-2012 , 16:04   Re: Disable ping send
Reply With Quote #10

Quote:
Originally Posted by .Dare Devil. View Post
those "*" are like %d, right?
No
__________________
ProjectYami Laboratories

I do not browse the forums regularly anymore. If you need me for anything (asking questions or anything else), then PM me (be descriptive in your PM, message containing only a link to a thread will be ignored).
YamiKaitou 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 19:38.


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