Hi so this is my small plugin, im making very small Mod (That only replaces Models) so this is my small code:
PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "Me"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
new gun[] = models/soccergun/gun.mdl
new bullet[] = models/soccergun/bullets.mdl
static const TeamMascots[2][] = {
"models/terrgunmodel.mdl"
"models/ctgunmodel.mdl"
}
Can someone help me so each gun model for each team (Separate guns for CT and T)
And I need to do the same with bullets, too, so each team will have their own gun and bullet.
Thanks

EDIT: Not replace maybe, but use those models instead of the original ones.