Reklama
Strona 55 z 110 PierwszaPierwsza ... 545535455565765105 ... OstatniaOstatnia
Pokazuje wyniki od 811 do 825 z 1640

Temat: Szukasz skryptu? Zajrzyj tutaj!

  1. #811
    NarVany

    Domyślny

    Chciałbym prosić o scrypt do NG polegający na tym że gdy będę uderzał z Royal spear potwora to żeby szło od razu exori san najlepiej jeśli jest opcją iż będzie puszczał ten czar np na potwory powyżej jakiegoś expa, jeśli się tak nie da to zwyczajnie z sanem.

    Serdecznie dziękuję za pomoc

  2. #812
    Avatar az'zet
    Data rejestracji
    2009
    Położenie
    Far Far Away...
    Posty
    131
    Siła reputacji
    16

    Domyślny

    Witam
    Potrzebuje skryptu dla palka takiego że jak mu sie skończą speary to zmienia bron na serpenta albo jakąś inną a jak odrazu wylutuje speara to odkłada serpenta i bierze do ręki speara:P

  3. #813
    Avatar cinuy
    Data rejestracji
    2009
    Posty
    578
    Siła reputacji
    16

    Domyślny

    Witam ja tez potrzebuje skrypta badz jak ustawic :o w tibia auto że gdy skoncza mi sie potiony i bede mial 100 hp to zeby zakladal speary i zabijal matke <slima ja sobie ustawiam przed tym wiecie ocb :D

  4. Reklama
  5. #814
    Avatar mazda313
    Data rejestracji
    2008
    Posty
    1,004
    Siła reputacji
    18

    Domyślny

    Szukam skryptu/opcji Do NG aby w cave bocie uzywal picka na miejscu x

  6. #815
    Avatar GaryTroy
    Data rejestracji
    2006
    Wiek
    32
    Posty
    5,830
    Siła reputacji
    23

    Domyślny

    Potrzebuje skrytu do elf bota na slima oraz niech mi ktos wytłumaczy jak zrobić żeby nie bił matki.

    Pozdrawiam.
    Impossible Is Nothing

  7. #816
    NarVany

    Domyślny

    Ponawiam prośbę o scrypta do NG który by co rundę atakował z exori con,san ale tylko potwory co maja więcej niż xxxx expa. I dodaję prośbę o scrypta żeby bot wymieniał mi speary przy skilowaniu.

  8. Reklama
  9. #817
    Avatar Bartek111
    Data rejestracji
    2007
    Położenie
    Konin
    Posty
    992
    Siła reputacji
    18

    Domyślny

    Cytuj NarVany napisał Pokaż post
    Cytat został ukryty, ponieważ ignorujesz tego użytkownika. Pokaż cytat.
    Ponawiam prośbę o scrypta do NG który by co rundę atakował z exori con,san ale tylko potwory co maja więcej niż xxxx expa. I dodaję prośbę o scrypta żeby bot wymieniał mi speary przy skilowaniu.
    const
    MonsterList = ['Monster','Monster','Monster']; //List of monsters to attack
    MonsterMana = [100,100,100] //Pause attack if Mana below

    Spell = 'Exori Con'; //Spell to use
    SleepS = 1000; //Sleep time after spell in ms

    MinCreatureHP = 0; //Stop attacking creature if HP % below (could override "AttackLHP" & "AttackA")
    AttackA = 2; //Try(1)/Force(2) to spell attack melee attacking creature only (could override AttackLHP)
    AttackLHP = 1; //Attack monsters with lower Health% first

    MinHP = 50; //Heal if HP below(0 to disable healing)
    HealSpell = 'Exura gran'; //Spell for heal
    HealMana = 40; //Heal only when mana over

    GMSafe = 0; //Pause all on GM (0 disable, 1 Gm on current floor, 2 GM on any floor)
    PlayerSafe = 0; //Pauses attacks if player on screen, but still heals

    RampsID = [1950, 1952, 1954, 1956]; //No need to change

    function PlayerOnScreen: boolean;
    var
    x: Integer;
    begin
    Result := False;
    if Creatures.Count > 1 then
    begin
    for x := 0 to Creatures.Count - 1 do
    begin
    if Creatures.Creature[x].Name = Self.Name then Continue;
    if Creatures.Creature[x].NPC then Continue;
    if Creatures.Creature[x].Visible then Result := True;
    end;
    end;
    end;

    function GMDetected: boolean;
    var
    x: Integer;
    begin
    Result := False;
    for x := 0 to Creatures.Count - 1 do
    begin
    if Creatures.Creature[x].GM then
    begin
    if (GMSafe = 2) then Result := True;
    else if (GMSafe = 1) and (Creatures.Creature[x].Z = Self.Z) then Result := True;
    end;
    end;
    end;

    function GetCreatureByID(ID: integer): TCreature;
    var
    x: integer;
    begin
    Result := nil;
    for x := 0 to Creatures.Count - 1 do
    begin
    if Creatures.Creature[x].ID = ID then
    begin
    Result := Creatures.Creature[x];
    Break;
    end;
    end;
    end;

    function GetTileFromXYZ(X, Y, Z: integer): TTile;
    begin
    Result := nil;
    if abs((Self.X - 7) - X) > 14 then Exit;
    if abs((Self.Y - 5) - Y) > 11 then Exit;
    if Self.Z <> Z then Exit;
    Result := Screen.Tile[abs((Self.X - 7) - X), abs((Self.Y - 5) - Y)];
    end;

    function IsTileWalkable(Tile: TTile): boolean;
    var
    x: Integer;
    Z: Integer;
    begin
    Result := True;
    for Z := 0 to Tile.Count - 1 do
    begin
    if not Result then Exit;
    if Tile.Item[Z].Properties.Hole then Result := False;
    else if Tile.Item[Z].Properties.Stairs then Result := False;
    else if not Tile.Item[Z].Properties.Walkable then Result := False;
    else
    begin
    for x := low(RampsID) to high(RampsID) do
    begin
    if Tile.Item[Z].ID = RampsID[x] then Result := False;
    end;
    end;
    end;
    end;

    function CreaturePos(Creature: TCreature): Integer;
    begin
    UpdateWorld;
    Result := 0;
    if Creature.Z <> Self.Z then Result := 0;
    else if (Creature.X - Self.X = 0) and (Creature.Y - Self.Y = 1) then Result := 1;
    else if (Creature.X - Self.X = 0) and (Creature.Y - Self.Y = -1) then Result := 2;
    else if (Creature.X - Self.X = 1) and (Creature.Y - Self.Y = 0) then Result := 3;
    else if (Creature.X - Self.X = -1) and (Creature.Y - Self.Y = 0) then Result := 4;
    else if (Creature.X - Self.X = 1) and (Creature.Y - Self.Y = 1) then Result := 5;
    else if (Creature.X - Self.X = 1) and (Creature.Y - Self.Y = -1) then Result := 6;
    else if (Creature.X - Self.X = -1) and (Creature.Y - Self.Y = 1) then Result := 7;
    else if (Creature.X - Self.X = -1) and (Creature.Y - Self.Y = -1) then Result := 8;
    end;

    function IsAttackable(Name: String): Boolean;
    var
    z: Integer;
    begin
    Result := False;
    for z := Low(MonsterList) to High(MonsterList) do
    begin
    UpdateWorld;
    if Name = MonsterList[z] then
    if Self.Mana > MonsterMana[z] then
    begin
    Result := True;
    Break;
    end;
    end;
    end;
    Procedure SpellHunt(Trapped: boolean);
    var
    x: Integer;
    IsClose: Integer;
    Att: TCreature;
    PosC: Integer;
    PosID: Integer;
    Tile1: TTile;
    begin
    UpdateWorld;
    if GMSafe > 0 then
    begin
    if GMDetected then Exit;
    end;
    if Self.Health < MinHP then
    begin
    if Self.Mana > HealMana then
    begin
    Self.Say(HealSpell);
    Sleep(SleepS);
    end;
    Exit;
    end;
    if PlayerSafe > 0 then
    begin
    if PlayerOnScreen then Exit;
    end;
    if Trapped then Sleep(300);
    IsClose := 0;
    Att := nil;
    PosC := 0;
    UpdateWorld;
    for x := 0 to Creatures.Count - 1 do
    begin
    if IsAttackable(Creatures.Creature[x].Name) then
    begin
    IsClose := CreaturePos(Creatures.Creature[x]);
    if IsClose <> 0 then
    begin
    //Attacking options Start
    if (Trapped) and (IsClose > 4) then Continue;
    if Creatures.Creature[x].Health < MinCreatureHP then Continue;
    if (AttackA = 2) and (not Trapped) and (Self.Attacking <> 0) then
    begin
    if Creatures.Creature[x].Attacking then Att := Creatures.Creature[x];
    else Continue;
    Break;
    end;
    else if (Creatures.Creature[x].Attacking) and (AttackA = 1) then
    begin
    Att := Creatures.Creature[x];
    Break;
    end;
    else if (AttackLHP = 1) and (Att <> nil) then
    begin
    if (Creatures.Creature[x].Health < Att.Health) then Att := Creatures.Creature[x];
    end;
    if Att = nil then
    begin
    Att := Creatures.Creature[x];
    end;
    end;
    end;
    end;
    if Att <> nil then
    begin
    PosC := CreaturePos(Att);
    PosID := Att.ID;
    if PosC = 0 then Exit;
    if PosC > 4 then
    begin
    if (PosC = 6) or (PosC = 5) then
    begin
    Tile1 := GetTileFromXYZ(Self.X + 1, Self.Y, Self.Z);
    if IsTileWalkable(Tile1) then
    begin
    Self.MoveRight;
    Exit;
    end;
    end;
    if (PosC = 7) or (PosC = 8) then
    begin
    Tile1 := GetTileFromXYZ(Self.X - 1, Self.Y, Self.Z);
    if IsTileWalkable(Tile1) then
    begin
    Self.MoveLeft;
    Exit;
    end;
    end;
    if (PosC = 5) or (PosC = 7) then
    begin
    Tile1 := GetTileFromXYZ(Self.X, Self.Y + 1, Self.Z);
    if IsTileWalkable(Tile1) then
    begin
    Self.MoveDown;
    Exit;
    end;
    end;
    if (PosC = 6) or (PosC = 8) then
    begin
    Tile1 := GetTileFromXYZ(Self.X, Self.Y - 1, Self.Z);
    if IsTileWalkable(Tile1) then
    begin
    Self.MoveUp;
    Exit;
    end;
    end;
    SpellHunt(True);
    end;
    else if PosC < 5 then
    begin
    if PosC = 1 then Self.FaceDown;
    else if PosC = 2 then Self.FaceUp;
    else if PosC = 3 then Self.FaceRight;
    else if PosC = 4 then Self.FaceLeft;
    Sleep(200);
    UpdateWorld;
    Att := GetCreatureByID(PosID);
    if Att = nil then Exit;
    if PosC <> CreaturePos(Att) then Exit;
    if Att.Health = 0 then Exit;
    UpdateWorld;
    T := CreaturePos(Att);
    if T < 5 then
    begin
    Self.Say(Spell);
    Sleep(SleepS - 100);
    end;
    sleep(100);
    end;
    end;
    end;


    begin
    while not Terminated do
    begin
    SpellHunt(False);
    Sleep(300);
    end;
    end;
    Dajesz 2 skrypty ze zmienionymi czarami,potwory ustawiasz sam,chyba wiesz na czym expisz?

  10. #818
    Zły Sen

    Domyślny

    Szukam skryptu na leczenie np. exura san od 1000hp. Wiem , jest taka opcja ale potrzebuję żeby leczyło mnie na 2 spelle ;p

    bot NG

  11. #819
    Nss

    Domyślny

    Witam potrzebuje scrypta na otwieranie ciał i branie lota ponieważ po update stary scrypt otwiera ciało lecz nie bierze lota.Prosil bym o pomoc. BOT NG

  12. Reklama
  13. #820
    Evó

    Domyślny

    Cytuj Nss napisał Pokaż post
    Cytat został ukryty, ponieważ ignorujesz tego użytkownika. Pokaż cytat.
    Witam potrzebuje scrypta na otwieranie ciał i branie lota ponieważ po update stary scrypt otwiera ciało lecz nie bierze lota.Prosil bym o pomoc. BOT NG

    Poprostu zaznacz w "Cave huntig >looting" nic prostszego :>

    http://forum.tibia.org.pl/showthread.php?t=318738

    Ten poradnik jest strone wcześniej :>

  14. #821
    Nss

    Domyślny

    Cytuj Evó napisał Pokaż post
    Cytat został ukryty, ponieważ ignorujesz tego użytkownika. Pokaż cytat.
    Poprostu zaznacz w "Cave huntig >looting" nic prostszego :>

    http://forum.tibia.org.pl/showthread.php?t=318738

    Ten poradnik jest strone wcześniej :>
    O Tym to ja wiem ... ale I tak nie Zbiera mi Loota .Poprostu Otwiera się ciało i odrazu sie zamyka. Przed Update wszystko było ok.

  15. #822
    Avatar mazda313
    Data rejestracji
    2008
    Posty
    1,004
    Siła reputacji
    18

    Domyślny

    to znowu ja ;]
    poszukuje skryptu do NG By używało picka na x miejscu

  16. Reklama
  17. #823
    Avatar Andash'
    Data rejestracji
    2009
    Położenie
    Z kontowni
    Posty
    284
    Siła reputacji
    17

    Domyślny

    poszukuje skrypta na full rook to main . od 0. puszczam i wbija mi tam 8 lvl czy 1 % do 9 jak tam macie. jakis ktory zeby dzialal.. i nie pisac tibiabot.com bo sciagalem duzo i nie dzialaja
    (Jimmy, handlarz tytoniem i bimbrem)
    Cytuj kociemba napisał Pokaż post
    Cytat został ukryty, ponieważ ignorujesz tego użytkownika. Pokaż cytat.
    Pytam z ciekawości, jak często bierzesz prysznic / kąpiesz się. Ja osobiście co 2-3dni.

  18. #824

    Data rejestracji
    2008
    Posty
    123
    Siła reputacji
    17

    Domyślny

    szukam skrypta na elfbota żeby zakładał np. dragon hammera jak zabraknie spearów albo kamyków

  19. #825
    Avatar Andash'
    Data rejestracji
    2009
    Położenie
    Z kontowni
    Posty
    284
    Siła reputacji
    17

    Domyślny

    Cytuj Andash' napisał Pokaż post
    Cytat został ukryty, ponieważ ignorujesz tego użytkownika. Pokaż cytat.
    poszukuje skrypta na full rook to main . od 0. puszczam i wbija mi tam 8 lvl czy 1 % do 9 jak tam macie. jakis ktory zeby dzialal.. i nie pisac tibiabot.com bo sciagalem duzo i nie dzialaja
    (Jimmy, handlarz tytoniem i bimbrem)
    Cytuj kociemba napisał Pokaż post
    Cytat został ukryty, ponieważ ignorujesz tego użytkownika. Pokaż cytat.
    Pytam z ciekawości, jak często bierzesz prysznic / kąpiesz się. Ja osobiście co 2-3dni.

  20. Reklama
