Thread: Read
View Single Post
  #1  
Old 04-09-2006, 08:16 AM
Nomad_P2P Nomad_P2P is offline
Currently on UN :>
Nomad_P2P's Avatar
Join Date: Oct 2005
Location: New Zealand
Posts: 81
Nomad_P2P will become famous soon enough
Post Read

Hey ive been trying to make a mass message system inside a GUICtrl but my GS2 is kinda "noobish" so if possible please help me out


NPC Code:
//#CLIENTSIDE
function OnCreated() {
new GuiWindowCtrl("Mass_Window0") {
awake = true;
canclose = false;
canmaximize = false;
canminimize = true;
canmove = false;
canresize = false;
height = 148;
parent = "Editor_Window0";
profile = "";
resizeheight = false;
resizewidth = false;
scriptlogmissingfunctions = false;
showhint = false;
text = "Messages Box ~ Being Worked On.";
visible = true;
tile = false;
width = screenwidth-387;
x = 12;
y = screenheight-185;

new GuiScrollCtrl("Mass_Scroll0") {
awake = true;
height = 117;
hscrollbar = "dynamic";
parent = "Editor_Window0";
profile = "";
resizeheight = false;
resizewidth = false;
scriptlogmissingfunctions = false;
showhint = false;
tile = false;
visible = true;
vscrollbar = "dynamic";
width = screenwidth-400;
x = 7;
y = 25;
}}}




thats just the window and scroll thing, i have no idea how to do the rest, so please help me out with like a basic script, with default commands or sumthin if possible, if not, thanks for reading my post
__________________
Reply With Quote