You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kvirc/doc/scriptexamples/popup1.kvs

18 lines
207 B

defpopup (test)
{
item(Say "$0 ($1)" , 0)echo $0 ($1)
separator
popup(Popup)
{
item(Say "$0" twice)
{
echo $0 (1)
echo $0 (2)
}
}
}
echo "Use '/popup test <parameter>' to test the popup"