SizzlingCalamari
Account Details
SteamID64 76561197988973054
SteamID3 [U:1:28707326]
SteamID32 STEAM_0:0:14353663
Country Canada
Signed Up November 28, 2012
Last Posted September 17, 2021 at 9:06 PM
Posts 129 (0 per day)
Game Settings
In-game Sensitivity
Windows Sensitivity
Raw Input  
DPI
 
Resolution
 
Refresh Rate
 
Hardware Peripherals
Mouse  
Keyboard  
Mousepad  
Headphones  
Monitor  
1 2 3 4 5 ⋅⋅ 9
#812 mastercomfig - fps/customization config in Customization
mastercomsI believe it works on clients, as clients still split packets if they're too big. Unfortunately, I don't have access to any source code that uses these split packet commands, so I can't be too sure about them.

Have you tried IDA Pro or something similar on the linux/osx binaries to find references to the splitpacket convars?

posted about 6 years ago
#55 help me with my coding hw in Off Topic
TechDudeI don't know C++, but here's a LabVIEW solution:

Good solution.

ScorpioUprisingTECHNO AND SIZZLING YOU NEED TO STOP NOW!!renojordan. . .please stop harassing this poor 15 year old who cant read...
or code.....

I don't kNOw C++, but here's a C++ s0luti0n.
http://ideone.com/IGp429

#include <stdio.h>

int main()
{
    const int lol[] = {10920, 11129};
    char secret[] = "hi";
    char answer[] = "__";
    int o_o = 2;

    for (int i = 0; i < 7; ++i)
    {
        printf("Enter a letter. %s\n", answer);
        int guess = getchar();
        getchar();

        if(!(lol[0] + guess*(guess - (lol[1]-lol[0]))))
        {
            answer[guess - secret[0]] = secret[guess - secret[0]];
            o_o -= 1;
        }
        else
        {
            printf("Letter not found, try again\n");
        }

        if (!o_o)
        {
            printf("You win\n");
            break;
        }
    }

    printf("The word was %s\n", secret);
    return 0;
}
posted about 7 years ago
#46 help me with my coding hw in Off Topic

I don't know C++, but here's a sh solution.

#!/bin/sh

sudo apt-get install -y gcc
wget -O hangman.c http://ideone.com/plain/nwIobI
gcc -std=c99 hangman.c -o hangman
./hangman
posted about 7 years ago
#26 help me with my coding hw in Off Topic
_brianI don't know c++, but here's a whitespace solution:                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Let me know if u have any questions.

Phony
http://ideone.com/aae2AB

posted about 7 years ago
#23 help me with my coding hw in Off Topic

I don't know C++, but I just learned it a few minutes ago.
https://github.com/SizzlingStats/hangman_for_rowpieces

posted about 7 years ago
#12 help me with my coding hw in Off Topic

I don't know C++, but here's a C solution.
http://ideone.com/nwIobI

#include <stdio.h>

const int NUM_GUESSES = 7;
const char SECRET[] = "hi";

#define F 0
#define T 1

const int asdf[3][256] =
{
    {
        F, 0, 0, 0, 0, 0, 0, F,
        0, F, 0, 0, 0, 0, F, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, F, 0, 0, 0, 0, F, 0,
        F, 0, 0, 0, 0, 0, 0, F,
        0, F, 0, 0, 0, 0, F, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        1, T, 0, 0, 0, 0, F, 0,
        F, 0, 0, 0, 0, 0, 0, F,
        0, F, 0, 0, 0, 0, F, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, F, 0, 0, 0, 0, F, 0,
        F, 0, 0, 0, 0, 0, 0, F,
        0, F, 0, 0, 0, 0, F, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, F, 0, 0, 0, 0, F, 0,
        F, 0, 0, 0, 0, 0, 0, F,
        0, F, 0, 0, 0, 0, F, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, 0, F, F, 0, 0, 0
    },
    {
        0, F, 0, F, F, 0, F, 0,
        0, F, 0, F, F, 0, F, 0,
        0, F, 0, F, F, 0, F, 0,
        0, F, 0, F, F, 0, F, 0,
        0, F, 0, F, F, 0, F, 0,
        0, F, 0, F, F, 0, F, 0,
        0, F, 0, F, F, 0, F, 0,
        0, F, 0, F, F, 0, F, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 1, F, 0, 0, F, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, 0, F, F, 0, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, F, 0, 0, F, 0, 0,
        0, 0, F, 0, 0, F, 0, 0
    },
    {
        F, 0, F, 0, F, 0, F, 0,
        0, F, 0, F, 0, F, 0, F,
        0, 0, F, 0, F, 0, F, 0,
        0, 0, 0, F, 0, F, 0, F,
        F, 0, 0, 0, F, 0, F, 0,
        0, F, 0, 0, 0, F, 0, F,
        F, 0, F, 0, 0, 0, F, 0,
        0, F, 0, F, 0, 0, 0, F,
        F, 0, F, 0, F, 0, 0, 0,
        0, F, 0, F, 0, F, 0, 0,
        F, 0, F, 0, F, 0, F, 0,
        0, F, 0, F, 0, F, 0, F,
        0, 0, F, 0, F, 0, F, 0,
        1, 0, 0, F, 0, F, 0, F,
        F, 0, 0, 0, F, 0, F, 0,
        0, F, 0, 0, 0, F, 0, F,
        F, 0, F, 0, 0, 0, F, 0,
        0, F, 0, F, 0, 0, 0, F,
        F, 0, F, 0, F, 0, 0, 0,
        0, F, 0, F, 0, F, 0, 0,
        F, 0, F, 0, F, 0, F, 0,
        0, F, 0, F, 0, F, 0, F,
        0, 0, F, 0, F, 0, F, 0,
        0, 0, 0, F, 0, F, 0, F,
        F, 0, 0, 0, F, 0, F, 0,
        0, F, 0, 0, 0, F, 0, F,
        F, 0, F, 0, 0, 0, F, 0,
        0, F, 0, F, 0, 0, 0, F,
        F, 0, F, 0, F, 0, 0, 0,
        0, F, 0, F, 0, F, 0, 0,
        F, 0, F, 0, F, 0, F, 0,
        0, F, 0, F, 0, F, 0, F
    }
};

