Ich möchte in VB ein Bot Coden (NUR IN VB!)
Meine Probleme:
Was ist der Begriff für Tabulator?
Wie mach ich das am besten (nicht mit Sendkeys)
sondern mit? ich glaube die Anweisung war Process.send???
Ich möchte in VB ein Bot Coden (NUR IN VB!)
Meine Probleme:
Was ist der Begriff für Tabulator?
Wie mach ich das am besten (nicht mit Sendkeys)
sondern mit? ich glaube die Anweisung war Process.send???
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System.Threading;
namespace BobbyBot
{
class SendMessageClass
{
[DllImport("user32.dll")]
public static extern int SendMessage(IntPtr hWnd, uint Msg, int wParam, int lParam);
IntPtr handle;
uint WM_KEYUP = 0x0101;
uint WM_KEYDOWN = 0x0100;
//liste
public int VK_TAB = 0x09;
public int VK_SPACE = 0x20;
public int VK_LEFT = 0x25;
public int VK_UP = 0x26;
public int VK_DOWN = 0x28;
public int VK_5 = 0x35;
public int VK_6 = 0x36;
//*****
public void SetHandle(int pid)
{
Process proc = Process.GetProcessById(pid);
handle = proc.MainWindowHandle;
}
public void SendDown(int VK)
{
SendMessage(handle, WM_KEYDOWN, VK, 0);
}
public void SendUp(int VK)
{
SendMessage(handle, WM_KEYUP, VK, 0);
}
public void SendWithDelay(int VK, int ms)
{
SendMessage(handle, WM_KEYDOWN, VK, 0);
Thread.Sleep(ms);
SendMessage(handle, WM_KEYUP, VK, 0);
}
}
}
und eine weitere VK liste... dies ist im übrigen sendmessage und nicht sendkey... Vorteil: das programm kann im hintergrund laufen und die keys werden trotzdem gesendet
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System.Threading;
namespace BobbyBot
{
class SendMessageClass
{
[DllImport("user32.dll")]
public static extern int SendMessage(IntPtr hWnd, uint Msg, int wParam, int lParam);
IntPtr handle;
uint WM_KEYUP = 0x0101;
uint WM_KEYDOWN = 0x0100;
//liste
public int VK_TAB = 0x09;
public int VK_SPACE = 0x20;
public int VK_LEFT = 0x25;
public int VK_UP = 0x26;
public int VK_DOWN = 0x28;
public int VK_5 = 0x35;
public int VK_6 = 0x36;
//*****
public void SetHandle(int pid)
{
Process proc = Process.GetProcessById(pid);
handle = proc.MainWindowHandle;
}
public void SendDown(int VK)
{
SendMessage(handle, WM_KEYDOWN, VK, 0);
}
public void SendUp(int VK)
{
SendMessage(handle, WM_KEYUP, VK, 0);
}
public void SendWithDelay(int VK, int ms)
{
SendMessage(handle, WM_KEYDOWN, VK, 0);
Thread.Sleep(ms);
SendMessage(handle, WM_KEYUP, VK, 0);
}
}
}
und eine weitere VK liste... dies ist im übrigen sendmessage und nicht sendkey... Vorteil: das programm kann im hintergrund laufen und die keys werden trotzdem gesendet
Fragen über das Coden - Questions about codeing 05/23/2010 - General Coding - 2 Replies Hallo epvp*coders,
Da es immer wieder Threads zum Thema Coden gab habe ich mir gedacht ,ich mach hier mal einen Thread auf damit nicht immer wegen einer Frage ein neues Thema aufgemacht wird.
Also alle Fragen zum Coden einfach hier rein.
Because there over and over again Threads to the subject codeing was I have thought to me, I not always make here sometimes a Thread on with it because of a question a new subject is opened.
anweisung 02/02/2010 - Rappelz - 6 Replies Hey leute...
also mein kumpel spielt Rappelz is 46 oder so. Ich war bei ihm und fand das game nicht schlecht. Nun möchte ich ihn schön schnell einhohlen, habt ihr da tipps oder hacks oder sowas, die auch jmd versteht, der das game bis lvl 10 gespielt hat ? wäre echt toll
mfg lroxasl
Need 30$ O_O CODEING VIEW 11/17/2009 - 12Sky2 - 2 Replies Hay you guys knwo me, Point blank i need 30$ what do you guys want em to code
<_< Ill code anythign resonable, i just need 30$ paypal
by 3:00 GMT +1
Buying somethign i need off Ebay so i can finally fix the computer
PLEASE PLEASE PLEASE 20 Hours Left, Need to fix my pc ill code / do anything
(resonable)
Personal Codeing teacher 04/21/2009 - Dekaron Private Server - 0 Replies i am currently looking for a coder that is patient helpful and is willing to help me learn thats all im asking pm me if ur up to the task. fyi its for dekaron that im looking into learning how to code.
examples are how to edit basic weapons,integrate 145's into monsters, relics, chests etc... diteing monster exp, monster drops, weapons stats, etc...
Or can sumone message me on MSN [email protected] i need sumone to check my work i tryed to put the 145s inside the relic 3730 i put the item...