I edited this code, and I don't know how check if player used 0 checkpoints & 0 teleports
PHP Code:
public show_finish_message(id, Float:kreedztime)
{
new name[32]
new imin,isec,ims, wpn = get_user_weapon( id )
get_user_name(id, name, 31)
kreedztime = get_gametime() - timer_time[id]
imin = floatround(kreedztime / 60.0, floatround_floor)
isec = floatround(kreedztime - imin * 60.0,floatround_floor)
ims = floatround( ( kreedztime - ( imin * 60.0 + isec ) ) * 100.0, floatround_floor )
ColorChat(0, GREEN, "%s^1 finished with ^4%s ^3in^4 %02i:%02i.%02i ^3(^1 CPs: ^4%d^3 | ^1 TPs: ^4%d^3",name,g_weaponsnames[wpn],imin,isec,ims, checknumbers[id], gochecknumbers[id])
}
if(checknumbers[id, 0], gochecknumbers[id, 0] // here need to edit
{
ColorChat(0, GREEN, "%s finished with ^4%s ^3in^4 %02i:%02i.%02i ^3without checkpoints!",name,g_weaponsnames[wpn],imin,isec,ims, checknumbers[id], gochecknumbers[id])
}