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.
. 
#define EVOLUTION_LEVEL 5
new g_point[33] // 1 server + 32 players = 33 <<< cái này để lưu point của mỗi player :D
public zp_user_infected_post(victim,infector)
{
g_point[victim] = 0 // Trả về 0 mỗi lần bị cắn , reset point của thằng bị cắn về 0
if(g_point[infector] < EVOLUTION_LEVEL ) // nếu nhỏ hơn điểm để evolution << nếu con zombie cắn có số điểm nhỏ hơn điểm iu cầu để biến hóa thì tăng point lên 1
{
g_point[infector]++ // Nghĩa là cộng thêm 1 , mún cộng thêm bao nhiêu thì += số
client_print(infector,print_chat,"[CS] Point : %d",g_point[infector])
} else {
evolution(infector) // <<< nếu ko ( tức = số point iu cấu , thì đột biến con zombie cắn (ìnector))
}
}
evolution(id)
{
client_print(id,print_center,"[CS] Ban da tien hoa")
}

public zp_user_humanized_post(id)
{
g_exp[id] = 0
}
uh Evolution là thế mà![]()
_____________________
