• Welcome to Valhalla Legends Archive.
 
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Lobo

#1
General Discussion / Re: Triton
April 30, 2005, 09:18 PM
Quote from: hismajesty[yL] on April 30, 2005, 06:58 PM
Quote from: DeTaiLs on April 30, 2005, 04:28 PM
They got a ss section on the website

where?

Looks like there are a few SS's under the FAQ Section.
#2
Warcraft / Re: Skywing in the News
February 21, 2005, 10:48 PM

Thanks to www.foxtrot.com
#3
Gaming Discussion / Re:World of WarCraft Stress Test
September 02, 2004, 10:37 PM
Right click to target, and attack the creature. Account: TheLobo
#5
On the SendMessages Call's insted of doing

ret = SendMessage(hwnd_winamp, WM_COMMAND, WINAMP_BUTTON2, 0)


try:

Call SendMessage(hwnd_winamp, WM_COMMAND, WINAMP_BUTTON2, 0)
#6
You might want to Change Command to WinAmpCommand
#7
http://www.vbtutor.net/

You might want to search www.google.com for more tutorials.
#8
You would need to make a packet buffer to send the data with, and then you just need to recieve the data which the server sends back, and parse it out as needed. Depending on what programming language you use, you might want to learn it first.
#9
since your using a function you need to declare it, as which data type that fits your needs, of course the way it looks you might just want to do


Public sub command(byval text As String)
'winamp code here
End Sub
#10
C is client
S is server
C->s is client to server

c>0x05 is client sending 0x05
s>0x05 is server replying back with 0x05
#12
Gaming Discussion / Re:Any good games?
June 26, 2004, 05:44 AM
Star Wars Galaxies is running a 14-Day Trial you can get it at www.fileplanet.com
#13
.NET Platform / Re:Er, compiler problem
June 19, 2004, 01:03 PM
No problem, glad you got it working.
#14
.NET Platform / Re:Er, compiler problem
June 19, 2004, 06:45 AM
I searched google, this is something it came up with http://www.code101.com/Code101/DisplayArticle.aspx?cid=51

Hope that helps.
#15
Visual Basic Programming / Re:Help with :
June 03, 2004, 02:22 PM
You could use it with select case.  If your only wanting to call one thing.

Select Case this
       Case 1: dosomething
End Select