Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 02/01/2023 in all areas

  1. 1 point
  2. 1 point
    it's fixed now the f9 worked on the clean client i downloaded here (from archive) i also learned the proper way to use the passable and unpassable objects in dummy , my problem now is that this client has limit of 400 objects, once i reached that i can't add more objects as it deletes the old ones i already put. .. my friend told me to use other client, it fixed the max limit objects but some functions doesn't work (like f5 and f9) .. i am not sure of what the problem could be, but i think it depends on which client i use to edit the map .. does anyone have a client where i can freely add as many objects as i want and the f5 and f9 function works?
  3. 1 point
    Немного ускорил чтение файла. Pull Request отправлен на GitHub.
  4. 1 point
    Чтобы не быть голословным, накидал примерный вид.. Возможно есть ошибки (не тестировал на живом сервере). -- Массив для функции ItemUse_Mano ItemsM = {} -- {ID предмета, кол-во, тип предмета} ItemsM[1] = {1135, 10, 4} ItemsM[2] = {1136, 10, 4} ItemsM[3] = {1137, 10, 4} ItemsM[4] = {1138, 10, 4} ItemsM[5] = {1139, 10, 4} function ItemUse_Mano( role, Item ) local ItemCanGetSlot = GetChaFreeBagGridNum ( role ) -- Проверка на кол-во слотов if ItemCanGetSlot < 1 then SystemNotice(role, "У вас не хватает слотов в инвентаре для распаковки сундука!") UseItemFailed ( role ) return end -- Переменная для случайного числа local FCData = math.random(1,table.length(ItemsM)) -- Ищем в массиве и выдаем вещь. for FCData in ItemsM do GiveItem ( role , 0 , ItemsM[FCData][1] , ItemsM[FCData][2] , ItemsM[FCData][3] ) end end
  5. 1 point
    Думаю Виктор имел в виду, что моды подходят только под чистый Game.exe.
  6. 1 point
    Так и есть Не могли бы вы пожалуйста посмотреть ещё раз мой game.exe только уже со всеми библиотеками? https://drive.google.com/file/d/1lEFilBL2FcXbHaJP605qlpRG5nL7HAs8/view?usp=share_link
  7. 1 point
    Поправил момент со срабатыванием VirusTotal/Defender Windows. Ссылку обновил.
  • Newsletter

    Want to keep up to date with all our latest news and information?
    Sign Up
×
×
  • Create New...