Ir para conteúdo
Banner com Efeitos

Mek Fiuchem

Membro
  • Registro em

  • Última visita

Tudo que Mek Fiuchem postou

  1. Consegui era simples a dll estava mudando a size do MenuStrip e Form tao coloquei isso no btn: this.MenuStrip.Size = new System.Drawing.Size(397, 40); this.Size = new System.Drawing.Size(400, 45); mais isso so funciona na form que o btn ta , alguem sabe como faz para quando selecionar , usar em todas forms que for abertas
  2. bom n sei oque fiz agora diminuiu a tela , porem o MenuStrip so esta apareçendo a metade dele :/ , i eu mudei a skin peguei outra , as que tava no elf bot ng pasta , sera qui é por causa disso ?
  3. Cara desculpe reviver esse topico mais tenho uma duvida Eu fiz tudo certinho mais na hora que eu uso a Skin ate i tudo bem , porem a janela do Bot cresce mt fika mal fei , como faz para configurar isso ?
  4. Mek Fiuchem postou uma resposta no tópico em Recursos Avançados
    kkkkkkkkkkkkkkkk vish , eu coloquei sem timer msm
  5. Mek Fiuchem postou uma resposta no tópico em Recursos Avançados
    Hummm entendi asudhausdhasd , to mei noiado hj vlw funciono mais a pergunta é como faz para quando Descheckar o EatFoodchk a void parar ?
  6. Errei , nao é um walker (nao vai andar sozinho) , porem ele adiciona as coodernadas no listbox , acho que isso é um bom começo para fazer o seu walker.
  7. Mek Fiuchem postou uma resposta no tópico em Recursos Avançados
    To so com um pequeno pobleminha: EatFoodByHotkey(EatFoodhtk.Text); Eu declarei ele da erro , coloquei na void tbm da erro , coloquei no form_load nao funciona :/
  8. Mek Fiuchem postou uma resposta no tópico em Recursos Avançados
    Estava pensando em fazer um void , porem quando fiz pela primeira vez em Player.cs object nao funciono eu nao sei pq , ai quando fiz no fmrExtras ele funciono , poderia me ajudar com isso ?
  9. Mek Fiuchem postou uma resposta no tópico em Recursos Avançados
    Tipo quando chk o EatFoodchk ele usa a hotkey , dps de 1 minuto usar hotkey dnv Obs: no Timer Interval nas propiedades ja esta 60000*
  10. Mek Fiuchem postou uma resposta no tópico em Recursos Avançados
    Sim , ele para. private void EatFoodchk_CheckedChanged(object sender, EventArgs e) { if (EatFoodchk.Checked == true) { EatFoodTimer.Start(); } else { EatFoodTimer.Stop(); } }
  11. Bom galera hoje vim trazer aqui para vocês um Walker Simples , porem nao utilíza TibiaApi, Por exemplo como controlar o Walker em um método que cria padrões humanos, utilizando o método mais lógico com uma coisa chamada Um algoritmo de busca . Form1.cs #region using using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms;[/center] [center]// My added namespaces using System.Runtime.InteropServices; using System.Diagnostics; using System.IO; // End[/center] [center]#endregion[/center] [center]//The namespace of our project. namespace TibiaInfo { //The class, Mainwindow. public partial class MainWindow : Form { #region declarations /* These two variables are very important to reading memory. You've probably seen the word "BasedAddress" a * lot if you've been trying to program recently, and the variable "Base" is what will store this address * as an integer. In order to obtain the BaseAddress we will use a variable to store information on the * Tibia Client, making it a little easier to do. The buffer will make it easier to add memory reading * functions to our program later. It's not neccessary but is nice to have. */ public static int Base = 0; public static Process Tibia = null; byte[] buffer;[/center] [center] /* These are the integer variables which will store our characters information, such as health, mana, * experience, magic level, level, capacity, coordinates, and exp to level. */ public int hp; public int mp; public int xp; public int ml; public int lvl; public int cap; public int xpos; public int ypos; public int zpos; public int xpup; public int xpbet; public int xpprog; public int toup;[/center] [center] /* In these we will store some information in a string format, such as our name, first quest in the quest log. */ public string name; public string quest;[/center] [center] #endregion[/center] [center] #region addresses /* Here comes a list of our addresses which we will read. Note that I posted each address twice, once just an * address, and once the address + 0x400000. If you're using Windows XP or have ASLR disabled for some miscallanious * reason, you should use the address with L on the end. For instance for the Exp Address, use XpAdrL, not XpAdr. * You'll also then need to remove the other ASLR related material from this, we'll get to that in a while though. */[/center] [center] // XOR Address UInt32 Pxor = 0x3ABF8C; // EXP Address UInt32 XpAdr = 0x3ABF98; UInt32 XpAdrL = 0x3ABF98 + 0x400000; // Mana Address UInt32 MpAdr = 0x3ABFE0; UInt32 MpAdrL = 0x3ABFE0 + 0x400000; // Health Address UInt32 HpAdr = 0x541000; UInt32 HpAdrL = 0x541000 + 0x400000; // Cap Address UInt32 CapAdr = 0x578E94; UInt32 CapAdrL = 0x578E94 + 0x400000; // Level Address UInt32 LvlAdr = 0x3ABFC8; UInt32 LvlAdrL = 0x3ABFC8 + 0x400000; // Magic Address UInt32 MlAdr = 0x3ABFD0; UInt32 MlAdrL = 0x3ABFD0 + 0x400000; // Name Address UInt32 NameAdr = 0x3b5d98; UInt32 NameAdrL = 0x3b5d98 + 0x400000; //XPos Address UInt32 XAdr = 0x578ea8; UInt32 XAdrL = 0x578ea8 + 0x400000; //YPos Address UInt32 YAdr = 0x578eac; UInt32 YAdrL = 0x578eac + 0x400000; //ZPos Address UInt32 ZAdr = 0x578eb0; UInt32 ZAdrL = 0x578eb0 + 0x400000; //First Quest Address UInt32 QstAdr = 0x3AD0D5; UInt32 QstAdrL = 0x3AD0D5 + 0x400000; //Battle List Start Address UInt32 BAdr = 0x541008; UInt32 BAdrL = 0x541008 + 0x400000;[/center] [center] #endregion[/center] [center] #region import functions // Import WindowsAPI Function to read process memory without using unmanaged code directly. [DllImport("kernel32.dll")] public static extern Int32 ReadProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, [In, Out] byte[] buffer, UInt32 size, out IntPtr lpNumberOfBytesRead); #endregion[/center] [center] #region formload shit public MainWindow() { InitializeComponent(); }[/center] [center] private void Form1_Load(object sender, EventArgs e) { /* The formload event is where we want to select a client to use. If we don't do it here we'll have to * do it every time we want to do it every time we want to read any memory. For that reason, we'll do * this now.*/ // Get a list of processes, store them in an array named "TibiaProcess", only include processes called Tibia. Process[] TibiaProcess = Process.GetProcessesByName("Tibia"); // Declare that the client we're using is the one which comes first in the array. Tibia = TibiaProcess[0]; // Declare that the Base Address is the Base Address of the process this client uses. Base = Tibia.MainModule.BaseAddress.ToInt32(); // Display the name of the character on the client which the bot is attached to. MessageBox.Show(ReadString(Tibia.Handle, BAdr + Base)); } #endregion[/center] [center] #region using imported functions[/center] [center] /* Read bytes from address - This is a function, effectively, which takes X, Y, and Z input, and uses it to get A output. * It will take an window handle, in form of an IntPtr, an address, in form of a 64 bit Int, and BytesToRead, in form of a tiny int. */ public static byte[] ReadBytes(IntPtr Handle, Int64 Address, uint BytesToRead) { IntPtr ptrBytesRead; // Declare a buffer, this is the no mans land in which the information travels to get from the memory address to our programs memory. byte[] buffer = new byte[BytesToRead]; // Call to the windows function to get the information. ReadProcessMemory(Handle, new IntPtr(Address), buffer, BytesToRead, out ptrBytesRead);[/center] [center] // The result of this function will be the contents of buffer. Any information which was stored at the memory address passed in, is now in the buffer. return buffer; }[/center] [center] // This should convert the contents of "buffer" - or any other byte variable - to a usable Int32. public static int ReadInt32(IntPtr Handle, long Address) { return BitConverter.ToInt32(ReadBytes(Handle, Address, 4), 0); }[/center] [center] // This should convert the contents of "buffer" - or any other byte variable - to a usable String. public static string ReadString(IntPtr Handle, long Address) { return System.Text.ASCIIEncoding.Default.GetString(ReadBytes(Handle, Address, 32)); }[/center] [center] #endregion[/center] [center] #region Waypoint Builder[/center] [center] #region adding private void addwpt() { listBox1.Items.Add("W:" + Convert.ToString(ReadInt32(Tibia.Handle, XAdr + Base) + ", " + ReadInt32(Tibia.Handle, YAdr + Base) + ", " + ReadInt32(Tibia.Handle, ZAdr + Base))); }[/center] [center] private void addButton_Click(object sender, EventArgs e) { addwpt(); }[/center] [center] #endregion[/center] [center] #region removing private void removeButton_Click(object sender, EventArgs e) { int zero = new int(); zero = -1; if (listBox1.SelectedIndex != zero) { listBox1.SelectedIndex = listBox1.SelectedIndex - 1; listBox1.Items.RemoveAt(listBox1.SelectedIndex + 1); } else { MessageBox.Show("Please select a waypoint to remove."); } }[/center] [center] private void clearButton_Click(object sender, EventArgs e) { listBox1.Items.Clear(); MessageBox.Show("All waypoints removed."); } #endregion[/center] [center] #region writing to file private void saveButton_Click(object sender, EventArgs e) { StreamWriter fs = new StreamWriter(fileName.Text, false); foreach (string itm in listBox1.Items) { fs.WriteLine(itm); } MessageBox.Show(null, "Wrote " + (listBox1.Items.Count) + " lines to " + fileName.Text + ".", "Saved Successfully.", MessageBoxButtons.OK, MessageBoxIcon.Information); fs.Close(); } #endregion[/center] [center] #region reading from file[/center] [center] private void loadButton_Click(object sender, EventArgs e) { int counter = 0; string line; StreamReader read = new StreamReader(fileName.Text); while ((line = read.ReadLine()) != null) { listBox1.Items.Add(line); counter++; } read.Close(); } #endregion[/center] [center] #endregion[/center] [center] #region statusbar updater private void statusBarTimer_Tick(object sender, EventArgs e) { xpToLevel(); statusLevel.Text = "Level: " + Convert.ToString(ReadInt32(Tibia.Handle, LvlAdr + Base)); statusExp.Text = "Exp: " + Convert.ToString(ReadInt32(Tibia.Handle, XpAdr + Base)); statusHp.Text = "Hp: " + Convert.ToString(ReadInt32(Tibia.Handle, (HpAdr + Base)) ^ ReadInt32(Tibia.Handle, (Pxor + Base))); statusMp.Text = "Mp: " + Convert.ToString(ReadInt32(Tibia.Handle, (MpAdr + Base)) ^ ReadInt32(Tibia.Handle, (Pxor + Base))); statusToLevel.Text = "To Level: " + Convert.ToString(toup); xpbar.Maximum = xpbet; xpbar.Minimum = 0; xpbar.Value = xpprog; }[/center] [center] private void xpToLevel() { // xpbet is the var which stores the exp between current level and next level. // calc contains the exp required for next level. // calc1 contains the exp required for current level. int lv = ReadInt32(Tibia.Handle, LvlAdr + Base); int calc = (50 * lv * lv * lv - 150 * lv * lv + 400 * lv) / 3; int lv1 = (ReadInt32(Tibia.Handle, LvlAdr + Base) - 1); int calc1 = (50 * lv1 * lv1 * lv1 - 150 * lv1 * lv1 + 400 * lv1) / 3; xpbet = (calc - calc1); toup = calc - ReadInt32(Tibia.Handle, XpAdr + Base); xpprog = xpbet - toup; }[/center] [center] #endregion[/center] [center] #region Menu Controls[/center] [center] private void exitToolStripMenuItem_Click(object sender, EventArgs e) { Mainwindow.ActiveForm.Close(); }[/center] [center] private void cGBotToolStripMenuItem_Click(object sender, EventArgs e) { MessageBox.Show("CGBot is an open source program released under the public GNU License."); }[/center] [center] #endregion } }[/center] [center] O projeto está em GoogleCode tambem: http://code.google.com/p/cg-bot/ Creditos 99% MainInTheCave (TPForums) 1% Mek Fiuchem (Eu) por trazer aqui para voces :/ Obs: Lembrando que as addresses são da versao 9.44 (é tbm 9.46) Obs²: Ignorem o [ center] [ /center] nas codes (removelas)
  12. Mek Fiuchem postou uma resposta no tópico em Recursos Avançados
    private void EatFoodTimer_Tick(object sender, EventArgs e) { switch (EatFoodhtk.Text) { case "F1": WinApi.SendMessage((IntPtr)KClient.HWND, Hooks.WM_KEYDOWN, (int)Keys.F1, 0); break; case "F2": WinApi.SendMessage((IntPtr)KClient.HWND, Hooks.WM_KEYDOWN, (int)Keys.F2, 0); break; case "F3": WinApi.SendMessage((IntPtr)KClient.HWND, Hooks.WM_KEYDOWN, (int)Keys.F3, 0); break; case "F4": WinApi.SendMessage((IntPtr)KClient.HWND, Hooks.WM_KEYDOWN, (int)Keys.F4, 0); break; case "F5": WinApi.SendMessage((IntPtr)KClient.HWND, Hooks.WM_KEYDOWN, (int)Keys.F5, 0); break; case "F6": WinApi.SendMessage((IntPtr)KClient.HWND, Hooks.WM_KEYDOWN, (int)Keys.F6, 0); break; case "F7": WinApi.SendMessage((IntPtr)KClient.HWND, Hooks.WM_KEYDOWN, (int)Keys.F7, 0); break; case "F8": WinApi.SendMessage((IntPtr)KClient.HWND, Hooks.WM_KEYDOWN, (int)Keys.F8, 0); break; case "F9": WinApi.SendMessage((IntPtr)KClient.HWND, Hooks.WM_KEYDOWN, (int)Keys.F9, 0); break; case "F10": WinApi.SendMessage((IntPtr)KClient.HWND, Hooks.WM_KEYDOWN, (int)Keys.F10, 0); break; case "F11": WinApi.SendMessage((IntPtr)KClient.HWND, Hooks.WM_KEYDOWN, (int)Keys.F11, 0); break; case "F12": WinApi.SendMessage((IntPtr)KClient.HWND, Hooks.WM_KEYDOWN, (int)Keys.F12, 0); break; } } Estou com poblema nisso , eu queria saber como faz para quando chk o EatFoodchk , ele comer food dps de 60 segundos usar dnv , pois quando eu chk o EatFoodchk ele come food so dps de 1 minuto , nao come quando chk , alguem sabe arrumar isso ? :/
  13. Eu nao entendo , como eles ve que tem uma atualizaçao (Versao nova) disponivel , se eu nem conectei minha internet ? Oque sera ? macumba do satanas , armadilha do capeta ???
  14. [b]203.17 kbps (sua velocidade atual)[/b] [b]Estatísticas da sua conexão: Taxa de transferência: 23.17 KB/s[/b] quem vai encarar ? auysdhuasd oia a velo da minha net ¬¬ (pesso para vivo speedy aumentar mais nao querem ganhar mais dinheiro) , so de eu abrir o tibiaking o tibia desloga td UASHDUADHUAS Mais fora isso mano pra min essa nova skin ta mara , pois skin mt tempo no forum dps se muda , vc repara uma diferença enorme , ficando mais bonito elegante e (meninas fechem os olhos) sexy!
  15. Mek Fiuchem postou uma resposta no tópico em Recursos Avançados
    Cara isso é uns simples programas que eles fazem , a tecnologia da microsoft vai alem desses programas que eles disponilizam para vc gratis
  16. Mek Fiuchem postou uma resposta no tópico em Recursos Avançados
    Simples e mt bom , porem podia melhorar , tipo form invisivel so um system tray icon na bar , e a execuçao ja fosse feita quando abre o bot , ai taria perfeito =)
  17. Mek Fiuchem postou uma resposta no tópico em Suporte Bots
    Foi Deletado ? Never Usava qual bots ? Tibia Auto , iBot , RvBot , Blackd Tools, Xeno Bot , Kera Bot, Tibia Bot ng , Elf Bot , Muttle Bot , Ghost Bot. Usava MC ? sim neomc , TibiaMC, Blackd MC , XenoMC, AdeusMC.
  18. Alguem sabe como faz para colocar no ataquer solta exori vis no water elementals ? faz tempo que n mecho no BBot e pelo que vii n sei quase nd msm kkk , alguem sabe como colocar pra solta exori vis , Obrigado REP+ pra quem ajuda.
  19. Mek Fiuchem postou uma resposta no tópico em Outros Bots
    sinceramente to qui si foda toma ban aushdaushdasd , eu n vo perde nd msm so itens no jogo alendo mais , todo lucro itens rares eu transfiro pra outra conta , caso a main tome ban , n vai ser prejuiso total , tenho 3 dp (Thais , Venore , Carlin) lotados de loot de dragons cada um tem 999 itens , agora estou enchendo o de Ab'dendriel Alendo mais so upo das 13:00 ate 03:00
  20. Mek Fiuchem postou uma resposta no tópico em BBot
    Quando aa tela os hud some tudo , é porque ele ta tentando executar uma funçao , pois nao consegui, ai fica tentando assim , o desempenho todo fica na funçao o restos das funçoes para ;/ As vezes aconteçe cmg , mais so com os Alerts quando to com 7 tibia aberto :/
  21. alguem poderia me falar 3 macro , 1° Checkar Cap e tanto de mana potions , 2° Comprar xxx de mana potions que ira completar 100 , tipo eu gastei 44 pot e tinha 100 no total , ai o bot vai la e compra 44 pot pra voltar pro 100 dnv , 3° Depositer todos itens do loot na bp 'Brocade Backpack' que vai estar no dp , se poderem me passar uns desses eu agradeço =)
  22. Mek Fiuchem postou uma resposta no tópico em Suporte Bots
    Mais tipo é o walker ? vai ter uma melhora nele para ficar mais rapido , pois assim ele fica mei lerdo perdendo mt exp ;/ , eu pegava 80k na hand com bot fica 60k
  23. Mek Fiuchem postou uma resposta no tópico em Suporte Bots
    O mega pelo que pudi percebe o loot em meu pc esta pegando 100% , mais 100% msm n deixo nenhum pra tras , testado por 3 horas , mais percebi que o walker nao é o msm de antes , ele esta um pouco lerdo , queria saber se tu vai tomar providencias para isso e tornalo mais rapido , msm coisa que tar apertando a tecla , pois isso faz perde muita exp :/ Obrigado.
  24. Mek Fiuchem postou uma resposta no tópico em Suporte Bots
    Consegui mano \o/ , vlw por me ajudar vcs todos =)
  25. Mek Fiuchem postou uma resposta no tópico em Suporte Bots
    Bom Avoid Waves foi primeira coisa que tentei quando comprei dnv mais nao funcionava , tao vou upar esse codigos do Killer e tentar ,.

Informação Importante

Confirmação de Termo