Ahmed97 1 Posted May 29, 2011 hey, is there anyway to make net suspender ? i need the idea pls Share this post Link to post Share on other sites
sleepydvdr 8 Posted May 29, 2011 Your question doesn't make any sense and it violates the rules since it involves automating games. #include <ByteMe.au3> Share this post Link to post Share on other sites
martin 85 Posted May 29, 2011 (edited) hey, is there anyway to make net suspender ?i need the idea pls Do you mean a fish net stocking suspender?EDIT: I see you're TheMaster. Are whips involved? (I think I must be in the wrong forum.) Edited May 29, 2011 by martin Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script. Share this post Link to post Share on other sites
Ahmed97 1 Posted May 31, 2011 guys i mean how it working, when any1 press suspend "the net stop working but the local area connection still connected" just that wanna know how it's working Share this post Link to post Share on other sites
jvanegmond 306 Posted May 31, 2011 HotKeySet("{F8}", "_Stop") HotKeySet("{F9}", "_Start") While 1 Sleep(100) WEnd Func _Stop() Run("ipconfig /release") EndFunc Func _Start() Run("ipconfig /renew") EndFunc Something like that? github.com/jvanegmond Share this post Link to post Share on other sites
Ahmed97 1 Posted June 3, 2011 yes it's something like that... how it's working ? and how can i make 1 like that ? Share this post Link to post Share on other sites
jvanegmond 306 Posted June 3, 2011 The code is not so difficult to understand. The HotKeySet, Sleep and Run help file pages (from the AutoIt help file which comes with your AutoIt installation) should help you understand it.As far as ipconfig goes, a little googlin' goes a long way: http://support.microsoft.com/kb/117662 github.com/jvanegmond Share this post Link to post Share on other sites