mandoman wrote:No insult intended to Capt. Murphy, but that original script didn't produce. Maybe the AI I wrote is screwing it up, I don't know.
Whatever the AI does, the problem with your script is already identified and was clearly shown to you. I have no idea why you choose to ignore it.
I write it again:
Commander McLane wrote:The function is called shipExitedWitch[b][color=#FF0000]s[/color][/b]pace
.
Small 's'.
Is there anything in here that you don't understand? If so, then please ask.
As in every computer language, the JavaScript commands have a fixed syntax. As in every written language, orthography is important. In computer languages it is even more important than in human languages. A human can read a text with typos and still figure out what is meant. For instance, if somebody writes "thier" instead of "their", you still understand the word. The computer, however, is dumb. It does not understand what you want to say, if you get only one letter wrong.
That's why we have a documentation in the Wiki, where the exact syntax of each command is explained. Please use this documentation and stick to the exact syntax.
The documentation tells you that there is a command
shipExitedWitchspace. Please click on the link and read what this command means and what it does.
You are using a command in the 10th line of your code example which for your eyes may look the same as the one I have linked to above. For your eyes it may look the same, but it isn't. It has nothing to do with a command. Because the command is spelled "shipExitedWitchspace". But you have typed "shipExitedWitchSpace". Do you notice that this is not the same? Do you notice that there is a small, but important difference? The correct syntax requires you to write "Witchspace" with a small letter "s" in the middle. But you have written "WitchSpace" with an uppercase letter "S" in the middle. Do you see the difference?
Your computer does. For your computer "Witchspace" and "WitchSpace" are two completely different things. Your computer knows "Witchspace" as part of a command, but it has never ever heard of "WitchSpace". As far as your computer is concerned, you could have written "shipExitedRdfbsodjbviuer". It's just the same as "shipExitedWitchSpace". It is not a command your computer knows. Therefore your computer simply does
nothing when it reads this command.
Please, learn the correct syntax of the commands you want to use and stick to this syntax.
Do not change even one single letter. If an uppercase is required, type an uppercase. If a lowercase is required, type a lowercase. And never make up your own commands. Every command that is allowed to use is written down and explained in one of the documentation pages on the wiki. Please use them. And please type the commands
exactly as you see them on these documentation pages, without changing a letter.