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

CS:S Step sound bug


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
asdfghjkee
Member
Join Date: Sep 2008
Location: Rus
Old 05-03-2009 , 14:54   CS:S Step sound bug
Reply With Quote #1

I have a cw server where installed:
Metamod: Source version 1.7.1
SourceMod Version: 1.2.1-dev
sm plugins list
[SM] Listing 23 plugins:
01 "Admin File Reader" (1.2.1-dev) by AlliedModders LLC
02 "Admin Help" (1.2.1-dev) by AlliedModders LLC
03 "Admin Menu" (1.2.1-dev) by AlliedModders LLC
04 "AdminTools: Source" (0.0.5) by Alican 'AlicanC' ╟ubukчuoЁlu
05 "Basic Ban Commands" (1.2.1-dev) by AlliedModders LLC
06 "Basic Chat" (1.2.1-dev) by AlliedModders LLC
07 "Basic Comm Control" (1.2.1-dev) by AlliedModders LLC
08 "Basic Commands" (1.2.1-dev) by AlliedModders LLC
09 "Basic Info Triggers" (1.2.1-dev) by AlliedModders LLC
10 "Basic Votes" (1.2.1-dev) by AlliedModders LLC
11 "VBAC" (3.3) by MoggieX
12 "Fun Commands" (1.2.1-dev) by AlliedModders LLC
13 "Fun Votes" (1.2.1-dev) by AlliedModders LLC
14 "Headshot Only" (1.0.1) by XARiUS
15 "Kigen's Anti-Cheat" (1.1. by Kigen
16 "Maps and Prefix Maps Configs" (1.2) by graczu
17 "Server Pause" (1.0) by O!KAK
18 "Player Commands" (1.2.1-dev) by AlliedModders LLC
19 "Reserved Slots" (1.2.1-dev) by AlliedModders LLC
20 "PlayersList" (0.3) by O!KAK
21 "SrcTV demorecord" (0.3) by O!KAK
22 "Teamswitch Menu" (0.2.6) by R-Hehl
23 "GotGames WarMod" (1.3.6) by Twelve-60

A bug with the sound of steps, when you kill and you are in a spectator watching the other player - the sound of the steps do not coincide with the movement of the player or sounds like it runs a lot of players rather than one.
Sorry for my English, I hope you understand what I wanted to say ...
asdfghjkee is offline
Send a message via ICQ to asdfghjkee Send a message via MSN to asdfghjkee Send a message via Skype™ to asdfghjkee
krzynek1
Member
Join Date: Jan 2009
Old 05-04-2009 , 17:02   Re: CS:S Step sound bug
Reply With Quote #2

i know this is OT, but can you post link to

Quote:
"Server Pause" (1.0) by O!KAK
coz i cant find it in google
krzynek1 is offline
asdfghjkee
Member
Join Date: Sep 2008
Location: Rus
Old 05-05-2009 , 08:45   Re: CS:S Step sound bug
Reply With Quote #3

This plugin and you will not find on this forum discussed how to put a pause on the server with one command, with the off cvar sv_pausable 0. And O! KAK proposed the following code:
PHP Code:
#include <sourcemod>

new Handle:g_pausAble;
new 
bool:allowed false;
 

#define PLUGIN_VERSION "1.0"

public Plugin:myinfo =
{
    
name "Server Pause",
    
author "O!KAK",
    
description "Enable/Disable pause on server",
    
version PLUGIN_VERSION,
    
url ""
};

public 
OnPluginStart()
{
     
RegAdminCmd("sm_pause"pause_onADMFLAG_GENERIC"Pause or unpause the game");
}



public 
Action:pause_on(clientargs)

    
    
decl String:name[16]; 
    
g_pausAble FindConVar ("sv_pausable");

        
GetClientName(clientnamesizeof(name));

    if (!
allowed)
    {
             
SetConVarInt(g_pausAbletrue);
             
FakeClientCommand(client"pause");
             
LogAction(client, -1"%L paused server"client);
             
PrintToChatAll("[SM] Admin %s paused server"name);

             
allowed true;
             
SetConVarInt(g_pausAblefalse);
    }
    else if (
allowed)
    {
            
SetConVarInt(g_pausAbletrue);
            
FakeClientCommand(client"pause");
            
LogAction(client, -1"%L unpaused server"client);
            
PrintToChatAll("[SM] Admin %s unpaused server"name);

            
allowed false;
            
SetConVarInt(g_pausAblefalse);
    }

    return 
Plugin_Continue;

I compile it code on plugin.

It seems the problem with the steps here:
http://forums.alliedmods.net/showthr...mod#post820803

But the question arises as to why this bug is not on all servers with Warmod? Maybe there is something depending on the version of MetaMod?
asdfghjkee is offline
Send a message via ICQ to asdfghjkee Send a message via MSN to asdfghjkee Send a message via Skype™ to asdfghjkee
krzynek1
Member
Join Date: Jan 2009
Old 05-05-2009 , 14:08   Re: CS:S Step sound bug
Reply With Quote #4

thank you
krzynek1 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:59.


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