Monika-After-Story / MonikaModDev

DDLC fan mod to extend Monika
http://www.monikaafterstory.com/
Other
1.18k stars 685 forks source link

Help! problem about missing files #6321

Closed Maso-craeter11 closed 3 years ago

Maso-craeter11 commented 4 years ago

I am a mac user I use itch io to download ddlc

Screen Shot 2020-09-12 at 1 28 13 PM

I have no idea what to write so if need me to tell!

traceback copy.txt

Freshairkaboom commented 4 years ago

Are you using steam to play MAS? If so, go to this page and download a non steam version of MAS. Steam tends to delete many files, so maybe that's your issue. Also, that's the wrong traceback, that's the end of Act 1 one from the base game.

The folder you download from the link above is a zip. Extract it, then go to the game folder in the extracted folder and copy all of the contents. You need a fresh, non steam download of DDLC from here.

Then just dump all the contents of the game folder into a fresh install of DDLC's game folder. Overwrite everything. Then see if it works. I hope it does, I've never owned a Mac.

Maso-craeter11 commented 4 years ago

1:1.txt oof here the traceback

Freshairkaboom commented 4 years ago

Yeah okay, you're missing the python package known as ccmath.py. Downloading a fresh version would probably be the right move here. Make sure it's not on steam. Make sure the new version has ccmath (just search for it in the folder), or look for it in game > python-packages before you delete the old one.

Maso-craeter11 commented 4 years ago

it here already in

Screen Shot 2020-09-12 at 1 55 02 PM

folder

Freshairkaboom commented 4 years ago

Do you mind if you copy that file, and attach the copy to your message here? I want to check it out.

Maso-craeter11 commented 4 years ago

implementation of polar/rect functions using non-cmath

try: import cmath no_cmath = False except: no_cmath = True import math

if no_cmath: def _to_polar_angle(x, y): """ Converts an x,y to angle. :param x: x coordinate :param y: y coordinate :returns: angle in radians """ return math.atan2(y, x)

def _to_polar_radius(x, y):
    """
    Converts an x,y to radius.
    :param x: x coordinate
    :param y: y coordinate
    :returns: radius
    """
    return math.sqrt( (x*x) + (y*y) )

def _to_rect_x(r, a):
    """
    Converts an r, a to x coordinate
    :param r: radius
    :param a: angle
    :returns: x coordinate
    """
    return r * math.cos(a)

def _to_rect_y(r, a):
    """
    Converts an r, a to y coodinate
    :param r: radius
    :param a: angle
    :returns: y coordinate
    """
    return r * math.sin(a)

def polar(x, y): """ Converts an x, y to polar coordinates :param x: x coordinate :param y: y coordinate :returns: (radius, angle) """ if no_cmath: return _to_polar_radius(x, y), _to_polar_angle(x, y) return cmath.polar(complex(x, y))

def rect(r, a): """ Converts an r, a to regular coordinates :param r: radius :param a: angle :returns: (x, y) """ if no_cmath: return _to_rect_x(r, a), _to_rect_y(r, a) coords = cmath.rect(r, a) return coords.real, coords.imag

Maso-craeter11 commented 4 years ago

sorry was on a 30 min break

Freshairkaboom commented 4 years ago

Not exactly what I meant. You can attach files to the bottom of your comment here. I need to see the lines inside the file to know they're in the proper place.

EDIT: NVM that file is not supported... A screenshot would be better then, especially line 13

Maso-craeter11 commented 4 years ago

Screen Shot 2020-09-12 at 2 43 44 PM

Freshairkaboom commented 4 years ago

Oh woops, nevermind I wanted to look at zz_interactions.rpyc but ofc it's encoded. Have you tried getting a new download? I know it will take a little while but I can't exactly look into your encoded files to see if there's anything wrong with them, so you'll need a fresh download (outside Steam) I feel.

Maso-craeter11 commented 4 years ago

nope still the same thing happened no ccmath.ccmath but i can find them

Freshairkaboom commented 4 years ago

It may be a more comprehensive issue with Mac OS, and since none of us have Macs, we can't really test any fixes to this problem at the moment. The problem may be that the game is not looking for the file in that folder. I'll try to get back to you when I know more.

Maso-craeter11 commented 4 years ago

ok

Maso-craeter11 commented 4 years ago

thank you!

Maso-craeter11 commented 4 years ago

Do you think what mod i can do?

ThePotatoGuy commented 3 years ago

guessing there was no resolution. There's not much we can do for macs, sorry.

[closing as could not reproduce]