Looking for tuts

04/25/2008 22:43 masterurat#1
I've started getting some good skills at using Visual Basic, and want to attempt making some FFXI bots using the FFACE.dll, though have no idea how to load the library into my VB program.

Anyone know some tutorials that are geared towards doing this?
04/29/2008 14:40 Hikkikomori#2
if you have the FFACE.vb helper file you can just add it into your current project - load FFACE like this:

Main.vb:
first two lines are
Quote:
Option Strict Off
Option Explicit On
in the mainform_load add this line:
Quote:
FFACE.NativeMethods.InitFFACE()
now u can easily do stuff like... TextBox1.Text = FFACE.Player.Name , which would display your current name in a textbox with the name "TextBox1.Text"

please try this out first. if you really cant get this to work at all, i will create a sample project for you (ready to use WindowerHelper.dll for the directinput keystrokes and FFACE.dll for the memory readin)