diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-07-02 22:56:22 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-07-02 22:56:22 +0800 |
commit | 1c8467227898b1bde20b0c0c2fee3b851d474cca (patch) | |
tree | e7f10e7b7a0f6b66659ec89a9a9cdc74b278b782 /mbbsd | |
parent | 562677712b03d169f51840c79690111b235ec862 (diff) | |
download | pttbbs-1c8467227898b1bde20b0c0c2fee3b851d474cca.tar pttbbs-1c8467227898b1bde20b0c0c2fee3b851d474cca.tar.gz pttbbs-1c8467227898b1bde20b0c0c2fee3b851d474cca.tar.bz2 pttbbs-1c8467227898b1bde20b0c0c2fee3b851d474cca.tar.lz pttbbs-1c8467227898b1bde20b0c0c2fee3b851d474cca.tar.xz pttbbs-1c8467227898b1bde20b0c0c2fee3b851d474cca.tar.zst pttbbs-1c8467227898b1bde20b0c0c2fee3b851d474cca.zip |
use vmsg()
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@401 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/user.c | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/mbbsd/user.c b/mbbsd/user.c index 95c3032f..a0895c3e 100644 --- a/mbbsd/user.c +++ b/mbbsd/user.c @@ -1,4 +1,4 @@ -/* $Id: user.c,v 1.26 2002/06/30 14:34:11 in2 Exp $ */ +/* $Id: user.c,v 1.27 2002/07/02 14:56:22 in2 Exp $ */ #include "bbs.h" static char *sex[8] = { @@ -1001,9 +1001,7 @@ int u_register(void) if( removespace(rname) && rname[0] < 0 && !strstr(rname, "��") && !strstr(rname, "�p") ) break; - move(20, 0);prints("�z����J�����T"); - pressanykey(); - move(20, 0);prints(" "); + vmsg("�z����J�����T"); } while( 1 ){ @@ -1011,26 +1009,20 @@ int u_register(void) "�A�ȳ��", career, 40); if( removespace(career) && career[0] < 0 && strlen(career) >= 4 ) break; - move(20, 0);prints("�z����J�����T"); - pressanykey(); - move(20, 0);prints(" "); + vmsg("�z����J�����T"); } while( 1 ){ getfield(9, "�t�����Ϊ��츹�X(�x�_�Х[\033[1;33m��F��\033[m)", "�ثe���}", addr, 50); if( removespace(addr) && addr[0] < 0 && strlen(addr) >= 15 ) break; - move(20, 0);prints("�z����J�����T"); - pressanykey(); - move(20, 0);prints(" "); + vmsg("�o�Ӧa�}�ä��X�k"); } while( 1 ){ getfield(11, "���[-(), �]�A���~�ϸ�", "�s���q��", phone, 11); if( removespace(phone) && phone[0] == '0' && strlen(phone) >= 9 ) break; - move(20, 0);prints("�z����J�����T"); - pressanykey(); - move(20, 0);prints(" "); + vmsg("�o�ӹq�ܸ��X�ä��X�k"); } getfield(13, "�u��J�Ʀr �p:0912345678 (�i����)", "������X", mobile, 20); |