takie teksty zawsze najbardziej wkurwiajaące
Wersja do druku
postawa roszczeniowa jeszcze bardziej
a wystarczy słowo proszę
radze uważać...
http://i59.tinypic.com/34yy1zd.jpg
W kazdym bocie jest wirus
np jest w tym temacie kilka stron wczesniej
Jakaś instrukcja do tego? Robie według instrukcji nic nie patchuje bo się po prostu nie da i wogóle nie współpracuje z tą wersją Tibii( najwnowszą) prawdopodobnie lipny crack
@ProEda ; pomusz mi jeste janusz
Intrukcja do tego? Wogóle nie współpracuję z Tibia 10.81 Piszę unrecognized tibia version? Was there an update?
Uzywam tego co wrzucił @ProEda kilka stron wcześniej nie wiem co to za wersja nigdzie nie pisze, poprostu włączam według instrukcji która jest w tym cracku po angielsku no i nic nie mogę inject XenoBota.
Pezet jak dasz radewrzucisz bota i cracka tutaj?
a moze by tak zuptadowac xeno pod najnowsza tibie
i dopiero uzyc crack?
-,-
tylko że się nie da zupdateować :) i przez ten program - crack(brak jakichkolwiek reakcji) i przez samego xenobota który się wyłącza
po co sie bawic w jakies cracki gdzie trzeba zrobic milion rzeczy żeby to włączyć jak na pandorium masz zwykłego cracka, jedyna rzecz jaką musisz umieć to czytanie ze zrozumieniem i angielski na poziomie 5 klasy SP.
////////////////
powie mi ktoś co jest źle lub jak to działa?
mam obok siebie np. tarantule, rata i boga i ni chuj nie bijeCytuj:
local PvPSafe = true
local Attacks = {}
--[[
Options:
words - words of spell to cast
creatures - table of creatures to consider, if you disclude this it will consider all
count - amount of creatures in order to cast
range - distance from self to consider creatures
padding - for pvpsafe, if enabled each spell must have a padding setting, distance from self players must be in order to cast
needTarget - for spells that require a target, no need for a count or padding if this is enabled
]]--
Attacks[3] = {words = 'exori', creatures = {'Mutated Rat','Bonebeast','Bog Raider','Earth Elemental', 'Giant Spider','Kollos','Poison Spider','Tarantula'}, count = 3, range = 1 }
Module.New('auto_attack', function()
for _, data in ipairs(Attacks) do
if (not PvPSafe) or (Self.isAreaPvPSafe(data.padding, true)) then
if data.needTarget then
local target = Creature.New(Self.TargetID())
if (data.creatures and table.find(data.creatures, target:Name(), false)) or (not data.creatures) then
if targetistanceFromSelf() <= data.range and Self.CanCastSpell(data.words) then
Self.Cast(data.words)
end
end
else
local count, mob = 0, Self.GetTargets(data.range)
if data.creatures then
for i = 1, #mob do
if mob[i]:isOnScreen() and table.find(data.creatures, mob[i]:Name(), false) then
count = count + 1
end
end
else
count = #mob
end
if count >= data.count and Self.CanCastSpell(data.words) then
Self.Cast(data.words)
end
end
end
end
end)