- 24
- 6
Скажите что ту изменить чтобы была автоактивация и не было команд
Код:
script_name('AntiParachute')
script_author('ronnyscripts')
local act = true
function main()
repeat wait(0) until isSampAvailable()
repeat wait(0) until sampIsLocalPlayerSpawned()
sampAddChatMessage('[АнтиПарашют]{ffffff} от ронискриптс загружен! Скрипт активирован! Выключить: /antipar',0xcd0000)
sampRegisterChatCommand('antipar',function()
act = not act
sampAddChatMessage('[АнтиПарашют]{ffffff} '..(act and 'оле оле оле скрипт активирован!!!!!!!!' or 'нахуя ты оффнул скрипт чмо лох гитлер'),0xcd0000)
end)
while true do
wait(0)
if act then
if getCurrentCharWeapon(PLAYER_PED) == 46 then
removeWeaponFromChar(PLAYER_PED, 46)
end
end
end
end