What's new

Szukasz skryptu? Zajrzyj tutaj!

Status
Not open for further replies.

jazza

Advanced User
Joined
Aug 30, 2008
Messages
350
Reaction score
29
Witam...drodzy moderatorzy od razu prosze o nie zamykanie tego tematu!

Nie widzialem tutaj nic o botach wiec postanowilem zalozyc temat w ktorym wszystko bedzie wygladac tak:

1. Osoba pisze requesta ze chce skrypta do ng/blackd/tibiaauto na cos tam
2. Odpowiada pierwszej osobie na requesta.
3. Osoba robi to co 1
4. Osoba robi to co 2

Nie wolno pisac requesta pod requestami zeby nie bylo spamu.
Jezeli ktos nie odpowiedzial na requesta po 24h mozesz napisac nastepnego.

(pomysl od konkurencji)

Taki temat tez powinien by byc przyklejony, latwiej bedzie sie polapac.


Pozdrawiam.

#edit
NIE WOLNO prosic o Waypoints itd.
Wolno prosic o skrypty takie jak leczenie, zbieranie czegos tam, robienie lootbaga itd.

NIE PROSIC O WAYPOINTS!

Pamietajcie ze skrypty mozecie znalesc i tutaj:
www.tibiabot.com - Skrypty/waypoints do TibiaBot NG
www.blackdtools.com - Skrypty/waypoints do Blackd Proxe
www.tibiaauto.net - Skrypty/waypoints co Tibiaauto.

//Przyklej? na pr?b?, ale masz sprawnie kierowa? tym tematem.

Ja tylko proponuje, zeby tutaj jezeli ktos szuka jakiegos skryptu to zeby kazdy pomagal kazdemu.
 
Last edited:

davids123

Active User
Joined
Jul 4, 2008
Messages
95
Reaction score
2
Odp: Szukasz skryptu? Zajrzyj tutaj!

Szukam skryptu na Fold?, na roty i frost trole, aby bot ( TA ) odnosi? kask? (dajmy np. jak ma 700 gp) do depo/banku
Ca?a trudno?? polega na tym ?e trzeba pop?yn?? tratw?...:confused:


Cytat:
Napisa? japi55 Zobacz post
Prosi?bym o skrypty do TA:
spalanie many
robienie lootbaga na foldzie, potem wkladanie go do parcella i wysylanie do depo w thais, a jak zabraknie parcelli to zeby poszedl do carlin i kupil
Spalanie mana- cast spells i tam wybierasz jak masz powyzej xxx many to xxx czar wypowiada.

A z lootbagami, nie ma takiego czegos w Tibiaauto, jest tylko w ng/blackd.

Prosze o warna dla kilku panow up


A dla mnie za co ??!!
 
Last edited:

Kozaq

Advanced User
Joined
May 24, 2008
Messages
399
Reaction score
40
Odp: Szukasz skryptu? Zajrzyj tutaj!

Prosil bym o taki skrypt ze jak mam sie full bagloot to zeby wysylalo kolesia z bagloottem do DP i potem wraca na exp...
chyba nie musze sie bardziej wypowiadac latwo zrozumiec:p
cos takiego jak davids123 chcial

Pzdr.
Kozaq
 
Last edited:

jazza

Advanced User
Joined
Aug 30, 2008
Messages
350
Reaction score
29
Odp: Szukasz skryptu? Zajrzyj tutaj!

Prosi?bym o skrypty do TA:
spalanie many
robienie lootbaga na foldzie, potem wkladanie go do parcella i wysylanie do depo w thais, a jak zabraknie parcelli to zeby poszedl do carlin i kupil

Spalanie mana- cast spells i tam wybierasz jak masz powyzej xxx many to xxx czar wypowiada.

A z lootbagami, nie ma takiego czegos w Tibiaauto, jest tylko w ng/blackd.

Prosze o warna dla pana #up
 
Last edited:

Eldo-Maxis

User
Joined
Dec 3, 2008
Messages
18
Reaction score
0
Odp: Szukasz skryptu? Zajrzyj tutaj!