Reklama

Informacje o temacie

Użytkownicy przeglądający temat

Aktualnie 1 użytkowników przegląda ten temat. (0 użytkowników i 1 gości)

Podobne tematy

  1. Szukasz teamu? Zajrzyj tutaj!
    Przez smakosz w dziale Open Tibia Server
    Odpowiedzi: 271
    Ostatni post: 17-02-2024, 17:40
  2. Odpowiedzi: 1156
    Ostatni post: 12-02-2023, 09:51
  3. Szukasz Mappera? Zajrzyj tu!
    Przez Pox w dziale Mapping
    Odpowiedzi: 109
    Ostatni post: 31-03-2017, 01:37
  4. [7.4] Szukasz oldschoolowego ots'a pod 7.4? Zajrzyj!
    Przez SlitasneZebro w dziale Tematy serwerów
    Odpowiedzi: 299
    Ostatni post: 24-04-2013, 12:06
  5. Nie wiesz gdzie trenić? Zajrzyj tutaj!
    Przez Justysia_=* w dziale Tibia
    Odpowiedzi: 105
    Ostatni post: 09-08-2008, 19:10

Zakładki

Zakładki

Zasady postowania

  • Nie możesz pisać nowych tematów
  • Nie możesz pisać postów
  • Nie możesz używać załączników
  • Nie możesz edytować swoich postów
  •