Finding IP

BlitzPlus Forums/BlitzPlus Programming/Finding IP

William Drescher(Posted 2007) [#1]
How do I find the IP address of the computer I'm using?


b32(Posted 2007) [#2]
In Blitz or in general ?
Start->Run->Type 'cmd' + enter->Type 'ipconfig' + enter
or http://whatsmyip.org/
In Blitz:
 ips 	= CountHostIPs("")
 If Not ips Then End
 hip 	= HostIP(1)
 Print DottedIP(hip)



William Drescher(Posted 2007) [#3]
I know the website and another called ipchicken (www.ipchicken.com). I need the one to find it in blitz so thank you very much :)