Witam wlasnie sciaglem ng i prosze i pomoc.
W self healing ustawilem sobie leczenie exura od 500 hp i chce ustawic jeszcze jedne leczenie tym razem od 400 hp innym czarem i dowiedzialem sie ze trzeba skrypta wiec prosze o pomoc ;d
 

jazza

Advanced User
Joined
Aug 30, 2008
Messages
350
Reaction score
29
Odp: Szukasz skryptu? Zajrzyj tutaj!

Witam wlasnie sciaglem ng i prosze i pomoc.
W self healing ustawilem sobie leczenie exura od 500 hp i chce ustawic jeszcze jedne leczenie tym razem od 400 hp innym czarem i dowiedzialem sie ze trzeba skrypta wiec prosze o pomoc ;d

Sory ze tak pozno odpowiedzialem ;dd

Code:
{ ------------ Advanced heal script by Jazza ------------- }
const Strong            = 236  // Strong Health Potion ID (Do not change)
const Great             = 239  // Great Health Potion ID (Do not change)
const Ultimate          = 7643 // Ultimate Health Potion ID (Do not change)
const Rune              = 3160 // UH Rune ID (Do not change)
const ManaPotion        = 268  // Mana Potion ID (Do not change)
const StrongManaPotion  = 237  // Strong Mana Potion ID (Do not change)
const GreatManaPotion   = 238  // Great Mana Potion ID (Do not change)
const GreatSpiritPotion = 7642 // Great Spirit Potion ID (Do not change)
{-----------------------------------------------------------}
var
  PotionToUse, ManaPotionToUse, LightHealing, StrongHealing:string;
  LightMana, StrongMana, defLightLife, defStrongLife, defPotionLife:integer;
  ParalyzeStrong, ParalyzePotion, defLightLifeLow, defStrongLifeLow, defPotionLifeLow:integer;
  MinMana, Exaustime, ExaustimePotion, ExaustimeMana, MaxMonsters:integer;
  MPotion, Potion:integer;
  timeStamp, timePotion, timeMana:integer;
  LightLife, StrongLife, PotionLife:integer;
  Vocation:string;

function TimeNow:integer;
var
  hours, minutes, seconds, miliseconds:integer;
begin
  DecodeTime(Now, hours, minutes, seconds, miliseconds);
  Result := hours * 60 * 60 * 1000 + minutes * 60 * 1000 + seconds * 1000 + miliseconds;
end;

function countMonsters:integer;
var
  i, c:integer;
begin
  c := 0;
  for i := 0 to (Creatures.Count - 1) do
  begin
    if Creatures.Creature[i].NPC and (Creatures.Creature[i].Z = Self.Z) then
      c := c + 1; 
  end;
  Result := c;
end;

