laoklaole
发表于 2010-11-23 09:27:08
说明啊大哥
mdymdy
发表于 2010-11-25 01:49:06
做个记号
311890
发表于 2011-4-9 10:27:08
不错,下载来用用,感谢
wk703
发表于 2011-6-16 11:16:41
这个不错的啊。。
qq378339982
发表于 2011-9-24 19:44:37
只可惜没分了!
qq378339982
发表于 2011-9-24 19:46:57
只可惜没分了!
zxp001
发表于 2011-11-9 15:20:24
wqewqewqewqewqewq
ckn911
发表于 2011-11-9 15:56:21
貌似很复杂的样子啊。。
zxp001
发表于 2011-11-9 16:00:03
qeqewqewqewqewqe
lili2009
发表于 2011-11-14 18:52:42
#include <amxmodx>
#include <fun>
#include <cstrike>
#include <hamsandwich>
public plugin_init()
{
register_plugin("Free ak/m4", "0.0.1", "not me");
RegisterHam(Ham_Spawn, "player", "FwdPlayerSpawnPost", 1);
}
public FwdPlayerSpawnPost(id)
{
if(is_user_alive(id))
{
switch(cs_get_user_team(id))
{
case CS_TEAM_T:
{
give_item(id, "weapon_ak47")
}
case CS_TEAM_CT:
{
give_item(id, "weapon_m4a1")
}
}
}
}