Siema, mam skrypta na zakladnie stealth ringa jak wieciej niz 3 potwory ale po zabiciu nie zdejmuje. HELP
local config = {
monsterLimit = 3,
monsterList = {"Tarantula", "orc berserker", "Cyclops Drone", "Cyclops Smith"},
EnergyRingID = 3049,
}
function getMonsterCount()
local count = 0
for i = CREATURES_LOW, CREATURES_HIGH do
local creature = Creature.GetFromIndex(i)
if (creature:isValid()) and creature:ID() ~= Self.ID() then
if (creature:isOnScreen() and creature:isVisible() and creature:isAlive()) then
local name = creature:Name()
if(table.find(config.monsterList, name, true))then
count = count + 1
end
end
end
end
return count
end
while(true)do
local curRing = Self.Ring().id
local eneRing = getActiveRingID(config.EnergyRingID)
local secRing = getActiveRingID(config.SecondRingID)
if (getMonsterCount() >= config.monsterLimit and curRing ~= eneRing) then
Self.Equip(config.EnergyRingID, "ring")
elseif (getMonsterCount() < config.monsterLimit) then
if ((Self.ItemCount(config.SecondRingID) > 0 or Self.ItemCount(secRing) > 0) and curRing ~= secRing) then
Self.Equip(config.SecondRingID, "ring")
elseif ((Self.ItemCount(config.SecondRingID) < 1 and Self.ItemCount(secRing) < 1) and curRing ~= TrashRingID) then
Self.Equip(config.TrashRingID, "ring")
end
end
sleep(400)
end
w local config dodaj wartość SecondRingID i przy tym ID np. crystal ringa, którego musisz nosić
powinna wtedy działać
mógłby mi ktoś podrzucić link do jakiegoś tutoriala dla debila, jak się posługiwać tym botem? bo nie mam pojęcia po prostu, ze wszystkimi botami sobie radziłem, tutaj nawet nie wiem jak uruchomić skrypt, wszystko zrobione w grze w postaci jakichś pierdolonych tibijskich okienek, nie ma żadnych graficznych settingów backpacków etc?
Zakładki