GangPung
°¡ÀÔÀÏ: 2003³â 12¿ù 22ÀÏ
°Ô½Ã¹°: 322
ÁÖ ¼Ò: ´ëÇѹα¹
|
±Û ÀÛ¼º½Ã°£ : 2003-12-22 ¿ù 5:43 pm Á¦¸ñ: ¼¹ö ·Î±×ÀÎ ¸Þ½ÃÁö Ãâ·Â ¼öÁ¤ ºÎºÐ... |
|
|
Scripts\Misc\LoginStats.cs
ÄÚµå :
m.SendMessage( "Welcome, {0}! There {1} currently {2} user{3} online, with {4} item{5} and {6} mobile{7} in the world.",
args.Mobile.Name,
userCount == 1 ? "is" : "are",
userCount, userCount == 1 ? "" : "s",
itemCount, itemCount == 1 ? "" : "s",
mobileCount, mobileCount == 1 ? "" : "s" );
À§ÀÇ SendMessage ´ÙÀ½ ºÎºÐÀ» ¼öÁ¤ÇϽøéµË´Ï´Ù.
{0} ~ {7} ±îÁö ¼ø¼´ë·Î ´ëÀÔÀ» »ý°¢ÇϽøéµË´Ï´Ù.
Áï {0}Àº args.Mobile.NameÀ¸·Î Á¢¼Ó Äɸ¯Å͸íÀ»,
{1},{2}´Â userCount == 1 ? \"is\" : \"are\" À¯Àú¼ö°¡ 1À̸é \'is\'¸¦ ÀÌ»óÀ̸é \'are\'¸¦ Ãâ·ÂÇÑ´Ù´Â ¸»ÀÔ´Ï´Ù. |
|