Skocz do zawartości

Nowy szablon forum

mygo.pl

Stworzyliśmy dla Was nowy wygląd forum. Z pewnością znajdziesz rzeczy, które wg Ciebie mogą zostać zmienione - wspomnij o tym w specjalnym wątku.

Czytaj więcej

Jak założyć własną sieć

serwerów CS

Zastanawiasz się nad prowadzeniem własnej sieci serwerów? Przeczytaj podstawowe informacje, na które należy zwrócić uwagę, przy takim projekcie.

Czytaj więcej

Tworzymy spis sieci

dodaj swoją

Dodaj sieć do której należysz, pozwoli to na promocję i budowę ogólnopolskiej bazy sieci CS.

Czytaj więcej

RSSEdit the Headshot Only Plugin


MYGO.pl
 Udostępnij

Rekomendowane odpowiedzi

  • RSSy
Hey. So what this plugin does is simple. With all the weapons, except the knife, you can hit headshots only. And with knife you can attack anywhere on the body like normal.

But I do not want headshot only mode to be in effect when the player is using AWP and Scout, just like knife.

I request you coders to do this. :up:

The plugin I am attaching is made by Dores and I own nothing.

PHP Code:

#include <amxmodx>
#include <fakemeta>
#include <hamsandwich>

#define PLUGIN "HeadShot Only"
#define VERSION "1.2a"
#define AUTHOR "Dores"

#define USAGE    " 1 (on) or 0 (off)"

new HamHook:fw_TraceAttack;
new 
g_iMaxPlayers;
new 
p_knifep_team[3];

_Un_RegisterHamForwards(on 0)
{
    
on EnableHamForward(fw_TraceAttack) : DisableHamForward(fw_TraceAttack);
}

public 
plugin_init()
{
    
register_plugin(PLUGINVERSIONAUTHOR)
    
    
fw_TraceAttack RegisterHam(Ham_TraceAttack"player""Forward_TraceAttack");
    
register_clcmd("amx_hsonly""Cmd_ToggleHS"ADMIN_ADMINUSAGE);
    
g_iMaxPlayers get_maxplayers();
    
p_knife register_cvar("hsonly_knife""0");
    
p_team[1] = register_cvar("hsonly_t""1");
    
p_team[2] = register_cvar("hsonly_ct""1");
}

public 
Forward_TraceAttack(idattackerFloat:dmgFloat:dir[3], trdmgbit)
{
    if(
id != attacker && get_tr2(trTR_iHitgroup) != HIT_HEAD && get_pcvar_num(p_team[get_user_team(id)]))
    {
        if(
<= attacker <= g_iMaxPlayers)
        {
            if(!
get_pcvar_num(p_knife) && get_user_weapon(attacker) == CSW_KNIFE)
            {
                return 
HAM_IGNORED;
            }
            
            return 
HAM_SUPERCEDE;
        }
    }
    
    return 
HAM_IGNORED;
}

public 
Cmd_ToggleHS(id)
{
    if(
read_argc() < 2)
    {
        
console_print(idUSAGE);
        return 
PLUGIN_HANDLED;
    }
    
    static 
arg[2] ; read_argv(1argcharsmax(arg));
    static 
val val str_to_num(arg);
    
_Un_RegisterHamForwards(val);
    
client_print(0print_chat"[AMXX] HeadShot Only mode is %s!"val "ON" "OFF");
    return 
PLUGIN_HANDLED;
}

public 
client_putinserver(id)
{
    
set_hudmessage(42255420.110.2206.012.0);
    
show_hudmessage(id"This server is using the HS Only plugin^nVersion %s"VERSION);


Przeczytaj cały wpis

Odnośnik do komentarza
Udostępnij na innych stronach

Gość
Ten temat został zamknięty. Brak możliwości dodania odpowiedzi.
 Udostępnij

  • Ostatnio przeglądający   0 użytkowników

    • Brak zarejestrowanych użytkowników przeglądających tę stronę.
×
×
  • Dodaj nową pozycję...