Omg >.> look at this and stop bumping... is just a simple e.g :
Code:
new check_points[33];
//.....
public my_function(id) //maybe client prethink()
{
new target, body, distance = 999999;
get_user_aiming(id, target, body, distance);
if(is_user_connected(target))
{
check_points[target]; //dunno , sum somewhere....
new ip[32];
get_user_ip(target, ip, sizeof ip - 1, 1);
new country[32];
geoip_country(ip, country, sizeof country - 1);
new player_time = get_user_time(target, 1);
new Buffer[256];
format(Buffer, sizeof Buffer - 1, "CheckPoints: %d | Contry : %s | Time : %d", check_points[target], country, player_time);
message_begin(MSG_ONE, get_user_msgid("StatusText"), _, id);
write_byte(0);
write_string(Buffer);
message_end();
}
}
__________________