novva
Account Details
SteamID64 76561198064822715
SteamID3 [U:1:104556987]
SteamID32 STEAM_0:1:52278493
Country United States
Signed Up June 28, 2016
Last Posted November 2, 2016 at 8:08 PM
Posts 15 (0 per day)
Game Settings
In-game Sensitivity
Windows Sensitivity
Raw Input  
DPI
 
Resolution
 
Refresh Rate
 
Hardware Peripherals
Mouse  
Keyboard  
Mousepad  
Headphones  
Monitor  
#10 RosterChecker in Projects
ConsolenovvaAntaresonly ugc?I'll add for ESEA but as of right now it only works on UGC.You can't really ring in ESEA as you have to be rostered and paid up in a match.
I think Antares was referring to ETF2L (and as an extension OZFortress and AsiaFortress should probably be considered, though I don't know how rostering works in those regions)

I haven't played in esea yet, sorry for my ignorance. I'll look into OZFortress, AsiaFortress, and ETF2L.

posted about 7 years ago
#9 RosterChecker in Projects
unfnovvaAntaresonly ugc?I'll add for ESEA but as of right now it only works on UGC.
esea has their own plugin that runs and you play on their servers through their client

Sorry for my ignorance. I haven't played in esea yet.

posted about 7 years ago
#5 RosterChecker in Projects
Antaresonly ugc?

I'll add for ESEA but as of right now it only works on UGC I'll add for ETF2L, OzFortress, and AsiaFortress.

posted about 7 years ago
#1 RosterChecker in Projects

A simple script meant to check a server for ringers.

Hello. I've created a small (250 line) script used for checking a roster against the people in a server. The usage is very simple, The first input is the enemy roster (a url like http://ugcleague.com/team_page.cfm?clan_id=9016). The second optional input is the status command from console. After submitting this, rostered players will be printed at the top, while the ringers will be printed at the bottom.

Configuration is also simple. On the first run, a data .json file will be created. This needs to be configured. If no server is owned, then the only important setting is "homeRosterLink". If no server is configured in the settings, then the status command needs to be used.

I would like to say I know there have been tools for this in the past, but the ones I've seen are 2-3 years old.

Project Page

Direct Download

Virus Scan

posted about 7 years ago
#1 SSDownloader in Projects

Source
(Reposting because last night I was hella tired and wrote like 3 sentences and called it good)
Explanation
This is used to automatically download your most recent sizzling stats game, or your 10 most recent. It automatically drops it into the tf folder so you really don't have to do anything. The only bit of information the program needs is your custom id.

Usage
Usage is straight forward. When you first open the program you will be prompted to enter your custom id. If your profile link was steamcommunity.com/id/gaben then all you would enter into the program is gaben. You will then be asked if you want to download your most recent game (1), or your 10 most recent games (2). It will start downloading the .zips containing the stvs, and then the stvs will be extracted to your tf folder. The names of all of the demos will be listed.
Download
Any feedback is appreciated and I will likely add features if they are suggested.

If you do a virus total it will appear to be a virus, but that is only because all packaged programs made with python appear that way. It was mentioned by toadstf in my last post.

posted about 7 years ago
#8 SSDownloader in Projects

Forgot to mention, if you put in the wrong custom id then you can just delete config.txt and restart the .exe

posted about 7 years ago
#3 SSDownloader in Projects

Forgot to mention, if you put in the wrong custom id then you can just delete config.txt and restart the .exe

posted about 7 years ago
#1 SSDownloader in Projects

Download
The short explanation is that you open the .exe and the first time you run it you will need to enter your custom id. For example, if your profile is steamcommunity.com/id/nmpnova then you would enter nmpnova. If you type 1 it will download your most recent game and extract it to the tf folder, but if you type 2 it will extract your 10 most recent games to the tf folder. Any feedback will be cool, along with any feature suggestions.

posted about 7 years ago
#7 TfDemViewer in Projects
yttriumnovvaI mean yeah. But it's currently impossible to force a console command into tf2 (such as playdemo) while it's running. All you do is run the setup, then right click on a demo and hit "Open Demo in TF2".Is it? I'm fairly certain you could do it with a plugin.

With a plugin as in server side or as in a custom item. Custom items can set commands to do certain actions, but they don't inject custom actions into console. Like I would still need to type in the command into console.

posted about 7 years ago
#5 TfDemViewer in Projects
deykuzorI mean, I would love this if it played demos without launching tf2 at all. Like I wouldn't need to load the game or anything? I haven't any idea what the tool is like due to it being a download link without screenshots, but I'm assuming it just launches tf2 with a demo pre loaded?

I mean yeah. But it's currently impossible to force a console command into tf2 (such as playdemo) while it's running. All you do is run the setup, then right click on a demo and hit "Open Demo in TF2".

posted about 7 years ago
#3 TfDemViewer in Projects
CitroMaindi dont really see a point in this, because opening demos isnt really that hard...

Yeah, honestly the only reason I made this is because it was suggested to me.

posted about 7 years ago
#1 TfDemViewer in Projects

I understand that demoviewer just recently came out, I still just wanted to post this here.
Download.
This is a very simple, small program I made that allows you to right click a .dem file and have it automatically run in TF2. Installation is simple, all you do is extract into a folder, and run setup.exe, but don't run handler.exe. After that, as long as TF2 is closed you can get demos to play easily. Any feedback or feature suggestions are welcome. Thank you.

posted about 7 years ago
#5 STV Grabber to automatically extract .ss demo in Projects
toads_tfHey, I've built a UI for this program, here's the source code. Very basic, but you can improve upon it if you will. It uses Tkinter, but that comes with python so no worries. I don't have Pyinstaller for 2.7 so I didn't build it, but you can if you'd like :) you'll probably have to fix the tabbage, so here's a puush of the file: http://puu.sh/pJyOR/ec037e30b0.py
Show Content
import random, sys, httplib2, win32clipboard, webbrowser, time, zipfile, os, urllib, requests
from copy import deepcopy
from bs4 import SoupStrainer
from bs4 import BeautifulSoup
from urllib2 import Request
from urllib2 import urlopen
from tqdm import tqdm
from Tkinter import *

#When I wrote this, only God and I knew what I was writing
#Now only God knows
#
#added GUI -todes
#(toads_tf also knows)

def download_zip(page,path):
data = "http://sizzlingstv.s3.amazonaws.com/stv/"+ page[-6:] +".zip"
filename = page[-6:] + ".zip"
try:
urllib.urlretrieve (data, filename)
print data
except:
print("No zip file was found, ending program...")
os.remove(filename)
time.sleep(5)
exit()

for i in tqdm(range(100)):
time.sleep(0.02)
try:
zip_ref = zipfile.ZipFile(filename, 'r')
zip_ref.extractall(path)
zip_ref.close()
os.remove(filename)
except Exception as e:
print str(e)
gameVar = StringVar()
top = Toplevel()
top.title('Error')
msg = Message(top,text="Something went wrong while exporting. Try putting your Team Fortress 2\\tf folder path here, but with double slashes. (\\\, not \)")
msg.pack()
gameDir = Entry(top,textvariable=gameVar,width=20)
gameDir.pack()
changeBtn = Button(top,text='Retry',command=lambda:download_zip(link.get(),gameVar.get()),width=7)
changeBtn.pack()

TOPP = Toplevel()
TOPP.title('Complete!')
mensaje= Message(TOPP,text=filename + " From " + data + " has been downloaded and extracted.")
mensaje.pack()
time.sleep(5)

window = Tk()
window.title('Sizzlingstats Downloader')

link = StringVar()

info = Label(window,text='Please copy the .ss link below:')
info.pack()
linkBox = Entry(window,textvariable=link,width=30)
linkBox.pack()
goBtn = Button(window,text='Go',command=lambda:download_zip(link.get(),"C:\\Program Files (x86)\\Steam\\steamapps\\common\\Team Fortress 2\\tf"),width=10)
goBtn.pack()

window.mainloop()

I hate to ask, but can you update this ui for the new code? I added renaming the demos... https://github.com/novazzz/ssDemoDl If you don't want to I understand.

posted about 7 years ago
#4 STV Grabber to automatically extract .ss demo in Projects
toads_tfHey, I've built a UI for this program, here's the source code. Very basic, but you can improve upon it if you will. It uses Tkinter, but that comes with python so no worries. I don't have Pyinstaller for 2.7 so I didn't build it, but you can if you'd like :) you'll probably have to fix the tabbage, so here's a puush of the file: http://puu.sh/pJyOR/ec037e30b0.py
Show Content
import random, sys, httplib2, win32clipboard, webbrowser, time, zipfile, os, urllib, requests
from copy import deepcopy
from bs4 import SoupStrainer
from bs4 import BeautifulSoup
from urllib2 import Request
from urllib2 import urlopen
from tqdm import tqdm
from Tkinter import *

#When I wrote this, only God and I knew what I was writing
#Now only God knows
#
#added GUI -todes
#(toads_tf also knows)

def download_zip(page,path):
data = "http://sizzlingstv.s3.amazonaws.com/stv/"+ page[-6:] +".zip"
filename = page[-6:] + ".zip"
try:
urllib.urlretrieve (data, filename)
print data
except:
print("No zip file was found, ending program...")
os.remove(filename)
time.sleep(5)
exit()

for i in tqdm(range(100)):
time.sleep(0.02)
try:
zip_ref = zipfile.ZipFile(filename, 'r')
zip_ref.extractall(path)
zip_ref.close()
os.remove(filename)
except Exception as e:
print str(e)
gameVar = StringVar()
top = Toplevel()
top.title('Error')
msg = Message(top,text="Something went wrong while exporting. Try putting your Team Fortress 2\\tf folder path here, but with double slashes. (\\\, not \)")
msg.pack()
gameDir = Entry(top,textvariable=gameVar,width=20)
gameDir.pack()
changeBtn = Button(top,text='Retry',command=lambda:download_zip(link.get(),gameVar.get()),width=7)
changeBtn.pack()

TOPP = Toplevel()
TOPP.title('Complete!')
mensaje= Message(TOPP,text=filename + " From " + data + " has been downloaded and extracted.")
mensaje.pack()
time.sleep(5)

window = Tk()
window.title('Sizzlingstats Downloader')

link = StringVar()

info = Label(window,text='Please copy the .ss link below:')
info.pack()
linkBox = Entry(window,textvariable=link,width=30)
linkBox.pack()
goBtn = Button(window,text='Go',command=lambda:download_zip(link.get(),"C:\\Program Files (x86)\\Steam\\steamapps\\common\\Team Fortress 2\\tf"),width=10)
goBtn.pack()

window.mainloop()

My god, thank you so much!

posted about 7 years ago
#1 STV Grabber to automatically extract .ss demo in Projects

Download Link
I was challenged by a friend to create a program to download from an SS link. So you copy the SS link, open the program, hit enter, and everything else is done automatically. It goes to your TF directory by default. I just made it so there is most likely tons of bugs in the code, and if you do get a bug please post it here along with your OS, and x32 or x64.

EDIT: Added github link so you can always be updated when I update it. Also major thanks to toad for the UI.

posted about 7 years ago