Udrakoloader
1.0.0
Udrakoloader ist ein Mod, der derzeit mit Samp und Halo kompatibel ist [möglicherweise mit vielen weiteren Spielen]. Bietet die Möglichkeit, Skripte (DLL) in .NET in das Spiel zu laden.
Basierend auf Scripthookvdotnet und Sharpneedle. Grundsätzlich besteht aus CLR -Hosting, um die .NET -Plugins auszuführen.
- Ich nehme dies aus den folgenden Gründen nicht an:
Einige Beispiele: [Dll kompilieren und in den Ordner "Udrakoloader" einstellen]
Für C# -Erglee müssen Sie das richtige Namespace -Verzeichnis angeben.
In diesem Fall ersetzen Sie ["Namespace BeispielProject.Udrakoloader"] durch ["Namespace .udrakoloader"]]
// Plugin.cs
using System ;
using System . Collections . Generic ;
using System . Diagnostics ;
using System . Linq ;
using System . Text ;
using System . Windows . Forms ;
namespace ExampleProject . Udrakoloader
{
public class Plugin
{
public static int EntryPoint ( string pwzArgument )
{
string processName = Process . GetCurrentProcess ( ) . ProcessName ;
MessageBox . Show ( "C# Example | The current process is " + processName ) ;
return 0 ;
}
}
} 'Plugin.vb
Imports System
Imports System.Collections.Generic
Imports System.Diagnostics
Imports System.Linq
Imports System.Text
Imports System.Windows.Forms
Imports System.Reflection
Imports System.Runtime.CompilerServices
Imports System.Runtime.InteropServices
Imports System.Security
Namespace Udrakoloader
Public Class Plugin
Public Shared Function EntryPoint( ByVal pwzArgument As String ) As Integer
Dim processName As String = Process.GetCurrentProcess().ProcessName
MessageBox.Show( "vb Example | The current process is " & processName)
Return 0
End Function
End Class
End Namespace Download Pre -Releases für Spiele: Udrako Loader Downloads