Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Sorry, I'm asking again. I set various settings and added two new ones in the Recipe ListCraftTypes But when testing, it prompts Invalid left-hand side in assignment

Hello.

I believe the issue here is that your craft category has a '/' in it. I might also think it could be the non-latin alphabet, but I was able to reproduce the problem just by creating a recipe that used a category with a '/' in the name.

The problem comes from the function which takes the string and turns it into a property of the $gameParty._craftLevels object. Unfortunately, properties like that cannot have a '/' in their name, so it causes the crash.

Originally I thought this might have been because of the way I was defining them, but I tried it the 'correct' way, and it still caused the same crash. Unfortunately, there is no way to correct this without redefining how those properties are created and called back later. 

The best thing I can suggest is to use a category name that doesn't have a '/' in it.

~Ramza