begin
  LightLife  := defLightLife;
  StrongLife := defStrongLife;
  PotionLife := defPotionLife;
  
  Vocation := 'auto'; // Your character's vocation
  { 'auto' for automatically detection }

  UpdateWorld;
  Self.PrivateMessage(Self.Name, 'Selecting vocation based on mana ammount...');
  
  if Vocation = 'auto' then
  begin
    VocationDivider := (Self.MaximumMana-35) / (Self.Level-8);
    Vocation := 'Unknown';
    if (VocationDivider = 5) then Vocation := 'knight';
    else if (VocationDivider = 15) then Vocation := 'paladin';
    else if (VocationDivider = 30) then Vocation := 'mage';
  end;
  { Thanks for Toor for this part of code }
  Sleep(1000);
  
  Self.PrivateMessage(Self.Name, 'You are a ' + Vocation + '.');

  case Vocation of
    'knight':begin
      PotionToUse      := 'Great'    { Potion/Rune to use for healing                            }       ;
      ManaPotionToUse  := 'Normal'       { Potion to use for mana filling                            }       ;
      LightHealing     := 'exura'       { Light healing spell                                       }       ;
      StrongHealing    := 'exana mort'  { Strong healing spell                                      }       ;
      LightMana        := 20            { Mana needed for light healing                             }       ;
      StrongMana       := 65            { Mana needed for strong healing                            }        ;
      defLightLife     := 90            { Light healing life percent                                } / 100 ;
      defStrongLife    := 75            { Strong healing life percent                               } / 100 ;
      defPotionLife    := 50            { Potion healing life percent                               } / 100 ;
      defLightLifeLow  := 90            { Low Light healing life percent                            } / 100 ;
      defStrongLifeLow := 50            { Low Strong healing life percent                           } / 100 ;
      defPotionLifeLow := 25            { Low Potion healing life percent                           } / 100 ;
      ParalyzeStrong   := 80            { Paralyze healing life percent to use strong spell instead } / 100 ;
      ParalyzePotion   := 50            { Paralyze healing life percent to use potion/rune instead  } / 100 ;
      MinMana          := 50            { Minimum mana percent to use mana potion                   } / 100 ;
      Exaustime        := 1000          { Exaustion time for healing spells                         }       ;
      ExaustimePotion  := 350           { Exaustion time for healing potions                        }       ;
      ExaustimeMana    := 700           { Exaustion time for mana potions                           }       ;
      MaxMonsters      := 2             { Creatures needed to switch to hard mode                   }       ;
    end;
    'paladin':begin
      PotionToUse      := 'Spirit'      { Potion/Rune to use for healing                            }       ;
      ManaPotionToUse  := 'Strong'      { Potion to use for mana filling                            }       ;
      LightHealing     := 'exura'       { Light healing spell                                       }       ;
      StrongHealing    := 'exura san'   { Strong healing spell                                      }       ;
      LightMana        := 20            { Mana needed for light healing                             }       ;
      StrongMana       := 210           { Mana needed for strong healing                            }        ;
      defLightLife     := 90            { Light healing life percent                                } / 100 ;
      defStrongLife    := 55            { Strong healing life percent                               } / 100 ;
      defPotionLife    := 40            { Potion healing life percent                               } / 100 ;
      defLightLifeLow  := 90            { Low Light healing life percent                            } / 100 ;
      defStrongLifeLow := 40            { Low Strong healing life percent                           } / 100 ;
      defPotionLifeLow := 25            { Low Potion healing life percent                           } / 100 ;
      ParalyzeStrong   := 65            { Paralyze healing life percent to use strong spell instead } / 100 ;
      ParalyzePotion   := 50            { Paralyze healing life percent to use potion/rune instead  } / 100 ;
      MinMana          := 50            { Minimum mana percent to use mana potion                   } / 100 ;
      Exaustime        := 1000          { Exaustion time for healing spells                         }       ;
      ExaustimePotion  := 350           { Exaustion time for healing potions                        }       ;
      ExaustimeMana    := 700           { Exaustion time for mana potions                           }       ;
      MaxMonsters      := 2             { Creatures needed to switch to hard mode                   }       ;
    end;
    'mage':begin
      PotionToUse      := 'Rune'        { Potion/Rune to use for healing                            }       ;
      ManaPotionToUse  := 'Great'       { Potion to use for mana filling                            }       ;
      LightHealing     := 'exura'       { Light healing spell                                       }       ;
      StrongHealing    := 'exura gran'  { Strong healing spell                                      }       ;
      LightMana        := 20            { Mana needed for light healing                             }       ;
      StrongMana       := 70           { Mana needed for strong healing                            }        ;
      defLightLife     := 82            { Light healing life percent                                } / 100 ;
      defStrongLife    := 65            { Strong healing life percent                               } / 100 ;
      defPotionLife    := 40            { Potion healing life percent                               } / 100 ;
      defLightLifeLow  := 82            { Low Light healing life percent                            } / 100 ;
      defStrongLifeLow := 60            { Low Strong healing life percent                           } / 100 ;
      defPotionLifeLow := 35            { Low Potion healing life percent                           } / 100 ;
      ParalyzeStrong   := 70            { Paralyze healing life percent to use strong spell instead } / 100 ;
      ParalyzePotion   := 50            { Paralyze healing life percent to use potion/rune instead  } / 100 ;
      MinMana          := 70            { Minimum mana percent to use mana potion                   } / 100 ;
      Exaustime        := 1000          { Exaustion time for healing spells                         }       ;
      ExaustimePotion  := 350           { Exaustion time for healing potions                        }       ;
      ExaustimeMana    := 700           { Exaustion time for mana potions                           }       ;
      MaxMonsters      := 2             { Creatures needed to switch to hard mode                   }       ;
    end;
  end;

