Team Fortress Classic: TFC Weapons!
Description: TFC WEAPONS allows any user on the server to pick any weapon(gun) they choose. This is not a amx_command it's in 'say'(Global Chat). Only one gun comes with 25rockets, for ammo which is the RPG(Rocket Launcher). This is not a plugin to abuse it.
Current Version: I have currently released version: "0.1" - - - Watch the update log.
Chat Commands: This will list the basic commands players need to type:
Want More: I might take your thought in adding something to this plugin. I will(no doubt) add more weapons to this( Will be displayed in Update Log ).
Code:
===Update Log===
2/12/07. - Plugin Released.
2/12/07. - Added 3 more weapons.
2/13/07. - Added SuperGun.
PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <tfcx>
#include <fun>
#define PLUGIN "TFC Weapons"
#define VERSION "1.0"
#define AUTHOR "Phantom Warrior"
public plugin_init() {
register_plugin("WeaponMe","0.1","")
register_clcmd("say needrocket","fnSayNeedRocket")
register_clcmd("say needshotgun","fnSayNeedShotGun")
register_clcmd("say needknife","fnSayNeedKnife")
register_clcmd("say needsniper","fnSayNeedSniper")
register_clcmd("say needautorifle","fnSayNeedAutoRifle")
register_clcmd("say needflamer","fnSayNeedFlamer")
register_clcmd("say needrail","fnSayNeedRail")
register_clcmd("say needmedkit","fnSayNeedMedkit")
register_clcmd("say needac","fnSayNeedAc")
register_clcmd("say needsuper","fnSayNeedSuper")
register_clcmd("say needtranq","fnSayNeedTranq")
register_clcmd("say needgrenadelauncher","fnSayNeedGrenLauncher")