Недавнее содержимое от ChickenYaki

  1. C

    Вопросы по Lua скриптингу

    require "lib.moonloader" require "lib.sampfuncs" function main () if not isSampAvailable () or isCleoLoaded () or isSampfuncsLoaded () then end sampAddChatMessage ('[AUTOENGINE]', - 1) toggleEngine () while true do wait (0) end end function toggleEngine ()...
  2. C

    Вопросы по Lua скриптингу

    How to know when player get in a car and get out a car?
  3. C

    Исходник Информация SF.lua | v1.1-beta

    I can not use SFlua or my script will not work? I required "lib.sampfuncs" and "lib.moonloader"
  4. C

    Вопросы по Lua скриптингу

    Q.1: In moonloader, how do we know how to track the memory addresses Q.2: How can I compile my moonloader script (Version: 0.27)
  5. C

    Исходник Информация SF.lua | v1.1-beta

    I am new to this, but I used require "lib.SFLua" but not required?
  6. C

    Информация MoonLoader - обсуждение

  7. C

    Информация MoonLoader - обсуждение

    How to know if a player is driving even he is out of my sight ?
  8. C

    Вопросы по Lua скриптингу

    How to send command when player is connected to a server and spawned ?
  9. C

    Вопросы по Lua скриптингу

    What is GXT ?
  10. C

    Вопросы по Lua скриптингу

    require 'lib.sampfuncs' function main() repeat wait(0) until isSampAvailable() sampRegisterChatCommand('distTo', distTo) while true do wait(0) end end function distTo(id) if id == ' ' or id ~= id:match('%d+') then sampAddChatMessage('/dist to <ID>', -1)...
  11. C

    Вопросы по Lua скриптингу

    How to get my car ID or another player's car ID
  12. C

    Вопросы по Lua скриптингу

    How to know the target player is near or not ? and how to find the distance bettwen the target and me ?
  13. C

    Вопросы по Lua скриптингу

    How to get player skin ?
  14. C

    Вопросы по Lua скриптингу

    [code = lua] require 'lib.sampfuncs' function main () if not isSampLoaded () or not isSampfuncsLoaded () then return end while isSampAvailable () do wait (100) end sampRegisterChatCommand ('neartest', test) wait (-1) end function test (id) if id ~ = '' and id == id: match...
  15. C

    Вопросы по Lua скриптингу

    Man , how to get passenger's health ?