Pozmieniaj co musisz, i bedzie dzialac.
 

Hecton

New User
Joined
Dec 29, 2008
Messages
2
Reaction score
0
Odp: Szukasz skryptu? Zajrzyj tutaj!

siemka syukam skrzptu na darashie roty z depsiterem
opcje skryptu :
-heal exura gdy 200 hp
-heal hp gdy 100 hp
-potniecie sie mana potionem gdy 20 many
-depositer gdy 600 gp

bardzo bym o to prosil bo szukam na kazdym forum ale nigdzie nei znajduje takiego skryptu
 
Last edited by a moderator:

Kris_4321

New User
Joined
Jan 10, 2009
Messages
3
Reaction score
0
Odp: Szukasz skryptu? Zajrzyj tutaj!

siemka!
Potrzebuje skrypty jakie? ciekawe expowisko na pacc (do TibiaBot NG).
Interesowa?y by mnie miejsca take jak np. helheim -1, elfy na tym nowym mie?cie, ma?py etc.

Posiadam RL lev 66 15 m lev dyst 82 shield 65
eq.: paladin armor, rh, platinum amulet, blue legs, demon shield, boh

czekam na odp., z g?ry thx. :cool:
 

Hulala

Senior User
Joined
May 2, 2008
Messages
539
Reaction score
37
Age
32
Odp: Szukasz skryptu? Zajrzyj tutaj!

Witam
Ma kto? mo?e taki skrypt ,?e skiluje na slimach i mam w??czone mc mojego knighta i ed i potrzebowa? bym taki skrypt ?eby siocha? mojego knighta jak ma ile? tam hp ... ma kto? mo?e co? takiego?
 

igorekpl

User
Joined
May 19, 2008
Messages
25
Reaction score
2
Odp: Szukasz skryptu? Zajrzyj tutaj!

Witam chcialbym aby ktos napisa? mi skrypt do tibii auto ktory bo zamienial gp na platyny i platyny na ccki
bym byl bardzo wdzieczny.
 

Juskin

User
Joined
May 14, 2008
Messages
14
Reaction score
1
Odp: Szukasz skryptu? Zajrzyj tutaj!

Witam!
U?ywam bota: TibiaBot NG
Mam taki problem, ?e nie mam w nim czego? takiego jak Picie Mana Potion?w: Strong i Great :/ je?eli kto? mo?e mi pom?c to bardzo prosze !:) i odrazu reput za pomoc !!:)(nie mam do wyboru mana potion?w kt?re maj? by? pite...;/)
 

jazza

Advanced User
Joined
Aug 30, 2008
Messages
350
Reaction score
29
Odp: Szukasz skryptu? Zajrzyj tutaj!

Witam!
U?ywam bota: TibiaBot NG
Mam taki problem, ?e nie mam w nim czego? takiego jak Picie Mana Potion?w: Strong i Great :/ je?eli kto? mo?e mi pom?c to bardzo prosze !:) i odrazu reput za pomoc !!:)(nie mam do wyboru mana potion?w kt?re maj? by? pite...;/)

Options>Mana Potions>Strong/Great/Normal

Wybierz manasa ktorego chcesz uzywac a potem Tools>Mana Restore>wpisz ponizej ile many ma pic Strong/Great/Normal Mana Potion.
 

Juvao

New User
Joined
Apr 5, 2009
Messages
1
Reaction score
0
Odp: Szukasz skryptu? Zajrzyj tutaj!

