dajcie cynk jak wiecie kto sprzedaje magebota :v
Wersja do druku
dajcie cynk jak wiecie kto sprzedaje magebota :v
Jeśli ktoś chce kupić jakieś CC na Shadow to mam na sprzedaż dużą ilość ;)
A co do magebota to nie wiem ile key'i mogę wyrobić na 1 maila :P
Także jak kilka to za CC mogę wyrobić ;)
może chce być w topie :D
potrzebowalem te rybki do sea serpentów. kurwa wbijam na ss(na svargrond) i full respik, myslalem, ze padne. po 10 sekundach 10 botów wbija, ja pierdole xDDDD
dej ktos linka do skrypta na frosty co :PP
Chłopaki, mam na sprzedaż 2 konta, na jednym 282 ED + 176 EK + 130 MS, na drugim 200 EK + 197 RP + 120 ED. Postacie sprzedaje z eq i z kasą, jest to jakieś 10kk+. Zainteresowanym mogę podesłać screeny ze stanem tych postaci, czyli jakie posiadają addony, mounty, eq, itp. Za całość chciałbym uzyskać 2x doładowanie za 10zł z T-mobile. Wydaję mi się, że jest to rozsądna cena. Posiadam allegro.
//Z regulaminu:
3. Obowiązuje całkowity zakaz pisania postów zawierających jedynie ofertę sprzedaży, bądź kupna przedmiotu/postaci, można natomiast umieścić to jako dodatek do regulaminowego posta.
Nie zapominajcie o tym, bo syf w temacie będzie a to działa na niekorzyść każdego.
nie wiem co ci ludzie w glowie maja zeby bocic na 240lvl na sea serpentach lol
ej ziomky dziwna rzecz sie wydarzyla
wiadomo, boce sobie na ss, zostawilem postac na bocie, laptopa polozylem na lozko(otwartego) i poszedłem pobiegac
wracam, a ekran czarny(wygaszacz), porzuszylem kursorem i ukazuje mi sie okno startowe tibii. mysle sobie "kurwa padlem" loguje sie, a postac dalej expi xDDD
jak to dziala
pewnie masz wlaczone oszczedzanie energii po jakims czasie bez roznania myszkiem komp przechodzi w stan uspienia a char Ci sie zalogował bo moze byl reconnect
ale wczoraj bylo to samo tylko bez wylogowania sie
mialem farta, ze nie padlem?
moje pytanie brzmi
czy moge bez strachu odchodzic od lapqa? :P
kurwa wlasnie jakis zjeb mnie ujebal, bo bot wal exori nawet jak gracz jest w poblizu. jak to zmienic?
tu masz taki bardziej zaawansowany skryptKod:local config = {
attacks = {
['exori ico'] = {
min = 1, -- minimum targets in to use this spell
spellRadius = 1, -- range to count targets to attack
checkRadius = 1, -- safe range to check for players (should always be larger or at least equal to spellRadius)
countPlayers = false, -- include players in the target count (incase you are intending on attacking players)
attackMode = 'none' -- none, enemies, strangers, friends, everyone
},
['exori hur'] = {
min = 2, -- minimum targets in to use this spell
spellRadius = 1, -- range to count targets to attack
checkRadius = 1, -- safe range to check for players (should always be larger or at least equal to spellRadius)
countPlayers = false, -- include players in the target count (incase you are intending on attacking players)
attackMode = 'none' -- none, enemies, strangers, friends, everyone
},
['exori'] = {
min = 3,
spellRadius = 1,
checkRadius = 4,
countPlayers = false,
attackMode = 'none'
},
['exori gran'] = {
min = 4, -- minimum targets in to use this spell
spellRadius = 1, -- range to count targets to attack
checkRadius = 4, -- safe range to check for players (should always be larger or at least equal to spellRadius)
countPlayers = false, -- include players in the target count (incase you are intending on attacking players)
attackMode = 'none' -- none, enemies, strangers, friends, everyone
}
}
}
function xrayPlayersAround(radius, ...)
local radius = 4
local t = {...}
local players = {}
if (radius == 0) then
radius = 8
end
for i = CREATURES_LOW, CREATURES_HIGH do
local creature = Creature.GetFromIndex(i)
if (creature:isValid()) and creature:ID() ~= Self.ID() then
if creature:isVisible() and creature:isAlive() then
if creature:isPlayer() then
local name = creature:Name()
local selfpos = Self.Position()
local creaturepos = creature:Position()
local distance = math.max(math.abs(selfpos.x - creaturepos.x), math.abs(selfpos.y - creaturepos.y))
if (distance <= radius) then
if not table.contains(t, name) then
table.insert(players, creature)
end
end
end
end
end
end
return players
end
function rayPlayersAround(radius, ...) -- Count players around. Names are excluded from the count.
if xrayPlayersAround(radius, ...) then
return #xrayPlayersAround(radius, ...)
else
return 0
end
end
function getTargetCount(pos, atkRadius, chkRadius, incPlayers, atkMode)
local n = 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(getDistanceBetween(creature:Position(), pos) <= chkRadius)then
if(atkMode == 'none' and (creature:isPlayer()))then
return false
elseif(atkMode == 'enemies' and (creature:isFriendly() or creature:isInnocent()))then
return false
elseif(atkMode == 'strangers' and creature:isFriendly())then
return false
elseif(atkMode == 'friends' and creature:isInnocent())then
return false
end
if(getDistanceBetween(creature:Position(), pos) <= atkRadius)then
if(not creature:isPlayer() or incPlayers)then
n = n + 1
end
end
end
end
end
end
return n
end
function think()
for spell, dat in pairs(config.attacks)do
local amnt = getTargetCount(Self.Position(), dat.spellRadius, dat.checkRadius, dat.countPlayers, dat.attackMode)
if(amnt)then
local _max = (dat.max==nil) and amnt or dat.max
if(amnt >= dat.min) and (amnt <= _max) and rayPlayersAround(radius) == 0 then
if(type(spell) == 'number')then
Self.UseItemWithMe(spell)
wait(900, 1200)
elseif(Self.CanCastSpell(spell))then
if(dat.needTarget)then
local target = Creature.GetByID(Self.TargetID())
if(target:isOnScreen() and target:isVisible() and target:isAlive())then
if(target:DistanceFromSelf() <= dat.spellRadius)then
Self.Say(spell)
wait(600, 1000)
end
end
end
Self.Say(spell)
wait(600, 1000)
end
end
end
end
end
while (true) do
local creature = Creature.GetByID(Self.ID())
think()
if Self.ItemCount(236) >= 1 and (creature:HealthPercent() <= 1) then
Self.UseItemWithMe(236)
sleep(math.random(200, 600))
break
end
wait(200)
end
gdzie bocic 130ms? hive zajete, frosty zajete i nie mam pomyslow :C