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

  1. K

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

    там есть мэйн, я просто его сюда не вставил вот весь код local state = false local events = require "lib.samp.events" local encoding = require 'encoding' encoding.default = 'CP1251' u8 = encoding.UTF8 function main() while not isSampAvailable() do wait(200) end...
  2. K

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

    почему после того как скрипт включается, он крашится? вот код: function cmd() state = not state printStringNow("WHH "..(state and "enabled" or "disabled"), 2000) wait(0) while true do if state == true then for id = 0, 2048 do if sampIs3dTextDefined(id) then...