mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Oct 2005
Posts: 122
O
Vogon poet
OP Offline
Vogon poet
O
Joined: Oct 2005
Posts: 122
What is the identifier to make a message box appear. with a message and an OK Button

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
To my knowledge there isn't one. Sounds to me like you're talking about a dialog code.

/help dialogs

I stand ready to admit my lack of knowledge if someone else knows of such an identifier (excluding custom made identifiers, of course)

Joined: Oct 2005
Posts: 122
O
Vogon poet
OP Offline
Vogon poet
O
Joined: Oct 2005
Posts: 122
anyone able to make a quick one, its late and i wont b able to learn anything new tonight, just need something where it will come up with a mesage - u click OK and the script continues - nothing complicated

Joined: Dec 2002
Posts: 1,245
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Dec 2002
Posts: 1,245
/help $input

alias testinput {
var %input = $input(Test $+ $crlf Input $+ $crlf Features,nv)
echo -a %input
}

Joined: Dec 2002
Posts: 1,245
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Dec 2002
Posts: 1,245
Quote:
anyone able to make a quick one, its late and i wont b able to learn anything new tonight, just need something where it will come up with a mesage - u click OK and the script continues - nothing complicated


k

var %check = $input(Do you want to continue,y)
if (%check!= $true) { return }


Link Copied to Clipboard