Potrzebuje scrypta na to że jak mam poniżej 3 Health Ption to daje loga .
Wersja do druku
Potrzebuje scrypta na to że jak mam poniżej 3 Health Ption to daje loga .
Nie testowałem, gdyby nie działał - PW.Kod PHP:Const tItem = 'health potions...'; //To not waste items, i get the text //'Using one of ...' iMin = 3; //When reach this count, logout Var iItem : integer; procedure Event_Notice(Text: String); begin if Pos(tItem, Text) = 0 then Exit; Delete(Text, 1, 13); iItem := StrToInt(Copy(Text, 1, Pos(' ', Text) - 1)); end; While not terminated do begin Sleep(1000); iItem := 0; updateworld; ProcessEvents; if iItem <> 0 then begin if iItem < iMin then begin Self.Logout(true); end; end; end;
Evó
W takim razie chyba nie da się czegoś takiego zrobić, a przynajmniej ja nie widzę możliwości ;\
Potrzebuje skrypta do NG. np. gdy hp spadnie do 500 to pije mana potion i uzywa czaru exura dopóki nie będe mniał 750 hp (potiona pije tylko raz i używa exure, chyba że jeszcze nie będe mniał 750 hp to wypije jeszcze raz i użyje exure. A gdy mane mam na full to nie pije potiona tylko exure używa. A gdy hp spadnie poniżej 300 to używa shp. Czekam na szybką odpowiedź.
#up
Fresh written.Kod PHP:Const MinimumHP = 750 // w pierwszym wypadku MinimumHP2 = 300 // w drugim wypadku NumberOfVialsToDrink = 1 PotionID = 7876 // ZMIEN ID NA ID MANA POTKA PotionID2 = 6666 // ZMIEN NA ID STRONG MANA POTKA MaxMana = 1000 //ZMIEN NA MAX SWOJEJ MANY while not terminated do begin UpdateWorld; if Self.Health <= MinimumHP then begin if Self.Mana <= MaxMana then Self.Containers.UseItemWithSelf(PotionID); for i := 1 to NumberOfVialsToDrink do begin if (terminated = true) then break; Self.Say('exura'); Sleep(2000); end; end; if Self.Health <= MinimumHP2 then begin if Self.Mana <= MaxMana then Self.Containers.UseItemWithSelf(PotionID2); for i := 1 to NumberOfVialsToDrink do begin if (terminated = true) then break; Self.Say('exura'); Sleep(2000); end; end; Sleep(500); end;
potrzebuje skryptu dla palka zeby uciekal przed potworem o 3 kratki w strone poprzedniego waipointa
ofc ng
Ten skrypt powinien działać:
http://forums.tibiabot.com/showthread.php?t=40820
Nie, nie mogłem wkleić: Tekst, który wpisałeś jest za długi! (26100 znaków). Skróć go do 20000 znaków.
Witam szukam scriptu do NG
RANDOM TRADE HEALPER ;] script który , będzie działał jak trade healper , z tym wyjątkiem , że wiadomość będzie wysyłał w przedziale czasowym co 120-140 sekund (np.)
znalazłem już taki scirpt
Tylko , że on nie działa ; xKod PHP:Const Message = 'sell: xxxxxxxxxxxx' SecondsMin = 121 SecondsMax = 140 yell = 1 // 1 -enable, 0 -disable while not terminated do begin UpdateWorld; if yell then begin Self.Yell(Message); Sleep(1000); end; Self.PublicMessage(6,Message); sleep(Random(SecondsMin,SecondsMax+1) * 1000); end;
Witam
Szukam skrypta żeby mnie logło gdy sie ktos wbije na wieze 1 poziom wyżej .
Mam TibiaBot NG.
Witam
Potrzebuje skryptu(TibiaBot NG) dzięki któremu moja postać skilując na dwarfach po zabiciu jednego z nich będzie atakować drugiego stojąc na tym samym SQM.
Potrzebuję skryptu, żeby zmieniał bohy na softy gdy mam 100 many i zakładał spowrotem bohy gdy będzie miał 250 many. Tibia bot NG
#down thx ;D
Kod PHP:Const // Boots to use if LESS then Min_Mana // Min_Mana = 100 SoftBoots_ID = 6529 SoftBoots_InUse_ID = 3549 // Boots to use if you have MORE then Max_Mana // Max_Mana = 250 Boh_ID = 3079 function GetItemFromOpenBackpack(ID: integer): TItem; var y: integer; begin Result := nil; for x := 0 to Self.Containers.Count - 1 do begin if x >= Self.Containers.Count then Break; 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; if Max_Mana <= Min_Mana then begin Self.DisplayText('Min health higher then max health? lol noob'); A := 1; end; else A := 0; while not terminated do begin if A then break; UpdateWorld; if Self.Mana <= Min_Mana then begin if Self.Feet.ID <> SoftBoots_InUse_ID then begin Boots := GetItemFromOpenBackpack(SoftBoots_ID); if Boots <> nil then Boots.MoveToBody(Self.Feet,0); else Self.Displaytext('Boots werent found in open backpack!'); end; end; if Self.Mana >= Max_Mana then begin if Self.Feet.ID <> Boh_ID then begin Boots := GetItemFromOpenBackpack(Boh_ID); if Boots <> nil then Boots.MoveToBody(Self.Feet,0); else Self.Displaytext('Boots werent found in open backpack!'); end; end; Sleep(500); end;
Potrzebuje skryptu do TA takie by jak trenuje skila na elfach i czasem podejdą 3 elfy to zabija jednego ze zmianą borni na bs potem zmienia na knife i bije dalej te dwa na full defie
Potrzebuje scryptu na Tibia bot ng . Chodzi o to żeby bot atakował potworka i stal od niego 3 kratki dalej (ale żeby go atakował i uciekał)
@down
Czytałeś regulamin? chyba nie minęło 24 h od napisania mojego postu ?