.... bools
This commit is contained in:
parent
4f4afc41c2
commit
610611ab67
7
HTTPy.py
7
HTTPy.py
@ -7,7 +7,7 @@ import re # YAY REVERSE ENGINEER... wait its just regex
|
|||||||
inInput = ""
|
inInput = ""
|
||||||
partDomain = ""
|
partDomain = ""
|
||||||
running = 1
|
running = 1
|
||||||
pingOn = true
|
pingOn = 1
|
||||||
|
|
||||||
|
|
||||||
def iterate(inArray, pre):
|
def iterate(inArray, pre):
|
||||||
@ -62,7 +62,10 @@ def getInput():
|
|||||||
while running == 1:
|
while running == 1:
|
||||||
getInput()
|
getInput()
|
||||||
if inInput == "ping":
|
if inInput == "ping":
|
||||||
pingOn = not pingOn
|
if pingOn == 1:
|
||||||
|
pingOn = 0
|
||||||
|
else:
|
||||||
|
pingOn = 1
|
||||||
if inInput == "":
|
if inInput == "":
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user