Raised This Month: $ Target: $400
 0% 

Remove leap into air from knockback plugin


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
KviZ
Senior Member
Join Date: Feb 2011
Location: Lithuania
Old 03-12-2011 , 14:08   Remove leap into air from knockback plugin
Reply With Quote #1

Code:
#include <amxmodx>
#include <engine>

#define PLUGIN    "Pump Knockback (when shot by one)"
#define VERSION    "1.0"
#define AUTHOR    "v3x & Chronic"

new cvar_pump_active , cvar_pump_force;

public plugin_init()
{
    register_plugin(PLUGIN , VERSION , AUTHOR);

    register_event("Damage" , "event_Damage" , "b" , "2>0");

    cvar_pump_active   = register_cvar("knockback" , "1");
    cvar_pump_force       = register_cvar("force"     , "10");
}

public event_Damage(id)
{
    if(!get_pcvar_num(cvar_pump_active))
        return PLUGIN_CONTINUE;

    if(!is_user_alive(id))
        return PLUGIN_CONTINUE;

    new weapon , attacker = get_user_attacker(id , weapon);

    if(!is_user_alive(attacker))
        return PLUGIN_CONTINUE;

    if(weapon != CSW_KNIFE)
    {
        new Float:vec[3];
        new Float:oldvelo[3];
        get_user_velocity(id, oldvelo);
        create_velocity_vector(id , attacker , vec);
        vec[0] += oldvelo[0];
        vec[1] += oldvelo[1];
        set_user_velocity(id , vec);
    }

    return PLUGIN_CONTINUE;
}

// Stock by the one and only, Chronic :P
stock create_velocity_vector(victim,attacker,Float:velocity[3])
{
    if(!is_user_alive(victim) || !is_user_alive(attacker))
        return 0;

    new Float:vicorigin[3];
    new Float:attorigin[3];
    entity_get_vector(victim   , EV_VEC_origin , vicorigin);
    entity_get_vector(attacker , EV_VEC_origin , attorigin);

    new Float:origin2[3]
    origin2[0] = vicorigin[0] - attorigin[0];
    origin2[1] = vicorigin[1] - attorigin[1];

    new Float:largestnum = 0.0;

    if(floatabs(origin2[0])>largestnum) largestnum = floatabs(origin2[0]);
    if(floatabs(origin2[1])>largestnum) largestnum = floatabs(origin2[1]);

    origin2[0] /= largestnum;
    origin2[1] /= largestnum;

    velocity[0] = ( origin2[0] * (get_pcvar_float(cvar_pump_force) * 3000) ) / get_entity_distance(victim , attacker);
    velocity[1] = ( origin2[1] * (get_pcvar_float(cvar_pump_force) * 3000) ) / get_entity_distance(victim , attacker);
    if(velocity[0] <= 20.0 || velocity[1] <= 20.0)
        velocity[2] = random_float(200.0 , 275.0);

    return 1;
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang5129\\ f0\\ fs16 \n\\ par }
*/
Can someone remove a function which makes victim jump into air when is attacked?
KviZ is offline
fireattack
Senior Member
Join Date: Jul 2008
Old 03-12-2011 , 14:21   Re: Remove leap into air from knockback plugin
Reply With Quote #2

Explain it better, I think you can do that with the CVARs.
fireattack is offline
KviZ
Senior Member
Join Date: Feb 2011
Location: Lithuania
Old 03-12-2011 , 14:30   Re: Remove leap into air from knockback plugin
Reply With Quote #3

It's a knockback plugin, it works ok, but it makes a player leap into air, like if I shoot an enemy it automaticaly jumps into the air and if I shoot again it get's more in the air and so on. Sorry for bad English.
KviZ is offline
schmurgel1983
Veteran Member
Join Date: Aug 2006
Location: Germany
Old 03-12-2011 , 15:16   Re: Remove leap into air from knockback plugin
Reply With Quote #4

remove
Code:
    if(velocity[0] <= 20.0 || velocity[1] <= 20.0)
        velocity[2] = random_float(200.0 , 275.0);
__________________

Working on:
nothing
schmurgel1983 is offline
KviZ
Senior Member
Join Date: Feb 2011
Location: Lithuania
Old 03-12-2011 , 15:43   Re: Remove leap into air from knockback plugin
Reply With Quote #5

Lol I removed it earlier, but I forgot to copy compiled into plugins folder... but still thanks
KviZ 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 14:34.


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