require "lib.moonloader"
require "lib.sampfuncs"
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
_, id = sampGetPlayerIdByCharHandle(PLAYER_PED)
name = sampGetPlayerNickname(id)
if name ~= "Reut_Yoshimura" then
sampAddChatMessage("Ваш ник, не Reut_Yoshimura, поэтому скрипт останавливает свою работу.", -1)
thisScript():unload()
end
while true do
wait(0)
end
end