Advertisement
Guest User

Untitled

a guest
Aug 11th, 2017
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. F5::
  2. targ:=getIdByPed(getTargetPed())
  3. if (targ!="-1")
  4.    {
  5.    name:=getPlayerNameById(targ)
  6.    StringReplace, lak, name, _, %A_SPACE%, All
  7.    SendChat("/me снял все аксессуары, закрывающие лицо, с " lak ", затем кинул их на землю")
  8. }
  9. else
  10. {
  11.    target:=getClosestPlayerIdUnit()
  12.    if (target!-"-1")
  13.    {
  14.          nameunit:=getPlayerNameById(target)
  15.          StringReplace, laka, nameunit, _, %A_SPACE%, All
  16.          SendChat("/me снял все аксессуары, закрывающие лицо, с " laka ", затем кинул их на землю")
  17.    } else
  18.    {
  19.       addChatMessage("Ошибка ( Цель далеко либо это полицейский\агент )")
  20.    }
  21. }
  22. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement