|
发表于 2010-7-3 22:24:38
|
显示全部楼层
来自 中国–广东–惠州–惠城区
15# rsdtt
CurWeapon事件触发太频繁,还是少用为妙。
- #include <amxmodx>
- #include <amxmisc>
- #include <cstrike>
- #include <hamsandwich>
- #define PLUGIN_NAME "New Plug-In"
- #define PLUGIN_VERSION "0.1"
- #define PLUGIN_AUTHOR "zwfgdlc"
- new const AMMOTYPE[][] =
- {
- "",
- "338magnum",
- "762nato",
- "556natobox",
- "556nato",
- "buckshot",
- "45acp",
- "57mm",
- "50ae",
- "357sig",
- "9mm"
- };
- public plugin_init()
- {
- register_plugin(PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR);
- register_event("AmmoX", "event_AmmoX", "be", "1>0","2>0");
- }
- public event_AmmoX(id)
- {
- if (read_data(1) < 11)
- ExecuteHamB(Ham_GiveAmmo, id, 255, AMMOTYPE[read_data(1)], 255);
- }
复制代码 |
|