Raised This Month: $ Target: $400
 0% 

Short burst of speed upon respawn


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Hefal
Senior Member
Join Date: Jul 2015
Old 07-20-2015 , 19:41   Short burst of speed upon respawn
Reply With Quote #1

Is there a plugin like this?

I would like respawning players to get into action quicker and gain a certain advantage over people just outside their base ( fkn campers )

thx
Hefal is offline
Shiina.Mashiro
Senior Member
Join Date: Sep 2014
Location: Vietnam
Old 07-21-2015 , 00:46   Re: Short burst of speed upon respawn
Reply With Quote #2

not tested
PHP Code:
#ėnclude <amxmodx>
#include <hamsandwich>
#include <fun>

#define SPEED 400.0
#define DURATION 3.0
#define TASK_SPEED 3948

public plugin_init()
{
    
RegisterHam(Ham_Spawn"player""fwd_playerspawn")
}
public 
fwd_playerspawn(id)
{
    if(
is_user_alive(id))
    {
        
set_user_maxspeed(idSPEED)
        
set_task(DURATION"restore_speed"id+TASK_SPEED)
    }
}
public 
restore_speed(taskid)
{
    new 
id taskid TASK_SPEED
    
if(is_user_alive(id))
        
ExecuteHam(Ham_CS_Player_ResetMaxSpeedid)

__________________
Shiina.Mashiro is offline
Hefal
Senior Member
Join Date: Jul 2015
Old 07-21-2015 , 19:48   Re: Short burst of speed upon respawn
Reply With Quote #3

Quote:
Originally Posted by Shiina.Mashiro View Post
not tested
PHP Code:
#ėnclude <amxmodx>
#include <hamsandwich>
#include <fun>

#define SPEED 400.0
#define DURATION 3.0
#define TASK_SPEED 3948

public plugin_init()
{
    
RegisterHam(Ham_Spawn"player""fwd_playerspawn")
}
public 
fwd_playerspawn(id)
{
    if(
is_user_alive(id))
    {
        
set_user_maxspeed(idSPEED)
        
set_task(DURATION"restore_speed"id+TASK_SPEED)
    }
}
public 
restore_speed(taskid)
{
    new 
id taskid TASK_SPEED
    
if(is_user_alive(id))
        
ExecuteHam(Ham_CS_Player_ResetMaxSpeedid)

Thanks man!

Last edited by Hefal; 07-21-2015 at 19:51.
Hefal 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 06:12.


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