Witam!
Mam pewien problem, nie wiem czy mo?na do was si? z tym zwr?ci?. Potrzeba mi skrypty do ElfBota na roty obok Venore z depositerem.
Oczywi?cie b?d? wdzi?czny za wszelkie inne skrypty kt?re m?g?bym wykorzysta? na 8 knight'cie. Zale?y mi na kasie.
Z g?ry dzi?kuje;)
 

jazza

Advanced User
Joined
Aug 30, 2008
Messages
350
Reaction score
29
Odp: Szukasz skryptu? Zajrzyj tutaj!

Witam!
Mam pewien problem, nie wiem czy mo?na do was si? z tym zwr?ci?. Potrzeba mi skrypty do ElfBota na roty obok Venore z depositerem.
Oczywi?cie b?d? wdzi?czny za wszelkie inne skrypty kt?re m?g?bym wykorzysta? na 8 knight'cie. Zale?y mi na kasie.
Z g?ry dzi?kuje;)


 

Eterd

User
Joined
Aug 28, 2008
Messages
14
Reaction score
1
Odp: Szukasz skryptu? Zajrzyj tutaj!

Ja poprosze o skrypt na zasmiecanie komus dp ^^ to znaczy stoje za kolesiem, koles wyklada jakis dobry item i nagle taki spam worms/gp na przemian. W koncu tyle tego jest, ze koles loga... A tak btw. to mam cos takiego ale wyrzuca samo gp, a wormsow nie:
Code:
const
LootItem=[3031,2853];

var
Loot: TItem

