Raised This Month: $32 Target: $400
 8% 

[help]How to change w_hegrenade.mdl???


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
rsdtt
Senior Member
Join Date: Oct 2009
Old 01-22-2010 , 06:34   [help]How to change w_hegrenade.mdl???
Reply With Quote #1

I write this but failed..

public plugin_init()
{
register_event("CurWeapon", "Event_CurWeapon1", "be", "1=1")
register_event("DeathMsg","gdutleiw","a")
register_plugin(PLUGIN,VERSION,AUTHOR)
}
public gdutleiw()
{
new Weapon_ID = read_data(2)
if(Weapon_ID == CSW_HEGRENADE){
entity_set_model(CSW_HEGRENADE,"models/w_molotov.mdl")
}

}

Last edited by rsdtt; 02-15-2014 at 05:51.
rsdtt is offline
NiHiLaNTh
Way Past Expiration
Join Date: May 2009
Location: Latvia
Old 01-22-2010 , 07:36   Re: [help]How to change w_hegrenade.mdl???
Reply With Quote #2

try this
Code:
#include < amxmodx >
#include < fakemeta >

new const w_grenade_model [ ] = "models/w_hegrenade.mdl"

public plugin_precache ( )
{
     precache_model ( w_grenade_model )
}

public plugin_init ( )
{
     register_plugin ( "New w_ model", "1.0", "NiHiLaNTh" )

     register_forward ( FM_SetModel, "fw_SetModel" )
}

public fw_SetModel ( Entity, const Model [ ] )
{
      if ( !pev_valid ( Entity ) )
              return FMRES_IGNORED

      if ( equal ( Model [ 7 ], "w_he", 4 ) )
      {
              engfunc ( EngFunc_SetModel, Entity, w_grenade_model )
              return FMRES_SUPERCEDE
      }
      return FMRES_IGNORED
}
__________________

NiHiLaNTh is offline
Send a message via Skype™ to NiHiLaNTh
rsdtt
Senior Member
Join Date: Oct 2009
Old 01-22-2010 , 08:12   Re: [help]How to change w_hegrenade.mdl???
Reply With Quote #3

Thinks!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!
rsdtt 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 07:33.


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