View Single Post
  #1  
Old 08-24-2006, 06:20 PM
gamer4lifebitach gamer4lifebitach is offline
Scripter
gamer4lifebitach's Avatar
Join Date: Oct 2005
Location: Illionis, USA
Posts: 25
gamer4lifebitach is on a distinguished road
Send a message via AIM to gamer4lifebitach Send a message via MSN to gamer4lifebitach
RC on Player's Client

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 (
athiso.rcchat) {
        
RC_Chat.addRow(0,a);
      }
    }
  }

__________________

~Contact Information~
Aim: Grind64RyGuy
Email: [email protected]
Client Status:
Reply With Quote