Thanks found my mistake
My Code works now
PHP Code:
public displaytime(id)
{
new hours = (secounds[id] - (secounds[id] % 3600)) / 3600
new mins = (secounds[id] - (hours*3600)) / 60
new seconds = (secounds[id] - (hours*3600) - (mins*60))
ColorChat(id, RED, "%s You spend already %i Hours %i Minutes und %i Secounds on our Server",PREFIX, hours, mins, seconds)
}
__________________