EPacker2
3D-моделист
- Сообщения
- 1,040
- Реакции
- 759
Хочу сделать плагин выводящий время в TOP
Примерная часть кода:
Помогите сделать как положено :)
Примерная часть кода:
PHP:
public OnClientAuthorized(client, const String:auth[])
{
if(client > 0 && IsClientInGame(client) && !IsFakeClient(client))
{
new time = GetTime()
new String:nowtime[256]
FormatTime(nowtime, sizeof(nowtime), "%H:%M:%S", time)
PrintTopToAll(color, "Время: %s", nowtime); //не знаю какую команду вставить
}
}