Skip to content

Instantly share code, notes, and snippets.

View dantarion's full-sized avatar

Eric "dantarion" Sheppard dantarion

View GitHub Profile
{
"_00_00": [
7,
5
],
"_00_01": [
5,
3,
5
],
// Generated by umvc3.js (http://github/dantarion/umvc3.js)
//0x2D0
defineState((0x000), 60, function () {
init: {
//[]
_01_A2();
//[6]
_01_B9(0.000000);
}
frame_0: {
{
"0x0": {
"id": 0,
"blockCount": 4,
"unknown": 0,
"meterRequired": 0,
"disabled": 0,
"threshold": 5,
"positionRequired": 0,
"stateRequired": 0,
@dantarion
dantarion / blah.md
Last active September 20, 2017 21:39
Dantarion's MVCI Buglist+Workarounds

On ultrawide monitors, fullscreen mode is stretched no matter what

  • No workaround yet. Attempting to override resolution settings results in the game setting them back
  • (dantarion) My monitors aspect ratio settings don't work because the game is still outptting 21:9 resolution even though the game is being rendered 16:9 and streching

Only P1 can move menus, and which controller is P1 is arbitrary.

If your stick doesn't work, check to see that you don't have any controllers showing in the Windows Control Panel Game Controllers menu.

  • vJoy Virtual Joystick claiming P1 has affected two people thus far

Antivirus programs can conflict with MVC:I

  • If the game launches and then immediately exits, you may have software on your computer running MVCI doesn't like
for(var j =0; j < 25; j++){
input.P1
.press(DOWN,1)
.press(UP|RIGHT,4)
.press(DOWN|RIGHT,1)
.press(HK,34)
.press(DOWN,1)
.press(UP|LEFT,4)
.press(DOWN|LEFT,1)
.press(HK,34)
import os
import zlib
from struct import pack,unpack
def extractFile(filename):
f = open(filename,"rb")
f.seek(0x14)
unknown, filecount = unpack(">HH",f.read(4))
f.seek(0x60)
dirpath = filename.replace(".drp","")
if not os.path.isdir(dirpath):