Friends… Bot Again?
I was playing ragnarok again and the bot thing is needed and so i need to study and read stuff about bot. I really like playing but it takes all of my time just to level my character, and bot to the rescue. I would choose not to bot if only time is not wasted that much. Playing this Online Games makes me feel i have so many friends and they acknowledge me and thats a good thing for me. For a person to be acknowledge is much to be appreciated. U wont feel alone and there is always something to talk about things you are interested. Sharing knowledge and things that u cant have if u only work alone.
I Lost Something Today.
I lost something and i just found out today. I dont want to think that my very good friend did it. Am still hoping i can find that so i could rest my self and not to worry about my friend. Hoping that this will pass coz he really is a very good friend huhu.
Visual Basic
To interface Visual Basic to output port you need the MSCOMM component in toolbox.
To install the MSCOMM component just right click the toolbox and search for the “MS Comm Control 6.0″
Check the checkbox to add “MS Comm Control” components to the toolbox and then click ok so you could add it to the form. Place the MSComm control component to your form(it looks like an analog phone and its color is yellow) and viola you can now add the code needed to manipulate the object.
To set up MSComm component, you need to follow this code (lets assume that the name of the component is MSComm1 oki)
CODE:
MSComm1.CommPort = COM1 ‘You need to define the comm port available on your computer.
MSComm1.Settings = “9600, N, 8, 1″ ‘9600 Baudrate, No Parity, 8 bits data, 1 Stopbit.
MSComm1.InputLen = 1 ‘Set to read 1 character/byte whenever Input property is used.
MSComm1.InputMode = comInputModeBinary ‘Input will accept/retrieve data in array of bytes.
MSComm1.PortOpen = True ‘Set true to open serial port comm1.
To read data from serial port
CODE:
If MSComm1.InBufferCount Then
read_value = MSComm1.Input ‘read_value will read whatever data is sent to serial port of the computer.
To write data to serial port
CODE:
MSComm1.Output = something_to_send ‘to send data to the output of the serial port of the computer.