Sign in to follow this
Followers
0

[закрыто] Выключается сервер через некоторое время
Started by
Dimo3rfa
,
Рекомендованные сообщения
Не найдено.
3 posts in this topic

This topic is now closed to further replies.
Sign in to follow this
Followers
0
-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By GhostWill
Первый способ с админ проверкой:
public OnPlayerClickMap(playerid, Float:fX, Float:fY, Float:fZ) { if(pInfo[playerid][admin] != 0) return 1; SetPlayerPos(playerid,fX,fY,fZ); return 1; } Второй способ без проверки на админку:
public OnPlayerClickMap(playerid, Float:fX, Float:fY, Float:fZ) { return SetPlayerPos(playerid,fX,fY,fZ); }
-