- 252
- 39
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
- Версия MoonLoader
- .026-beta
Вот код, при нажатии на ПКМ + E ничего не происходит. Помогите
Lua:
script_name("Fam-Helper")
script_author("Jesus_McWood")
script_version("v1.0")
require 'lib.moonloader'
require 'lib.sampfuncs'
local imgui = require 'imgui'
local vk = require 'vkeys'
local encoding = require 'encoding'
encoding.default = 'CP1251'
u8 = encoding.UTF8
local tag = "{FFD700}[Fam-Helper]"
local main_color = "0xFFD700"
local script_version = "v1.0"
local site = "https://www.scriptscorporated.site"
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampAddChatMessage(tag .. " {FFFFFF}Скрипт успешно запущен.", main_color)
sampAddChatMessage(tag .. " {FFFFFF}Автор: {FFD700}Jesus_McWood. {FFFFFF}Версия скрипта: {FFD700}"..script_version..".", main_color)
sampAddChatMessage(tag .. " {FFFFFF}Наш сайт: {FF0000}"..site.."/", main_color)
while true do
wait(0)
if isKeyDown(VK_RBUTTON) and isKeyJustPressed(VK_E) then
result, ped = getCharPlayerIsTargeting(PLAYER_PED)
if result then
r, i = sampGetPlayerIdByCharHandle(ped)
if r then
sampSendChat('/showpass '..i)
end
end
end
wait(1800000)
sampSendChat("/g [ВНИМАНИЕ] Все кто сменит ник на - Имя_McWood - получат заместителя семьи!")
sampSendChat("/g [ВНИМАНИЕ] Все кто сменит ник на - Имя_McWood - получат заместителя семьи!")
sampSendChat("/g [ВНИМАНИЕ] Все кто сменит ник на - Имя_McWood - получат заместителя семьи!")
end
end