说明啊大哥
做个记号
不错,下载来用用,感谢
这个不错的啊。。
只可惜没分了!
只可惜没分了!
wqewqewqewqewqewq
貌似很复杂的样子啊。。
qeqewqewqewqewqe
#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")
}
}
}
}