Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Character Creation and startup

edited May 2014 in Help! with 1.x
So I'm working on character creation etc. and have a few questions.

for radio buttons, is there a way to display something different than what it sets the variable as?

<<radio "$sex" "m">> male
<<radio "$sex" "f">> female
This is going to be more important with species creation. It's created for optional hybridizing, so each body part etc. is stored separately, and I want to be able to give it a more descriptive label so they understand what is, but have a more short form for the variable, which may not start with the same letter

If I want to store a character's first and last name separately, can I use a button for just one which will save the information in both?

<<textinput $Fname "">>
<<textinput $Lname "" [[Continue|CharacterSpecifics]]>>
right now I have the first name at the bottom of the first character creation page, then the last name at the bottom of the next character creation page.

I'll probably have questions about checkboxes in a minute, but this is it for now :) thanks in advance

Comments

  • Well I figured out how to store the names in separate variables on the same page, so I'll post here in case anyone else was wondering.

    <<textinput $Fname>> <<textinput $Lname>> <<button [[Continue|CharacterSpecifics]]>>
Sign In or Register to comment.