var/charactername = input("What is your name?","Name") as null|text
Problem description:
They can have no names, which messes up everything. How can I nullify this?
ID:262858
Dec 23 2005, 11:48 pm
|
|
Code:
var/charactername = input("What is your name?","Name") as null|text Problem description: They can have no names, which messes up everything. How can I nullify this? |
In response to Diggsey
|
|
That wouldn't change a bit. null|anything gives a cancel option.
|
In response to Mysame
|
|
sorry.
|
In response to Diggsey
|
|
Thanks.
|
In response to Nick231
|
|
Nick231 wrote:
> var/charactername That will keep looping until they have entered something as a name. var/charactername You can use that if you want to prevent them of using anything besides letters in their names. |
That will keep looping until they have entered something as a name.