Piszę z pamięci, więc może być źle:
auto 200 if [$attacked.name ? 'ghost'] {hmm target}
musi atakować ghosta.
Wersja do druku
Piszę z pamięci, więc może być źle:
auto 200 if [$attacked.name ? 'ghost'] {hmm target}
musi atakować ghosta.
Potrzebuje skryptu do skilowania. Mam 20 lvl Knight skile 46/43. Mi się zdaje że muszę iść na roty skilować :D Więc poproszę o skrypt na roty np. na Fibuli gdzieś w pobliżu Thais :D Z góry dzięki :D
PS. Skrypt pod bota NG :D
Fibula Rotworms.
Proszę ; ]
http://www.speedyshare.com/985942279.html
Poszukuję skryptu do tibiabot ng na alarmowanie gdy skończą mi się soft bootsy oraz na walenie z exori hur
Z góry dzięki
Nie wiem jak się robi ten kod taki jakby ktoś mogl powiedziec to thanks a to scrypt na exori hur
const
MonsterName = 'Nazwa Potwora' ;
Attack_Spell = 'exori hur' ;
Min_Mana = 100 ;
Min_Monster_HP = 1 ;
Max_Monster_HP = 100 ;
Range = 5 ;
var
x: Integer;
Creature:TCreature;
function GetCreatureByID(ID: integer): TCreature;
var
x: integer;
begin
Result := nil;
for x := 0 to Creatures.Count - 1 do
begin
if x >= Creatures.Count then Break;
if Creatures.Creature[x].ID = ID then
begin
Result := Creatures.Creature[x];
Exit;
end;
end;
end;
function GetCreatureByName(Name: string): TCreature;
var
x: integer;
begin
Result := nil;
for x := 0 to Creatures.Count - 1 do
begin
if x >= Creatures.Count then Break;
if Creatures.Creature[x].Name = Name then
begin
Result := Creatures.Creature[x];
Exit;
end;
end;
end;
function IsCreatureAttackable(c: TCreature): boolean;
begin
UpdateWorld;
Result := False;
if (c.Z = self.Z) and (abs(c.X-self.X) <= Range) and (abs(c.Y-self.Y) <= Range) and (c.outfit<>0) and (c.Health >= Min_Monster_HP) and (c.Health <= Max_Monster_HP) then
begin
Result := True;
end;
end;
while not Terminated do
begin
UpdateWorld;
Creature := GetCreatureByID(Self.Attacking);
if (Self.Mana >= Min_Mana) and (Creature <> nil) then
for i := low(monstername) to high(monstername) do
begin
if (MonsterName[i] = Creature.Name) and (IsCreatureAttackable(Creature)) then
begin
Self.Say(Attack_Spell);
sleep(2000);
end;
end;
sleep(100);
end;
[elfbot] Szukam hotkeya, który:
Włączy/wyłączy cavebot
Włączy/wyłączy targeting
if [$targetingon || $caveboton] {statusmessage 'ElfBot NG - CaveBot Paused' | stopattack | settargeting off | setcavebot off | wait 400 | end} | if [$targetingon == 0 || $caveboton == 0] {statusmessage 'ElfBot NG - CaveBot Resumed' | settargeting on | setcavebot on | wait 400}
Łap na ten cave bot i targeting. Jak raz klikniesz to wyłącza, jak drugi to włącza :p
Szukam skrypta ktory ignoruje cobry [zssumonowane przez lizardy na chor,wkurzajace to jest...]
plx fast ;p
SIema szukam skrypta do BlackD PRoxy na 107 ek na Banute zeby pozbierac kase na malpach p army aper fursy itp !!!
Prosze o szybka pomoc !
Potrzebuje 2 skryptów do NG bota mianowicie:
1. Gdy skonczy sie czar utani hur, bot zaraz wlacza od nowa utani hur.
2. Bot atakuje wszystkie mobki na ekranie (w cavehunting atakuje tylko te które zaatakują jego a mi chodzi o wszystkie nawet te ktore nie atakują)
Potrzebuje Skryptu takiego pod tibie ng:
- Gdy mój druid ma 50 many staje w miejscu a gdy nabije spowrotem 200 many dopiero zaczyna ruszać.
szukam skryptu
Pisze na default "Buy iron ore"
Gdy ktos mu odpisze na priv odpisuje "only 500gp"
I gdy ktos podejdzie pisze do niego trade daje trade na 500gp i tylko acceptuje gdy jest iron ore
nie mineły 24h od mojego postu ani nikt nie napisał odpowiedzi na mój post, powinny posypać sie warny.
Ponawiam prośbe o 2 skrypty dla mnie:
1. Gdy skonczy sie czar utani hur, bot zaraz wlacza od nowa utani hur.
2. Bot atakuje wszystkie mobki na ekranie (w cavehunting atakuje tylko te które zaatakują jego a mi chodzi o wszystkie nawet te ktore nie atakują)
Jeśli chcesz inny dźwięk to po prostu zmień linijkę Sound_Path.Cytuj:
Const
Soft_Boots_In_Use_ID = 3549
Sound_Path = 'C:/Windows/Media/Notify.wav'
while not terminated do
begin
UpdateWorld;
if Self.Feet.ID <> Soft_Boots_In_Use_ID then
PlaySound(Sound_Path);
sleep(500);
end;
Atakowanie potworków można ustawić ręcznie... wchodzisz w zakładkę Cavebot, zaznaczasz Attack Monsters, a następnie Target All.Kod:Const
Spell = 'Utani Hur'
MinMana = 60
while not terminated do
begin
UpdateWorld;
if not self.hasting then
if self.mana >= MinMana then
Self.Say(Spell);
sleep(1000);
end;
---------------
Game Support
Szukam skryptu na NG, ktory uzyje czaru exevo gran mas frigo, gdy na ekranie x potworow, jedyne co znalazlem to strzelanie z gfb ;|
Kod:Const
MinMonsters = 5
GFB_ID = 0 // enter the ID of the GFB.
Delay = 1600 // Delay to shoot the rune in millseconds (1000 = 1 second)
ShootOnSelf = 1 // 1: use the rune on your self, 0: use the rune on one of the creatures.
while not terminated do
begin
A := 0;
UpdateWorld;
for i := 0 to creatures.count - 1 do
begin
if (i >= Creatures.Count) or (Terminated) then break;
if Creatures.Creature[i].Z = self.Z then
if Creatures.Creature[i].NPC then
A := A + 1;
end;
if A >= MinMonsters then
begin
if ShootOnSelf
then Self.Containers.UseItemWithSelf(GFB_ID)
else Self.Containers.UseItemWithCreature(GFB_ID,Creatures.Creature[i]);
sleep(Delay);
end;
sleep(500);
end;