Szukam skryptu do NG żeby na pasku na górze pokazywało ile zostało many do następnego mlvla. Podobno to zależy od profesji, nie jestem pewien ale jeśli tak to szukam dla druta.
Wersja do druku
Szukam skryptu do NG żeby na pasku na górze pokazywało ile zostało many do następnego mlvla. Podobno to zależy od profesji, nie jestem pewien ale jeśli tak to szukam dla druta.
Witam,
Zna ktoś zaufaną stronke z waypointami/skryptami z expami na rooku? Prosze o szybką odpowiedź, bardzo mi zależy,
Alf.
@Zalezy do jakiego bota.
Posiadam Duzo do NG, kilka do TA.
Oczywiście, że do NG. Jeśli możesz to wklej tutaj all co masz. NA ROOKU pamiętaj.
/alF!
Achtung.
Jeżeli uważasz że ten post jest za długi to go nie czytaj:d
Raty:
10 rodzaji pacc/facc
Wolfy:
2x pacc
1 x z bearami facc
Trolle:
1 x facc
4x pacc
Super oferta:
Caly pacc:
Trolle, wolfy, snake (nie jestem pewien nowych spiderow i skieletow)
\_Pozdro:d
Prosze wyslij mi to na pw. Bo za duży offtopic robimy. ;d
/alf!
Pokazywania w pasku nie znalazłem, ale jest skrypt, który pokaże brakującą manę po wpisaniu jakiegoś słowa.Cytuj:
barims napisał
Oczywiście pokazuje mniej więcej, bo dokładne obliczenie brakującej many jest niemożliwe.
Kod PHP:Const KeyWord='mlvl'; // KeyWord to check mana needed procedure Event_Message(Channel: integer; Name, Text: String); begin updateworld; If Name=Self.Name then If Pos(KeyWord, Text) <> 0 then Self.DisplayText('Mana needed to next Magic Level ('+inttostr ( (1.1^( Self.Skills.Magic.Level )*1600/100) * (100 - Self.Skills.Magic.Percentage) ) +')'); end; begin while not terminated do begin processEvents; sleep(150); end; end;
forums.tibiabot.comCytuj:
alfonsik napisał
#up.
Gray, a nie znasz polskiej strony? Bo z moim angielskim to dużo nie zrozumiem :]. Chyba, że mógłbyś tu wkleić skrypty, jeśli Ci się chce. Bardzo byłbym wdzięczny.
/alf
Czesc!!
Ma ktos moze skrypta do ng, ze gdy monk ma ponizej 30%hp to przestaje go bic, i zaczyna gdy ma 60%. Z gory dziekuje:P
Pozdrawiam
Kod PHP:Const StopAt=30;//Stop Atack at 30% hp AttackAt=60;//Retrum atack at 60%+ hp TrainName=['Monk'];// var creature:tcreature; function GetCreatureByNameHPHIGH(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 if Creatures.Creature[x].z=Self.Z then if Creatures.Creature[x].Health>AttackAt then begin Result := Creatures.Creature[x]; Exit; end; end; end; function Attacking: boolean; var x: integer; begin Result := False; for x := 0 to Creatures.Count - 1 do begin if x >= Creatures.Count then Break; if Creatures.Creature[x].Attacking then begin Result := True; Exit; end; end; end; function GetAttackedCreature: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].Attacking=true then begin Result := Creatures.Creature[x]; Exit; end; end; end; begin while not Terminated do begin UpdateWorld; if not attacking then begin For x:=low(TrainName) to high(trainName) do begin If self.attacking<>0 then break; Creature:=GetCreatureByNameHPHIGH(TrainName[x]); if Creature <> nil then creature.attacking:=true; sleep(100); updateworld; end; end; if attacking then begin Creature:=GetAttackedCreature; if Creature <> nil then if creature.Health < StopAt then creature.attacking:=false; end; sleep(1000); end; end;
szukam skrypta do ElfBot 8.31. Szukam pewnego skryptu, a mianowicie na podmienianie bp. Dajmy na to że mam na sobie 1 bp z mf, i gdy wypije mi ten cały bp, podnosi bp mf z podemnie, a wyrzuca ten "pusty". Ma ktoś taki skrypt? który działa na tej zasadzie? Musi wywalać puste bp z mf i zmieniać na nowe...
Prosze o napisanie skryptu do bota tibia auto lub opisanie jak to ustawic jezeli wogole jest taka opcja:
Bot zaklada tarcze gdy postac ma ponizej 300 hp
Witam.
Mam strasznie wymagajace poszukiwania i możliwe że nie ma takiego skryptu:d
Ma byc do NG pod Tibie 8.4;]
A zatem:
Chce postawic bota na cave ratach i chce żeby jadl serek, lootal ciastka (Cookie) i ich nie jadl;/
Chodzi o to że na Rookgaardzie maja swoja wartosc :P
\_ Hail temu kto to zrobi:P
Sprawa wygląda tak, że gdy masz właczone lootowanie (czy tam jakąś inną opcję cavebota), bot będzie próbował zjeść wszystko co znajdzie w otwartych pojemnikach (plecaki, ciała, etc) i nie ma żadnego sposobu żeby powstrzymać go od jedzenia.
Znalazłem tylko jeden sposób, ale nie jestem pewien czy zadziała.
Ten skrypt powinien przekładać ciastka do arrow slotu (najlepiej żeby był wolny) i możliwe że bot nie będzie tego jadł.Kod PHP:Const Loot_Food = [3598] Var Looting: Boolean Procedure Event_ContainerOpened(Index, ID: integer; Name: String); begin Looting := True; end; Function GetItemFromOpenBackpack(ID, Index: integer): TItem; var x: integer; y: integer; begin Result := nil; for x := 0 to Self.Containers.Count - 1 do begin if x >= Self.Containers.Count then Break; if x = Index then Continue; for y := 0 to Self.Containers.Container[x].Count - 1 do begin if y >= Self.Containers.Container[x].Count then Break; if Self.Containers.Container[x].Item[y].ID = ID then begin Result := Self.Containers.Container[x].Item[y]; Exit; end; end; end; end; Function SortLoot: Boolean; var Item: TItem begin Result := False for x := Low(Loot_Food) to High(Loot_Food) do begin if x > High(Loot_Food) then break; Item := GetItemFromOpenBackpack(Loot_Food[x], x); If Item <> nil then begin Item.MoveToBody(Self.Arrow, 0); Result := True; Exit; end; end; end; begin Looting := False while not Terminated do begin ProcessEvents; UpdateWorld; if Looting then begin Looting := SortLoot; end; Sleep(100); end; end;
Pogrzebie;]
Dzieki
Niestety nie dziala, zjadlo mi ciastko i wisze koledze 300gp;p