Lua || /cuff /frisk и тд

Vladislav25

Известный
Автор темы
18
0
Что не так с кодом? Навожу на челика, отыгровка идет, а не куфает.. и lua скрипт перестает работать, приходится перезагружать. Как сделать правильно отыгровку?

Код:
if isKeyDown(VK_MENU) and isKeyJustPressed(VK_F2) then       
            if not sampIsChatInputActive() and not sampIsDialogActive() then
                    local target = getCharPlayerIsTargeting(playerHandle)
                  sampSendChat("/me нежно снял с пояса наручники и надел их на преступника")
                  wait(1500)
                        sampSendChat("/cuff " .. playerid)                   
            
                
                end
            end
        end
 

dmitri4

Известный
453
79
Lua:
if isKeyDown(VK_MENU) and isKeyJustPressed(VK_F2) then       
    local valid, ped = getCharPlayerIsTargeting(PLAYER_HANDLE)
    if valid and doesCharExist(ped) then
      local result, id = sampGetPlayerIdByCharHandle(ped)
      if result then
        sampSendChat("/me нежно снял с пояса наручники и надел их на преступника")
        wait(1500) sampSendChat("/cuff "..id) 
      end
    end 
end