login_logout.dm:16:error:base_save_allowed:undefined var
login_logout.dm:1:error:base_num_characters_allowed:undefine d var
login_logout.dm:49:error:client.base_ChooseCharacter:undefin ed proc
login_logout.dm:54:error:client.base_CharacterNames:undefine d proc
ummm how do I make these vars and procs or fix this error?
ID:173716
Nov 25 2003, 7:16 pm
|
|
Nov 25 2003, 8:52 pm
|
|
Easy, define the procedures and variables. XD
|
In response to Yota
|
|
uuhhhh
login_logout.dm:16:error:base_save_allowed:undefined var base_save_allowed = 0 // If player quits before choosing, don't want to save this mob. ----------------------------------------------------------- login_logout.dm:1:error:base_num_characters_allowed:undefine d var client/base_num_characters_allowed = 3 ----------------------------------------------------------- login_logout.dm:49:error:client.base_ChooseCharacter:undefin ed proc client.base_ChooseCharacter() ----------------------------------------------------------- login_logout.dm:54:error:client.base_CharacterNames:undefine d proc var/list/characters = client.base_CharacterNames() ----------------------------------------------------------- that? |
In response to Majinveku
|
|
I know this sounds stupid, but have you actually included the library? You do this by clicking the little grey box next to it.
|
In response to Hazman
|
|
was gonna say that.
|
In response to ZDarkGoku
|
|
How did I miss the "base_"?
|