This only edits the client-side, or sprite of the ammo.. Is there anyway else to edit, or am I doing something wrong?..
Code:
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
public plugin_init()
{
register_event("CurWeapon", "CurWeapon_Event", "b")
}
public CurWeapon_Event(id)
{
message_begin(MSG_ONE,get_user_msgid("CurWeapon"),{0,0,0},id)
write_byte(2)
write_byte(1)
write_byte(50)
message_end()
}