Error: Invalid *create (Broken variable names)

*comment Copyright 2010 by Dan Fabulich.
*comment
*comment Dan Fabulich licenses this file to you under the
*comment ChoiceScript License, Version 1.0 (the “License”); you may
*comment not use this file except in compliance with the License.
*comment You may obtain a copy of the License at
*comment
*comment http://www.choiceofgames.com/LICENSE-1.0.txt
*comment
*comment See the License for the specific language governing
*comment permissions and limitations under the License.
*comment
*comment Unless required by applicable law or agreed to in writing,
*comment software distributed under the License is distributed on an
*comment “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
*comment either express or implied.

*title My First ChoiceScript Game
*author lefteris
*scene_list
startup
ending
death

*create leadership 0
*create strength 0
*create wisdom 0
*create agresive 0
*create realm-relation 5
*create family relation 10
*create citizen relation 5
*create gold 5
i have the startup line 29: Invalid create instruction, value must be a a number, true/false, or a quoted string: realm relation 5 error

*create realm-relation 5
*create family relation 10
*create citizen relation 5

These are wrong. All your variables need to be one word, starting with a letter, containing only letters, numbers, and underscores ( _ ). You should use:

*create realm_relation 5
*create family_relation 10
*create citizen_relation 5
5 Likes

Dude Thank you so much…