I-081 prompt
原文:prompt the user for a value for the variable v.
中文:跳出提示框,讓使用者輸入內容。d為預設值,s為說明文字,p為遮罩。
格式:%prompt(d,s,p)
範例:amount=%prompt(500,"How many to sell?")
設定一個變數amount,同時跳出提示框,詢問使用者How many to sell?
,預設值為500,確定後,數值將記錄在變數amount。
#SEND %prompt("","Enter password","*")
跳出一個提示框,預設值為無字元,說明文字為 Enter password,遮罩為
*字號。按下確定後,內容將不顯示在畫面並送到遊戲伺服器。