Would I just add text starting at line 47? It looks like maybe the place....
Is there any particular format the text needs to be in?
 
Would I just add text starting at line 47? It looks like maybe the place....
Is there any particular format the text needs to be in?
No actually..The lines start at lines 50 & 51

Code:
            this.AddHtml(125, 149, 177, 100, @"<center>" + "NEWS" + "</center>", (bool)false, (bool)false);
	 this.AddLabel( 125, 152, 177, "- Added:" );
In Line 50 this.AddHtml(position ,position,position, color, centers text" +"text"+ close center
this is the header which in this case is News... You can Continue using this.AddHtml for the rest of you message or
on line 51 this.AddLaabel( position,position,position, "text" can be used as seen above..its really a matter of preference..me personaly.. I Like using The AddHTML for Headers then using the labels... and if you wanted to get a little Fancy it could look like this...

Code:
            this.AddHtml(125, 149, 177, 100, @"<center>" + "NEWS" + "</center>", (bool)false, (bool)false);
	 this.AddLabel( 125, 152, 177, "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-:" );
            this.AddLabel(125,155,177, " -Added News Command For Player to get updates");
	 this.AddLabel(125, 158, 177, "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-");

that may not line up perfectly but think you get where i am going with this =)
the second number as you can tell is the next lines position (155,158, etc....)

Hope this helps in customizing your own Signs =)
 
I just had a chance to play with it and got an error


--------------------------------------------------------------------------------

ServUO - [http://www.servuo.com] Version 0.5, Build 5904.37103
Publish 54
Core: Optimizing for 8 64-bit processors
RandomImpl: CSPRandom (Software)
Core: Loading config...
Scripts: Compiling C# scripts...Failed with: 1 errors, 0 warnings
Errors:
+ Customs/Testing/News.cs:
CS0101: Line 35: The namespace 'Server.Gumps' already contains a definition
for 'PopUpGump'
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 
I just had a chance to play with it and got an error


--------------------------------------------------------------------------------

ServUO - [http://www.servuo.com] Version 0.5, Build 5904.37103
Publish 54
Core: Optimizing for 8 64-bit processors
RandomImpl: CSPRandom (Software)
Core: Loading config...
Scripts: Compiling C# scripts...Failed with: 1 errors, 0 warnings
Errors:
+ Customs/Testing/News.cs:
CS0101: Line 35: The namespace 'Server.Gumps' already contains a definition
for 'PopUpGump'
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.

Looks like you already have something named "PopUpGump"

Try renaming to NewsGump
 
Back