I have no idea how to use checkboxes either. But would the GuiRadioCtrl look something like this?
PHP Code:
new GuiRadioCtrl("RadioButton1") {
x = 20;
y = 20;
width = 32;
height = 32;
groupnum = 1;
}
new GuiRadioCtrl("RadioButton2") {
x = 60;
y = 20;
width = 32;
height = 32;
groupnum = 1;
}
new GuiRadioCtrl("RadioButton3") {
x = 20;
y = 60;
width = 32;
height = 32;
groupnum = 2;
}
new GuiRadioCtrl("RadioButton4") {
x = 60;
y = 60;
width = 32;
height = 32;
groupnum = 2;
}
Would that be it? Or is there anything else that I missed out?
Edit:
I've tried it and it works. Thanks for your help Yen.
Also - am I right in understanding that to read it, you've said GUI.checked? Would that be like this :
PHP Code:
if (RadioButton1.checked == true) { }
Or is it something else?