.... 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 = ""
|
||||
partDomain = ""
|
||||
running = 1
|
||||
pingOn = true
|
||||
pingOn = 1
|
||||
|
||||
|
||||
def iterate(inArray, pre):
|
||||
@ -62,7 +62,10 @@ def getInput():
|
||||
while running == 1:
|
||||
getInput()
|
||||
if inInput == "ping":
|
||||
pingOn = not pingOn
|
||||
if pingOn == 1:
|
||||
pingOn = 0
|
||||
else:
|
||||
pingOn = 1
|
||||
if inInput == "":
|
||||
pass
|
||||
else:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user