Jump to content

Server throws access violation on chat input


Maxafrost

Recommended Posts

I run a local server with default settings except that C# is enabled with one script:

using System;
using GTANetworkAPI;

namespace Test {
    public class Main : Script {

        public Main() {

        }

        [ServerEvent(Event.ResourceStart)]
        public void OnResourceStart() {
            NAPI.Util.ConsoleOutput("Test resouce started.");
        }

        [ServerEvent(Event.PlayerDeath)]
        public void OnPlayerDeath(Client client, Client killer, uint reason) {
            client.SendChatMessage("You dided.");
            client.MovePosition(new Vector3(0, 0, 82), 0);
            
        }


        [Command("test")]
        public void test(Client sender) {
            sender.SendChatMessage(sender.Position.ToString());
        }
    }
}

I can connect to the server but as soon as I enter something into the chat (a command for example), the game crashes:

System.AccessViolationException
  HResult=0x80004003
  Message = Attempted to read or write protected memory. This is often an indication that other memory is corrupt.

I'm new to working with ragemp so any help would be appreciated.

Link to comment
Share on other sites

  • 2 weeks later...
  • 1 year later...

Okay i fixed this by

1-Go to NUGet package manager and uninstall GTAnetworkAPI

2-Remove Bootstrapper.dll

3-Clean & rebuild solution

4-Add Bootstrapper.dll as a reference again from the server/bridge/runtime folder.

hope i helped.

  • Like 1
Link to comment
Share on other sites

  • 3 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...