Finding IP

BlitzPlus Forums/BlitzPlus Programming/Finding IP

How do I find the IP address of the computer I'm using?

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)


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 :)