Hello! I am new to these forums and to rom hacking in general. I recently downloaded XSE. However, I am running on a Mac system which simply does not have enough hard drive space to dual boot. So, I am running the program through Wine currently. There have been a few hiccups along the way, which is why I bring this up–it might be a source of the problem. I am also not currently writing the scripts in XSE but in Atom, but I do not believe that this should be an issue, as the files are simply the raw text of the script.
Currently, I am trying to compile the following very simple script:
Code:
#dynamic 0x800000
#org @start
lock
faceplayer
msgbox @talk 0x6
release
end
#org @talk
= Hello World!
However, when I click compile, I get the following error:
Code:
Too many parameters on line 1. The correct number is 1.
As far as I am aware, there is only one parameter on line 1, and I am not sure how I would be able to change that. If any other users can think of a reason my program might fail to compile, please let me know. Again, there is a solid chance that forcing this poor program to run on Mac might be making the compiler behave oddly, in which case I will need to find another way to compile these scripts.
Thanks in advance!