Quote:
Originally posted by ZoSo@Dec 6 2006, 08:09
I think maybe he means to implement a loop which would iterate through all open CO processes and populate a combo box with the character names, so that the user could choose which account is accessed. :eek:
Thanks for the update blinko :)
|
well i think i understand a bit better i'll just have to add in some piece of code for that in the next update,but as of now it'll read more than one client but it read's the Active Window so if one is minimized it'll read the one thats open, or the last viewed.
I'll have to read character name Values and have the combobox fill with the char names, then as you've stated add a loop to have it find the Windows pID
and the character name to match that id ^^.
The class files are easy to use yourself as well as the DLL, you can code almost anyhting with them really if ya know what you're doing
however the sample project i made that's in the folder, as well as the compiled EXE is coded all sorts of sloppy lol, but it works :) so it's ok.That's just how i do.
also going to be adding into the class files and the DLL, the client side changes which will be simply used as such
Dim Player as Player
set Player = new Player
Private Sub Command1_Click()
Player.Normal ( True )
Player.bluename ( True )
End Sub
Set's values to 0 first then makes the char bluename.
i just got a True value set so far soon i'll be changing it so you won''t need the (True) you'll just use the
Private Sub Command1_Click()
Player.Normal
Player.bluename
End Sub
Makes more sense since if it just sets the state, using true/false values would be better used for a (example type of alert system if player.bluename=true then blah)
i'll work all of that in Each with Separate Modules.
Also will eb adding a playsound API and custom sounds to alert on lvl up,Experience gain (example alert when at 60.000 % )
ActionType.cls ( Class Module for Client side Changes ) To be uploaded soon.
Added Changing Character Size,Character Direction - Changing Character Name (work in progress having trouble getting it to write properly to the memory)
so far i've tested the name "babe" as it now only allows 4 characters lol
and it omes out on the client as "ebab" plus some strange character's working on that too.
Working on gathering mouse click event's to finish up the auto healer stuff's, cause up until now i used VB and created an object of AutoIT to do that, so i need ot change it all around.