- 203
- 102
Lua:
elseif wasKeyPressed(VK_X) then
local valid, ped = getCharPlayerIsTargeting(PLAYER_HANDLE)
if not valid then
sampAddChatMessage("Нет метки.", 0xFFFFFF)
end
if valid and doesCharExist(ped) then
local result, id sampGetPlayerIdByCharHandle(ped)
if result then
sampSendChat("/me заломал руки нарушителю, после чего снял с кобуры наручники")
wait(600)
sampSendChat('/cuff %d', id)
wait(600)
sampSendChat("/me повел нарушителя за собой, придерживая его за руку")
wait(600)
sampSendChat('/gotome %d', id)
end
end
а почему когда после if result then действий больше одного он отказывается работать?
Lua:
elseif isKeyDown(VK_CONTROL) and wasKeyPressed(VK_1) then
local valid, ped = getCharPlayerIsTargeting(PLAYER_HANDLE)
if not valid then
sampAddChatMessage("Нет метки.", 0xFFFFFF)
end
if valid and doesCharExist(ped) then
sampSendChat('/me повел нарушителя за собой, придерживая его за руку')
wait(600)
local result, id = sampGetPlayerIdByCharHandle(ped)
if result then
sampSendChat('/gotome %d', id)
end
end
тут норм работает
хелпаните пж