Ask not.Huh... i wonder for whom the bell tolls.
Ask not.Huh... i wonder for whom the bell tolls.
MTL on the description of the post is about the laziest effort possible. Use your words, not chatGPTs. You don't have to rewrite the whole game, just the description in the forum ffs.Japanese has gender-neutral pronouns.
English does not.
MTL-kun is very confused
How the Hell is this still news srsly...
While that is technically true, there is no pronoun used in the 1st sentence of the description in Japanese. And the only non-gendered pronoun is in the 3rd sentence, which MTL gets correct.Japanese has gender-neutral pronouns.
English does not.
MTL-kun is very confused![]()
The laziest thing is to just cry, complain and not contribute anything to the website.MTL on the description of the post is about the laziest effort possible. Use your words, not chatGPTs. You don't have to rewrite the whole game, just the description in the forum ffs.
Prologue of the developer, of their video game:You put more effort into this reply than the description. So you can do it, but won't. Gotcha.
You put more effort into this reply than the description. So you can do it, but won't. Gotcha.The laziest thing is to just cry, complain and not contribute anything to the website.![]()
I got the same error. There seemed to be an issue with some width/height values not being applicable. I edited the rpg_core.js file in www/js and it seems to work nowBruh, what am I supposed to do?
I can't find this in the js file. Btw, didn't you try putting the file inside a rar?imageDataX = context.getImageData(0, 0, 1, 1);
js files usually ping as a virus when there’s Japanese characters. Seems to be an issue whenever there’s a character it doesn’t recognise. Thanks for the fix.I got the same error. There seemed to be an issue with some width/height values not being applicable. I edited the rpg_core.js file in www/js and it seems to work now
EDIT: For some reason the .js file was marked as a virus, so I'll just paste the edits to make.
Change wherever it says:
var imageData = context.getImageData(0, 0, this.width, this.height);
to
var w = Math.max(1, Math.floor(this.width) || 1);
var h = Math.max(1, Math.floor(this.height) || 1);
var imageData = context.getImageData(0, 0, w, h);
and imageDataX = context.getImageData(0, 0, 1, 1);
to
var xSafe = Math.floor(x) || 0;
var ySafe = Math.floor(y ) || 0;
var data = this._context.getImageData(xSafe, ySafe, 1, 1).data;
it was two lines, imageData1 and imageData2 I think. I just replaced the numbers with the X. I'll reupload it since it seems to be a known false positiveI can't find this in the js file. Btw, didn't you try putting the file inside a rar?
All I did was use the zip command on the .js file, so I don't know what to tell you
I was able to find both lines with the clarification above, thanks.All I did was use the zip command on the .js file, so I don't know what to tell you