• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Hunter Tracker

Carlos9

New Member
Joined
Oct 25, 2009
Messages
962
Reaction score
1
Location
Mexico
This is one of my first scripts I have made. Enjoy!
It basically trains mana to find the person who is hunting you so great for a war server

Code:
const   
  ManaToExiva = 420;   
  PlayerToExiva = 'The Hunter!';The Hunter is close run away!:|   
  TrainSpell = 'Exura';   
  Range = ['is to the',   
             'is far to the',   
             'is below',   
             'is above',   
             'is standing next to'];     

procedure Event_Notice(Channel: Integer; Name, Text: String);   
begin   
  for x := Low(Range) to High(Range) do   
  begin   
    if Pos(Range[x],AnsiLowerCase(Text)) <> 0 then   
      self.logout (True);   
  end;   
end;   


begin   
  while not Terminated do   
  begin   
    updateworld;   
    if Self.Mana > ManaToExiva then   
    Self.Say(TrainSpell);   
    Sleep(2000);   
    if Self.Mana > ManaToExiva then   
    Self.Say('Exiva "'+PlayerToExiva)   
    Sleep(100)   
    ProcessEvents;   
  Sleep(1000);   
end;   
end;
TibiaBot NG Script

Credits To me.
 
Last edited:
TibiaAuto is great, you just gotta make it your b*tch

Compile your own optimized Python 2.4.6
Compile\Install Psyco 1.6
compile a placeholder/blank .dll from last released TibiaAuto sources
Install the version of TibiaAuto you need
Replace the Module .dll's of the ones you want to use with the .dlls of the modules of latest version. (you can use 7-zip to extract contents from installer)
Replace all the others with a copy of the blank module you made.

There you go. A perfect Python scripting interface for tibia. TibiaAuto's ideas are great, even if the project leads are retards. They don't like me on their forum, cuz I told em like it is. =S
 
Back
Top