View Single Post
Chivas2973
Veteran Member
Join Date: Mar 2004
Location: Wisconsin
Old 10-01-2004 , 21:44  
Reply With Quote #14

Quote:
Originally Posted by velcroy
i changed this

public model(id) {
if ( !is_user_alive(id) ) return PLUGIN_CONTINUE
// Weapon Model change thanks to [CCC]Taz-Devil
Entvars_Set_String(id, EV_SZ_viewmodel, "models/vash/v_deagle.mdl")
new iCurrent
iCurrent = FindEntity(-1,"weapon_deagle")
while(iCurrent != -1) {
iCurrent = FindEntity(iCurrent,"weapon_deagle")
}
return PLUGIN_HANDLED

to this

public model(id) {
if ( !is_user_alive(id) ) return PLUGIN_CONTINUE
// Weapon Model change thanks to [CCC]Taz-Devil
Entvars_Set_String(id, EV_SZ_viewmodel, "models/vash/v_deagle.mdl")
new iCurrent
iCurrent = FindEntity(0,"weapon_deagle")
while(iCurrent != -1) {
iCurrent = FindEntity(iCurrent,"weapon_deagle")
}
return PLUGIN_HANDLED

and it still didnt work!
Change this too
__________________
Chivas2973 is offline