function GetItemFromOpenBackpack(ID: 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;
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;

begin
UpdateWorld;
for a:= Low(LootItem) to High(LootItem) do
begin
if a>= High(LootItem) then break;
Repeat
UpdateWorld;
Loot:= GetItemFromOpenBackpack(LootItem[a]);
If Loot <> Nil then
begin
case a of
0: Loot.MoveToGround( Self.X, Self.Y - 2, Self.Z, 0);
1: Loot.MoveToGround( Self.X, Self.Y - 2, Self.Z, 0);

end;
Sleep(100);
end;
Until Loot = Nil
end;
Sleep(100);
end;
Pozdro
 

Michalekk

Senior User
Joined
Aug 3, 2008
Messages
752
Reaction score
163
Age
30
Odp: Szukasz skryptu? Zajrzyj tutaj!

Ja poprosze o skrypt na zasmiecanie komus dp ^^ to znaczy stoje za kolesiem, koles wyklada jakis dobry item i nagle taki spam worms/gp na przemian. W koncu tyle tego jest, ze koles loga... A tak btw. to mam cos takiego ale wyrzuca samo gp, a wormsow nie:
Code:
const
LootItem=[3031,2853];
var
Loot: TItem
function GetItemFromOpenBackpack(ID: 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;
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;
begin
UpdateWorld;
for a:= Low(LootItem) to High(LootItem) do
begin
if a>= High(LootItem) then break;
Repeat
UpdateWorld;
Loot:= GetItemFromOpenBackpack(LootItem[a]);
If Loot <> Nil then
begin
case a of
0: Loot.MoveToGround( Self.X, Self.Y - 2, Self.Z, 0);
1: Loot.MoveToGround( Self.X, Self.Y - 2, Self.Z, 0);
end;
Sleep(100);
end;
Until Loot = Nil
end;
Sleep(100);
end;
Pozdro

Masz tam taka linijk?:
LootItem=[3031,2853];
3031 - Gp
2852 - Bag

?eby to dzia?a?o to musisz zmieni? na 3492 w miejce 2853.

Code:
Worms, 3492
 

Cesarz15

Active User
Joined
Apr 24, 2008
Messages
128
Reaction score
2
Odp: Szukasz skryptu? Zajrzyj tutaj!

Prosz? o skrypt ,aby m?j ziomu? sie manapotionowa? strong mana potionem gdy ma mniej many ni? 1000.Dam Reputka.

Ps. mam Ng.
 
Last edited:

Michalekk

Senior User
Joined
Aug 3, 2008
Messages
752
Reaction score
163
Age
30
Odp: Szukasz skryptu? Zajrzyj tutaj!

Prosz? o skrypt ,aby m?j ziomu? sie manapotionowa? strong mana potionem gdy ma mniej many ni? 1000.Dam Reputka.
Ps. mam Ng.

Code:
const
 Hp='666'  // przy jakiej ilosci hp ma sie uleczyc
 Mana='20' // ilosc mana, mozna zmienic na exure gran/vite
 ManaPotionId='237'
 HealSpell='Exura'
while not terminated do
begin
if Self.Mana < Mana then
Self.Containers.UseItemWithSelf(ManaPotionId);
Sleep(200);
if Self.Health <= Hp then
Self.Say(HealSpell);
Sleep(2000);
end;

Chyba taki.. Zobacz.
 

nimus

Active User
Joined
Oct 23, 2008
Messages
87
Reaction score
0
Odp: Szukasz skryptu? Zajrzyj tutaj!

Prosi? bym ci? kolego o skrypt gm za sms ;) na tibie 8.10....
Jct gg 11058019:up:
 

Ziomq777

Active User
Joined
Jul 10, 2008
Messages
66
Reaction score
1
Odp: Szukasz skryptu? Zajrzyj tutaj!

No wi?c b?de mia? bota ng i interesuj? mnie skrypty na zbieranie kasy i odnoszenie jej do dp bo waypointy ju? mam. Jestem w botach zielony dlatego m?g?by to kto? odrazu wrzuci? ju? przerobione. Aha i ?eby u?ywal klucza na drzwiach do fibuli ;) za prace nagradzam reputem ;D
@edit aha i jeszcze ?eby jad?o hamy i meaty z rot?w i carrion worm?w
Waypoint (znalezione na oficjalnej stronie bot ng):
Code:
32171
32428
9
6
32164
32428
9
6
32156
32429
9
6
32147
32429
9
6
32132
32432
9
6
32128
32422
9
6
32133
32414
9
6
32132
32404
9
6
32132
32396
9
6
32132
32389
9
6
32136
32382
9
6
32136
32379
9
6
32136
32376
9
6
32137
32374
9
6
32141
32373
9
6
32146
32371
9
6
32153
32371
9
6
32169
32368
9
6
32176
32368
9
6
32181
32362
9
6
32185
32357
9
6
32191
32356
9
6
32194
32351
9
6
32180
32353
9
6
32176
32342
9
6
32168
32341
9
6
32163
32336
9
6
32163
32332
9
6
32163
32327
9
6
32153
32328
9
6
32150
32332
9
6
32145
32328
9
6
32137
32323
9
6
32130
32323
9
6
32126
32323
9
6
32121
32319
9
6
32114
32319
9
6
32108
32319
9
6
32105
32327
9
6
32106
32335
9
6
32111
32341
9
6
32115
32343
9
6
32123
32338
9
6
32135
32338
9
6
32148
32338
9
6
32149
32345
9
6
32149
32352
9
6
32149
32357
9
6
32144
32360
9
6
32142
32363
9
6
32142
32373
9
6
32137
32374
9
6
32137
32376
9
6
32137
32380
9
6
32135
32388
9
6
32132
32394
9
6
32132
32405
9
6
32137
32414
9
6
32143
32418
9
6
32149
32422
9
6
32154
32421
9
6
32163
32421
9
6
32167
32427
9
6
32178
32428
9
6
@edit
znalaz?em droge z fibuli do thais i m?g?by to kto? po??czyc i zrobi? ?eby jak b?dzie 1k to odnosil i wpracal zpowrotem i ?eby atakowa? roty i corrior wormy. Tak jak m?wi?em w botach jestem zielony wi?c prosz? o wyrozumia?o??. oto waypointy drogi
Code:
32344
32221
7
6
32270
32274
7
6
32272
32326
7
6
32266
32380
7
6
32261
32384
8
5
32244
32370
9
5
32236
32370
10
5
32220
32370
10
6
32208
32370
10
2
32198
32367
9
2
32179
32367
8
2
32168
32403
7
6
32183
32440
7
6
 
Last edited:
Status
Not open for further replies.
Top