MOVED TO http://1337-servers.proboards.com
Would you like to react to this message? Create an account in a few clicks or log in to continue.

MOVED TO http://1337-servers.proboards.com

The new C41337 website is now up and running!

You are not connected. Please login or register

Plugin skeleton

Go down  Message [Page 1 of 1]

1Plugin skeleton Empty Plugin skeleton Tue Apr 03, 2012 7:40 pm

C41337

C41337
Creator
Creator

Code:

using System;


namespace MCForge
{
    public class Testplugin : Plugin
    {
        public override string name { get { return "testpluginname"; } }
        public override string website { get { return "website here"; } }
        public override string MCForge_Version { get { return ""; } }
        public override int build { get { return 1; } }
        public override string welcome { get { return "test plugin Loaded Successfully"; } }
        public override string creator { get { return "Creator name"; } }
     
        public override bool LoadAtStartup { get { return true; } }
        public override void Load(bool startup)
        {
           
        }
        public override void Unload(bool shutdown)
        {
        }
        public override void Help(Player p)
        {
        }
       
        }
    }
}
plugin skeleton

Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum