33 lines
691 B
Lua
33 lines
691 B
Lua
function auto_id_log()
|
|
|
|
auto_id_circus()
|
|
|
|
end
|
|
|
|
function auto_id_circus()
|
|
|
|
accesoire = {3100001,3100002,3100003,3100004,3100005,3100006,3100007,3100008,3100009,3100010,3100011,3100012,3100013,3100014 ,3100015,3100016,3100017,3100018,3100019}
|
|
accesoire_rdmopt = {101,101,101,106,101,101,104,102,107,107,105,102,103,105 ,108,109,110,111,111}
|
|
|
|
for iweapons195 = 1, table.getn(accesoire) do
|
|
|
|
if find_item(accesoire[iweapons195]) > 0 then
|
|
|
|
temp = accesoire[iweapons195]
|
|
local handle_array = get_item_handle_list(temp)
|
|
|
|
for i = 1, table.getn(handle_array) do
|
|
|
|
local handle = handle_array[i]
|
|
identify_item(handle,accesoire_rdmopt[iweapons195])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|