RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

How to highlight inside of the CODE tags

Ryan

RunUO Founder
Staff member
If you want to highlight code inside of the CODE tags like this:

Rich (BB code):
public class Hello1
 {
    public static void Main()
    {
       System.Console.WriteLine("Hello, World!");
    }
 }



You need to do CODE=RICH for the starting tag.

Ryan
 

lysa

Wanderer
It is too good for those users who are not well knowledge. You can get entire information which you want.Thank you
 

Ryan

RunUO Founder
Staff member
C#:
using System;
using Server;
using System.IO;
using System.Collections;
using Server.Multis;
using Server.Items;
using Server.Mobiles;
using Server.Network;
using System.Runtime.Serialization;
using Server.Targeting;
using Server.Commands;
using Server.Commands.Generic;
 
namespace Server.Engines.XmlSpawner2
{
        public class WriteMulti
        {
                private class TileEntry
                {
                        public int ID;
                        public int X;
                        public int Y;
                        public int Z;
 
                        public TileEntry(int id, int x, int y, int z)
                        {
                                ID = id;
                                X = x;
                                Y = y;
                                Z = z;
                        }
                }
 
                public static void Initialize()
                {
 
                        CommandSystem.Register("WriteMulti", XmlSpawner.DiskAccessLevel, new CommandEventHandler(WriteMulti_OnCommand));
                }
 
Top