This is strange.
Since some time, whenever I edit an external file (e.g. for effects) that I include into my main script, there is always this
Unable to be interpreted-error showing up, not pointing out any specific mistake but always the first line with this
・ソ-thingy appearing before the code begins. This also happens to the main scripts. although more rarely.
Could this be possible because of mistakes somewhere deeper in the code, or is this some kind of a bug?
The affected script here, just in case:
http://pastebin.com/Lm9c8wzyThe error message:
************************************************
Unable to be interpreted (Don't forget ";"s).
(解釈できないものがあります(「;」を忘れていませんか))
C:/Users/Jimmy/Saved Games/Touhou Danmakufu/th_dnh_ph3/script/Sandbox/Kanjuden Boss Rush/eff/effects.txt
effects.txt line(行)=1
↓
・ソfunction delay(d) {
loop(d) { yield; }
}
//-----------------------------------------------
task shockwave(tobj,color){
let obj = ObjPrim_Create(OBJ_SPRITE_2D);
let Xscale = 0.2;
let Yscale = 0.2;
let alpha = 255;
ObjPrim_SetTextur
~~~
************************************************