- 156
- 14
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Как в этот скрипт добавить команду, чтобы он бесконечно работал (Включения и выключения) и заменить Mountain - на Получить админку. (Ловля админок для нубо рп).
Lua:
function sampGetListboxItemByText(text, plain)
if not sampIsDialogActive() then return -1 end
plain = not (plain == false)
for i = 0, sampGetListboxItemsCount() - 1 do
if sampGetListboxItemText(i):find(text, 1, plain) then
print(i)
sampSendDialogResponse(162,1, i,nil)
return i
end
end
return -1
end
local index = sampGetListboxItemByText('Mountain')
local index = sampGetListboxItemByText('%Mountain.-%a+', false)