I need help im trying to make an RC for like faq's and et's gp's so they dont really need to get access from normal rcs and i just want to make one for fun too so ya please help.
PHP Code:
// NPC Made By *Devenio
//#CLIENTSIDE
function onCreated(){
new GuiWindowCtrl("RC_Window") {
RC_Window.destroy();
}
thiso.rcchat = {"Test","Test","Test","Test","Test","Test","Test","Test","Test","Test"};
}
function onWeaponfired(){
RC_Window.destroy();
new GuiWindowCtrl("RC_Window") {
text = "Remote Control 2006/08/24 - By *Devenio";
profile = "RC_Window";
x=0;
y=0;
width = 510;
height = 385;
destroyonhide = true;
canresize = false;
canclose = true;
canminimize = true;
canmaximize = false;
new GuiTextEditCtrl("RC_Chatbar") {
profile = "RC_Chatbar";
x=5;
y=360;
width = 500;
height = 20;
}
new GuiScrollCtrl("RC_Scrollbar") {
profile = "RC_Scrollbar";
x=484;
y=190;
width = 20;
height = 170;
}
new GuiTextListCtrl("RC_Chat") {
profile = "RC_Chat";
x=15;
y=195;
for (a: thiso.rcchat) {
RC_Chat.addRow(0,a);
}
}
}
}