Thanks Arkshine! But i found my resolution!
BTW i don't want to make a new topic so i will post my next problem here - hope you show me
I./ I make a test speed - change speed to 9999 ro run faster
plugin init()
PHP Code:
RegisterHam( Ham_Item_PreFrame, "player", "fw_PlayerReset_MaxSpeed_Post", 1 )
then
PHP Code:
public fw_PlayerReset_MaxSpeed_Post(id)
{
set_pev(id, pev_maxspeed,9990.0)
}
all var values :
cl_forwardspeed : 9999
cl_backspeed: 9999
cl_sidespeed:9999
sv_maxspeed:9999
But nothing happen - i still run with normal speed ? What is my problem?

Show me
II./ I use
PHP Code:
set_pev(id, pev_viewmodel, 0)
to hide my v_model (try to hide my 1st view model)
It worked but i've got problem when weapon shoot.
If I shoot 5 bullet, sometime just 3 bullet fly out (2 bullet seem doesn't work)
Thanks!