Raised This Month: $ Target: $400
 0% 

default speed


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
vl@d
Senior Member
Join Date: Dec 2006
Location: Romania
Old 01-06-2008 , 07:21   default speed
Reply With Quote #1

do you know what is the default speed in Half-life...?
__________________


I hate Spammers....
vl@d is offline
hugz`
Veteran Member
Join Date: Jul 2007
Location: In a house
Old 01-06-2008 , 10:27   Re: default speed
Reply With Quote #2

250
__________________
hugz` is offline
Send a message via AIM to hugz`
slypanther
BANNED
Join Date: Jan 2008
Old 01-09-2008 , 11:52   Re: default speed
Reply With Quote #3

320
slypanther is offline
Alka
AMX Mod X Plugin Approver
Join Date: Dec 2006
Location: malloc(null)
Old 01-09-2008 , 11:55   Re: default speed
Reply With Quote #4

Depends from weapon to weapon ?! oO
__________________
Still...lovin' . Connor noob! Hello
Alka is offline
ConnorMcLeod
Veteran Member
Join Date: Jul 2006
Location: France (95)
Old 01-09-2008 , 14:06   Re: default speed
Reply With Quote #5

Depends on weapon in cs, but may be different in HL.

You can check your current speed and your maxspeed with this plugin, just type /speed in tchat :

Dislay : current speed / maxspeed

PHP Code:
#include <amxmodx>
#include <fakemeta>

#define MAX_PLAYERS    32

new bool:g_bSpeed[MAX_PLAYERS+1]

public 
plugin_init() {
    
register_plugin("Speed""0.1""connorr")

    
register_forward(FM_PlayerPreThink"fwdPlayerPreThink")

    
register_clcmd("say /speed""speedSwitch")
}

public 
client_putinserver(id) {
    
g_bSpeed[id] = false
}

public 
speedSwitch(id)
{
    if(!
g_bSpeed[id])
        
g_bSpeed[id] = true
    
else
        
g_bSpeed[id] = false

    client_print
(idprint_chat"[AMXX] You have %s speed info."g_bSpeed[id] ? "enabled" "disabled")
    return 
PLUGIN_CONTINUE
}

public 
fwdPlayerPreThink(id)
{
    if(!
is_user_alive(id) || !g_bSpeed[id])
        return 
FMRES_IGNORED

    
static Float:fVelocity[3], Float:fSpeedFloat:fMaxspeed
    pev
(idpev_maxspeedfMaxspeed)

    if( 
pev(idpev_flags) & FL_ONGROUND )
    {
        
pev(idpev_velocityfVelocity)
        
fSpeed vector_length(fVelocity)
    }
    
client_print(idprint_center"%.0f / %.1f"fSpeedfMaxspeed)
    return 
FMRES_HANDLED

__________________
- tired and retired -

- my plugins -
ConnorMcLeod is offline
Exolent[jNr]
Veteran Member
Join Date: Feb 2007
Location: Tennessee
Old 01-09-2008 , 15:38   Re: default speed
Reply With Quote #6

the most common is 250, which (that i know of) is used with knife, usp, and glock (maybe nades)

260 is used with the scout

the rest are just slower than 250

320 is like superspeed
__________________
No private work or selling mods.
Quote:
Originally Posted by xPaw View Post
I love you exolent!
Exolent[jNr] is offline
ConnorMcLeod
Veteran Member
Join Date: Jul 2006
Location: France (95)
Old 01-09-2008 , 16:36   Re: default speed
Reply With Quote #7

Quote:
Originally Posted by X-olent View Post
the most common is 250, which (that i know of) is used with knife, usp, and glock (maybe nades)

260 is used with the scout

the rest are just slower than 250

320 is like superspeed
Did you read vlad post ?
__________________
- tired and retired -

- my plugins -
ConnorMcLeod 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 15:48.


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