Can't find the error in my pluginSolved
class Helpsystem : HurtworldPlugin { #region Loads And Saves void LoadDefaultMessages() { void messages = new Dictionary<string, string> args[]; { {"Help1","General commands: /tphelp - /stakeshelp - /car help - /players"}, {"Help2","General commands: /voteday - /meteor - /weatherclear"}, {"Help3","General commands: /rule1"}, {"Help4","General commands: /rule2"}, {"tphelp","Telepoort: use /tpr to teleport to someone and use /tpa to accept the teleportation from someone else"}, {"stakeshelp","Stakes: /stakes fill - /stakes share - /stakes"}, {"homehelp","Home: /home - /homes - /sethome"}, {"rulehelp","Raid: if you've raided someone then give that person three days to start over again if not urn a tempban of 3 days!"}, {"rulehelp","Tp: If you're kill someone while he is teleport on you you'll urn a tempban for 1 day!"}; } lang.RegisterMessages(messages, this); } public static List Godlist = new List(); string Msg(string msg, string SteamId = null) => lang.GetMessage(msg, this, SteamId); #endregion #region [CHAT COMMANDS] [ChatCommand("help")] private void helpCommand(PlayerSession session, string command, string[] args) { hurt.SendChatMessage(session, null, Msg("Help1")); hurt.SendChatMessage(session, null, Msg("Help2")); hurt.SendChatMessage(session, null, Msg("Help3")); hurt.SendChatMessage(session, null, Msg("Help4")); return; } } } #endregion


Well've tried everything but I can't figure it out, 
Mabye it's something simple but I'm working on this almost,  3 hours, 
So of someone can help me with this that would be nice 

MVG 
TruxDeadnitro

That isn't a full plugin to start with. I would suggest posting the formatted code as well, as a single line is challenging to read and understand where your issue may be.
5e13a8d5b2bc5.jpg Wulf
That isn't a full plugin to start with. I would suggest posting the formatted code as well, as a single line is challenging to read and understand where your issue may be.
//Reference: UnityEngine.UI
using Oxide.Core;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using uLink;
using UnityEngine;


namespace Oxide.Plugins
{
    [Info("Helpsystem","Lulo", "0.0.2", ResourceId = 2500)]
    [Description("System to help you in the server.")]


    class Helpsystem : HurtworldPlugin
    {
        #region Loads And Saves
        void LoadDefaultMessages()
        {
            void messages = new Dictionary<string, string> args[];
            {
                {"Help1","General commands: /tphelp - /stakeshelp - /car help - /players"},
                {"Help2","General commands: /voteday - /meteor - /weatherclear"},
                {"Help3","General commands: /rule1"},
                {"Help4","General commands: /rule2"},
                {"tphelp","Telepoort: use /tpr to teleport to someone and use /tpa to accept the teleportation from someone else"},
                {"stakeshelp","Stakes: /stakes fill - /stakes share - /stakes"},
                {"homehelp","Home: /home - /homes - /sethome"},
                {"rulehelp","Raid: if you've raided someone then give that person three days to start over again if not urn a tempban of 3 days!"},
                {"rulehelp1","Tp: If you're kill someone while he is teleport on you you'll urn a tempban for 1 day!"};
            }
            lang.RegisterMessages(messages, this);
        }
        public static List<ulong> Godlist = new List<ulong>();
        string Msg(string msg, string SteamId = null) => lang.GetMessage(msg, this, SteamId);
        #endregion


        #region [CHAT COMMANDS]
        [ChatCommand("help")]
        private void helpCommand(PlayerSession session, string command, string[] args)
        {
            hurt.SendChatMessage(session, null, Msg("Help1"));
            hurt.SendChatMessage(session, null, Msg("Help2"));
            hurt.SendChatMessage(session, null, Msg("Help3"));
            hurt.SendChatMessage(session, null, Msg("Help4"));
            return;
        }


        [ChatCommand("tphelp")]
        private void tphelpCommand(PlayerSession session, string command, string[] args)
        {
            hurt.SendChatMessage(session, null, Msg("tphelp"));
            return;
        }
        [ChatCommand("stakeshelp")]
        private void stakeshelpCommand(PlayerSession session, string command, string[] args)
        {
            hurt.SendChatMessage(session, null, Msg("stakeshelp"));
            return;
        }


        [ChatCommand("homehelp")]
        private void homehelpCommand(PlayerSession session, string command, string[] args)
        {
            hurt.SendChatMessage(session, null, Msg("homehelp"));
            return;
        }


       [ChatCommand("rulehelp")]
        private void rulehelpCommand(PlayerSession session, string command, string[] args)
        {
            hurt.SendChatMessage(session, null, Msg("rulehelp"));
            hurt.SendChatMessage(session, null, Msg("rulehelp1"));
            return;
        }
    }
}
#endregion​

This is the compleet code this code as worked before and we still can' figure it out why it is't working anymore, 
As i said before maybe it's something simple but we're stuk into it, 
You have an #endregion outside of where it should be/mismatching.
[Error] Error while compiling: Helpsystem.cs(33,106): error CS1002: ; expected

this is the error that I'm getting it doesn't even matter where I'm putting the #endregion, 
on my expirience it should be right on the bottem or between the  } 
I've tried all of them and still this error is comming up 

The actual error appears to be with your nesting of the void messages inside of another method, and having a bunch of semi-colons in places they shouldn't be in the void messages.
fixed I've removed the void messages line and and now it is working again thanks for the help
Locked automatically