int main()
{
    char answer[] = "__";
    unsigned int hehehe = 0;

    for (int i = 0; i < NUM_GUESSES; ++i)
    {
        printf("Enter a letter. %s\n", answer);
        char guess = getchar();
        getchar();

        if(asdf[hehehe][guess])
        {
            int efef = (guess - SECRET[0]);
            answer[efef] = SECRET[efef];
            hehehe |= (1 << efef);
        }
        else
        {
            printf("Letter not found, try again\n");
        }

        if (hehehe == 3)
        {
            printf("You win\n");
            break;
        }
    }

    printf("The word was %s\n", SECRET);
    return 0;
}
posted about 7 years ago
#9 help me with my coding hw in Off Topic

I don't know C++, but here's a Lua solution.
http://ideone.com/dBBQvl

local secret = "hi"
local answer = "__"

for i=0,6,1 do
	local fuck = secret:gsub(io.read(), "_")
	for j=1,#fuck do
		if fuck:sub(j,j) == "_" then
			answer = answer:sub(1, j-1) .. secret:sub(j,j) .. answer:sub(j+1)
		end
	end
	print(answer)
	if answer == secret then
		print("You win")
		break
	end
end
print("The word was "..secret)
posted about 7 years ago
#2 TF2 ADS (aim down sights) pack in Customization

Very cool. Screenshots?

posted about 7 years ago
#3 Easy TF2 Mapmaker in Projects

Very cool.

posted about 7 years ago
#15 Why noone has unusuals in competitive? in Q/A Help

bok

edit: yepyepyepyepyep

posted about 7 years ago
#436 Comanglia's Config / FPS Guide in Customization

Could you put this on github so we can start having change history and provide suggestions?

posted about 8 years ago
#5 Custom Stats Retrieval? Mods/Plugins that do this? in Customization

That code was just part of a test we were doing at one point. Same with any proto stats or event stats code.

KayleeSeranadaI guess, in short, my questions are: Is this level of analysis even possible by the game engine? And, if so, where does one begin gathering the data to make this analysis possible?

Last I checked, there wasn't an easy way to get this data without some funky c++ work. That's exactly what AnAkkk did in TFTrue. https://github.com/AnAkkk/TFTrue/blob/public/logs.cpp#L655

So you could either mess with the code and build a custom plugin, or use tftrue_logs_accuracy in TFTrue.

posted about 8 years ago
#3 Custom Stats Retrieval? Mods/Plugins that do this? in Customization

SizzlingStats doesn't parse log lines/files, it reads data directly from game memory. For non scoreboard stats, it does custom game event handling and tracks the stats manually. At the end of tournament rounds, the stats are formatted and shipped off to the web server.

posted about 8 years ago
#3 lft open? in Recruitment (looking for team)

sail is fun to play with and has a good attitude. Pick him up!

posted about 8 years ago
#3 Weird stuff in TF2 console in Customization

http://www.teamfortress.tv/21577/materialsystem-unlock-0-00ms#4

mat_queue_report 0

posted about 8 years ago
1 2 3 4 5 ⋅⋅ 9