Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Ông làm hộ tôi skin mấy khẩu đó được không?http://www.mediafire.com/myfiles.php#4,1 . Đó , link đó có g4u rifle , nhưng bây giờ tôi ngại viết tut, để mai viết hướng dẫn luôn

đệt =.=
làm ơn mắc oán
viết ra cho bõ tức thuithế anh xóa bài này đi cũng dc
.
AI có thể giải thích rõ về NPC và hoạt động của nó ko ?.
trong kia nó ghi là Non-Player character.chắc nó là auto player mà![]()
, cái kaan96 đưa là cái tutorial.
xin plugin bắn ra đường đạn có 2 cái 1 cái là bullet time dùng rồi khi bắn zom thì đạn nó vội ngc lại ko bik fix . còn 1 cái là cái gì advenced laser gì đó quên tên rồi cảm on
#include <amxmodx>
#include <engine>
#include <fun>
#define PLUGIN "Quoc Lo"
#define VERSION "1.0"
#define AUTHOR "Sophia - Dias"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("quoclo1", "entity1")
register_clcmd("quoclo2", "entity2")
}
public plugin_precache()
{
precache_model("models/QL1.mdl")
precache_model("models/QL2.mdl")
}
public entity1(id)
{
new Float:origin[3]
entity_get_vector(id, EV_VEC_origin, origin)
new ent = create_entity("info_target")
entity_set_origin(ent, origin)
entity_set_float(ent, EV_FL_takedamage, 1.0)
entity_set_float(ent, EV_FL_health, 100.0)
entity_set_string(ent, EV_SZ_classname, "func_quoclo1")
entity_set_model(ent, "models/QL1.mdl")
}
public entity2(id)
{
new ent2 = create_entity("info_target")
new Float:origin2[3]
entity_get_vector(id, EV_VEC_origin, origin2)
entity_set_float(ent2, EV_FL_health, 100.0)
entity_set_float(ent2, EV_FL_takedamage, 1.0)
entity_set_string(ent2, EV_SZ_classname, "func_quoclo2")
entity_set_origin(ent2, origin2)
entity_set_model(ent2, "models/QL2.mdl")
}